Lines Matching refs:tail
198 brigade->tail = bucket; in php_stream_bucket_prepend()
206 if (brigade->tail == bucket) { in php_stream_bucket_append()
210 bucket->prev = brigade->tail; in php_stream_bucket_append()
213 if (brigade->tail) { in php_stream_bucket_append()
214 brigade->tail->next = bucket; in php_stream_bucket_append()
218 brigade->tail = bucket; in php_stream_bucket_append()
232 bucket->brigade->tail = bucket->prev; in php_stream_bucket_unlink()
322 chain->tail = filter; in php_stream_filter_prepend_ex()
339 filter->prev = chain->tail; in php_stream_filter_append_ex()
341 if (chain->tail) { in php_stream_filter_append_ex()
342 chain->tail->next = filter; in php_stream_filter_append_ex()
346 chain->tail = filter; in php_stream_filter_append_ex()
421 chain->tail = NULL; in _php_stream_filter_append()
424 chain->tail = filter->prev; in _php_stream_filter_append()
464 outp->tail = NULL; in _php_stream_filter_flush()
521 filter->chain->tail = filter->prev; in php_stream_filter_remove()