Lines Matching refs:tail
62 static rfd_t *tail; /* tail of global list */ variable
98 if (tail == NULL) { in rfd_revoke_next()
110 rfd = rfd_find_prev_class(tail, RFD_RESERVED); in rfd_revoke_next()
117 rfd = rfd_find_prev_class(tail, RFD_PSINFO); in rfd_revoke_next()
128 rfd = tail; in rfd_revoke_next()
181 if (tail != NULL) in rfd_open()
182 rfd->rfd_prev_class = rfd_find_prev_class(tail, class); in rfd_open()
184 rfd->rfd_prev_class = tail; in rfd_open()
185 rfd->rfd_prev = tail; in rfd_open()
186 if (tail != NULL) in rfd_open()
187 tail->rfd_next = rfd; in rfd_open()
188 tail = rfd; in rfd_open()
207 rfd = tail; in rfd_close()
215 if (tail == rfd) in rfd_close()
216 tail = rfd->rfd_prev; in rfd_close()
258 otail = tail; in rfd_reserve()