head              262 Zend/zend_extensions.c 	for (element = zend_extensions.head; element; element = element->next) {
head               28 Zend/zend_llist.c 	l->head  = NULL;
head               45 Zend/zend_llist.c 		l->head = tmp;
head               58 Zend/zend_llist.c 	tmp->next = l->head;
head               60 Zend/zend_llist.c 	if (l->head) {
head               61 Zend/zend_llist.c 		l->head->prev = tmp;
head               65 Zend/zend_llist.c 	l->head = tmp;
head               76 Zend/zend_llist.c 				(l)->head = (current)->next;\
head               92 Zend/zend_llist.c 	zend_llist_element *current=l->head;
head              106 Zend/zend_llist.c 	zend_llist_element *current=l->head, *next;
head              124 Zend/zend_llist.c 	l->head = l->tail = NULL;
head              138 Zend/zend_llist.c 		l->head = NULL;
head              156 Zend/zend_llist.c 	ptr = src->head;
head              168 Zend/zend_llist.c 	element=l->head;
head              183 Zend/zend_llist.c 	for (element=l->head; element; element=element->next) {
head              211 Zend/zend_llist.c 	for (element=l->head; element; element=element->next) {
head              218 Zend/zend_llist.c 	l->head = elements[0];
head              235 Zend/zend_llist.c 	for (element=l->head; element; element=element->next) {
head              247 Zend/zend_llist.c 	for (element=l->head; element; element=element->next) {
head              264 Zend/zend_llist.c 	*current = l->head;
head               38 Zend/zend_llist.h 	zend_llist_element *head;
head               91 ext/bz2/bz2_filter.c 	while (buckets_in->head) {
head               94 ext/bz2/bz2_filter.c 		bucket = php_stream_bucket_make_writeable(buckets_in->head);
head              227 ext/bz2/bz2_filter.c 	while (buckets_in->head) {
head              230 ext/bz2/bz2_filter.c 		bucket = php_stream_bucket_make_writeable(buckets_in->head);
head               61 ext/dba/libcdb/cdb_make.c 	c->head = 0;
head               78 ext/dba/libcdb/cdb_make.c 	struct cdb_hplist *head;
head               80 ext/dba/libcdb/cdb_make.c 	head = c->head;
head               81 ext/dba/libcdb/cdb_make.c 	if (!head || (head->num >= CDB_HPLIST)) {
head               82 ext/dba/libcdb/cdb_make.c 		head = (struct cdb_hplist *) emalloc(sizeof(struct cdb_hplist));
head               83 ext/dba/libcdb/cdb_make.c 		if (!head)
head               85 ext/dba/libcdb/cdb_make.c 		head->num = 0;
head               86 ext/dba/libcdb/cdb_make.c 		head->next = c->head;
head               87 ext/dba/libcdb/cdb_make.c 		c->head = head;
head               89 ext/dba/libcdb/cdb_make.c 	head->hp[head->num].h = h;
head               90 ext/dba/libcdb/cdb_make.c 	head->hp[head->num].p = c->pos;
head               91 ext/dba/libcdb/cdb_make.c 	++head->num;
head              153 ext/dba/libcdb/cdb_make.c 	for (x = c->head; x; x = x->next) {
head              186 ext/dba/libcdb/cdb_make.c 	for (x = c->head; x; x = x->next) {
head              224 ext/dba/libcdb/cdb_make.c 	for (x = c->head; x; c->head = x) {
head              226 ext/dba/libcdb/cdb_make.c 		efree(c->head);
head               47 ext/dba/libcdb/cdb_make.h 	struct cdb_hplist *head;
head               64 ext/gd/gdcache.c 	gdCache_head_t *head;
head               66 ext/gd/gdcache.c 	head = (gdCache_head_t *)pemalloc(sizeof(gdCache_head_t), 1);
head               67 ext/gd/gdcache.c 	head->mru = NULL;
head               68 ext/gd/gdcache.c 	head->size = size;
head               69 ext/gd/gdcache.c 	head->gdCacheTest = gdCacheTest;
head               70 ext/gd/gdcache.c 	head->gdCacheFetch = gdCacheFetch;
head               71 ext/gd/gdcache.c 	head->gdCacheRelease = gdCacheRelease;
head               72 ext/gd/gdcache.c 	return head;
head               76 ext/gd/gdcache.c gdCacheDelete( gdCache_head_t *head )
head               80 ext/gd/gdcache.c 	elem = head->mru;
head               82 ext/gd/gdcache.c 		(*(head->gdCacheRelease))(elem->userdata);
head               87 ext/gd/gdcache.c 	pefree((char *)head, 1);
head               91 ext/gd/gdcache.c gdCacheGet( gdCache_head_t *head, void *keydata )
head               97 ext/gd/gdcache.c 	elem = head->mru;
head              104 ext/gd/gdcache.c 		if ((*(head->gdCacheTest))(elem->userdata, keydata)) {
head              108 ext/gd/gdcache.c 				elem->next = head->mru;
head              109 ext/gd/gdcache.c 				head->mru = elem;
head              118 ext/gd/gdcache.c 	userdata = (*(head->gdCacheFetch))(&(head->error), keydata);
head              123 ext/gd/gdcache.c 	if (i < head->size) {  /* cache still growing - add new elem */
head              130 ext/gd/gdcache.c 		(*(head->gdCacheRelease))(elem->userdata);
head              133 ext/gd/gdcache.c 	elem->next = head->mru;
head              134 ext/gd/gdcache.c 	head->mru = elem;
head               84 ext/gd/gdcache.h gdCacheDelete( gdCache_head_t *head );
head               87 ext/gd/gdcache.h gdCacheGet( gdCache_head_t *head, void *keydata );
head               63 ext/gd/libgd/gdcache.c   gdCache_head_t *head;
head               65 ext/gd/libgd/gdcache.c   head = (gdCache_head_t *) gdPMalloc(sizeof (gdCache_head_t));
head               66 ext/gd/libgd/gdcache.c   head->mru = NULL;
head               67 ext/gd/libgd/gdcache.c   head->size = size;
head               68 ext/gd/libgd/gdcache.c   head->gdCacheTest = gdCacheTest;
head               69 ext/gd/libgd/gdcache.c   head->gdCacheFetch = gdCacheFetch;
head               70 ext/gd/libgd/gdcache.c   head->gdCacheRelease = gdCacheRelease;
head               71 ext/gd/libgd/gdcache.c   return head;
head               75 ext/gd/libgd/gdcache.c gdCacheDelete (gdCache_head_t * head)
head               79 ext/gd/libgd/gdcache.c   elem = head->mru;
head               82 ext/gd/libgd/gdcache.c       (*(head->gdCacheRelease)) (elem->userdata);
head               87 ext/gd/libgd/gdcache.c   gdPFree ((char *) head);
head               91 ext/gd/libgd/gdcache.c gdCacheGet (gdCache_head_t * head, void *keydata)
head               97 ext/gd/libgd/gdcache.c   elem = head->mru;
head              100 ext/gd/libgd/gdcache.c       if ((*(head->gdCacheTest)) (elem->userdata, keydata))
head              106 ext/gd/libgd/gdcache.c 	      elem->next = head->mru;
head              107 ext/gd/libgd/gdcache.c 	      head->mru = elem;
head              116 ext/gd/libgd/gdcache.c   userdata = (*(head->gdCacheFetch)) (&(head->error), keydata);
head              122 ext/gd/libgd/gdcache.c   if (i < head->size)
head              131 ext/gd/libgd/gdcache.c       (*(head->gdCacheRelease)) (elem->userdata);
head              134 ext/gd/libgd/gdcache.c   elem->next = head->mru;
head              135 ext/gd/libgd/gdcache.c   head->mru = elem;
head               83 ext/gd/libgd/gdcache.h gdCacheDelete( gdCache_head_t *head );
head               86 ext/gd/libgd/gdcache.h gdCacheGet( gdCache_head_t *head, void *keydata );
head             2813 ext/iconv/iconv.c 	while (buckets_in->head != NULL) {
head             2814 ext/iconv/iconv.c 		bucket = buckets_in->head;
head             2714 ext/mbstring/oniguruma/regcomp.c subexp_inf_recursive_check(Node* node, ScanEnv* env, int head)
head             2729 ext/mbstring/oniguruma/regcomp.c 	ret = subexp_inf_recursive_check(NCAR(x), env, head);
head             2732 ext/mbstring/oniguruma/regcomp.c 	if (head) {
head             2735 ext/mbstring/oniguruma/regcomp.c 	  if (min != 0) head = 0;
head             2746 ext/mbstring/oniguruma/regcomp.c 	ret = subexp_inf_recursive_check(NCAR(node), env, head);
head             2754 ext/mbstring/oniguruma/regcomp.c     r = subexp_inf_recursive_check(NQTFR(node)->target, env, head);
head             2768 ext/mbstring/oniguruma/regcomp.c 	r = subexp_inf_recursive_check(an->target, env, head);
head             2775 ext/mbstring/oniguruma/regcomp.c     r = subexp_inf_recursive_check(NCALL(node)->target, env, head);
head             2782 ext/mbstring/oniguruma/regcomp.c       return (head == 0 ? RECURSION_EXIST : RECURSION_INFINITE);
head             2785 ext/mbstring/oniguruma/regcomp.c       r = subexp_inf_recursive_check(NENCLOSE(node)->target, env, head);
head             3093 ext/mbstring/oniguruma/regcomp.c   Node *head, *np, *insert_node;
head             3097 ext/mbstring/oniguruma/regcomp.c   head = an->target;
head             3098 ext/mbstring/oniguruma/regcomp.c   np = NCAR(head);
head             3099 ext/mbstring/oniguruma/regcomp.c   swap_node(node, head);
head             3100 ext/mbstring/oniguruma/regcomp.c   NCAR(node) = head;
head             3101 ext/mbstring/oniguruma/regcomp.c   NANCHOR(head)->target = np;
head             5239 ext/mbstring/oniguruma/regcomp.c   regex_t *head, *prev;
head             5242 ext/mbstring/oniguruma/regcomp.c   head = prev->chain;
head             5243 ext/mbstring/oniguruma/regcomp.c   if (IS_NOT_NULL(head)) {
head             5245 ext/mbstring/oniguruma/regcomp.c     while (IS_NOT_NULL(head->chain)) {
head             5246 ext/mbstring/oniguruma/regcomp.c       prev = head;
head             5247 ext/mbstring/oniguruma/regcomp.c       head = head->chain;
head             5250 ext/mbstring/oniguruma/regcomp.c     REGEX_TRANSFER(reg, head);
head               55 ext/mcrypt/mcrypt_filter.c 	while(buckets_in->head) {
head               56 ext/mcrypt/mcrypt_filter.c 		bucket = buckets_in->head;
head              508 ext/pcntl/pcntl.c 	PCNTL_G(head) = PCNTL_G(tail) = PCNTL_G(spares) = NULL;
head              533 ext/pcntl/pcntl.c 	while (PCNTL_G(head)) {
head              534 ext/pcntl/pcntl.c 		sig = PCNTL_G(head);
head              535 ext/pcntl/pcntl.c 		PCNTL_G(head) = sig->next;
head             1312 ext/pcntl/pcntl.c 	if (PCNTL_G(head) && PCNTL_G(tail)) {
head             1315 ext/pcntl/pcntl.c 		PCNTL_G(head) = psig;
head             1337 ext/pcntl/pcntl.c 	if (! PCNTL_G(head) || PCNTL_G(processing_signal_queue)) {
head             1345 ext/pcntl/pcntl.c 	queue = PCNTL_G(head);
head             1346 ext/pcntl/pcntl.c 	PCNTL_G(head) = NULL; /* simple stores are atomic */
head               80 ext/pcntl/php_pcntl.h 	struct php_pcntl_pending_signal *head, *tail, *spares;
head             1340 ext/session/session.c 	current = l->head;
head             1349 ext/session/session.c 				l->head = next;
head               29 ext/soap/php_packet_soap.c 	xmlNodePtr trav, env, head, body, resp, cur, fault;
head              103 ext/soap/php_packet_soap.c 	head = NULL;
head              109 ext/soap/php_packet_soap.c 		head = trav;
head              157 ext/soap/php_packet_soap.c 	if (head != NULL) {
head              158 ext/soap/php_packet_soap.c 		attr = head->properties;
head              393 ext/soap/php_packet_soap.c 	if (soap_headers && head) {
head              394 ext/soap/php_packet_soap.c 		trav = head->children;
head             3457 ext/soap/soap.c 	xmlNodePtr trav,env,head,body,func;
head             3503 ext/soap/soap.c 	head = NULL;
head             3509 ext/soap/soap.c 		head = trav;
head             3592 ext/soap/soap.c 	if (head) {
head             3595 ext/soap/soap.c 		attr = head->properties;
head             3608 ext/soap/soap.c 		trav = head->children;
head             3859 ext/soap/soap.c 	xmlNodePtr head = NULL;
head             3898 ext/soap/soap.c 			head = xmlNewChild(envelope, ns, BAD_CAST("Header"), NULL);
head             3931 ext/soap/soap.c 				if (serialize_response_call2(head, headers->function, Z_STRVAL(headers->function_name), uri, hdr_ret, version, 0, NULL) == SOAP_ENCODED) {
head             3935 ext/soap/soap.c 				xmlNodePtr xmlHdr = master_to_xml(hdr_enc, hdr_ret, hdr_use, head);
head             4105 ext/soap/soap.c 			head = xmlNewChild(envelope, ns, BAD_CAST("Header"), NULL);
head             4155 ext/soap/soap.c 						if (serialize_response_call2(head, h->function, Z_STRVAL(h->function_name), uri, hdr_ret, version, 0, &xmlHdr) == SOAP_ENCODED) {
head             4162 ext/soap/soap.c 						xmlNodePtr xmlHdr = master_to_xml(hdr_enc, hdr_ret, hdr_use, head);
head             4178 ext/soap/soap.c 			if (head->children == NULL) {
head             4179 ext/soap/soap.c 				xmlUnlinkNode(head);
head             4180 ext/soap/soap.c 				xmlFreeNode(head);
head             4205 ext/soap/soap.c 	    body->children == NULL && head == NULL) {
head             4215 ext/soap/soap.c 	xmlNodePtr envelope = NULL, body, method = NULL, head = NULL;
head             4240 ext/soap/soap.c 		head = xmlNewChild(envelope, ns, BAD_CAST("Header"), NULL);
head             4335 ext/soap/soap.c 	if (head) {
head             4375 ext/soap/soap.c 					h = master_to_xml(enc, tmp, hdr_use, head);
head             4379 ext/soap/soap.c 					xmlAddChild(head, h);
head               75 ext/spl/spl_dllist.c 	spl_ptr_llist_element   *head;
head              136 ext/spl/spl_dllist.c 	llist->head  = NULL;
head              154 ext/spl/spl_dllist.c 	spl_ptr_llist_element   *current = llist->head, *next;
head              179 ext/spl/spl_dllist.c 		current = llist->head;
head              201 ext/spl/spl_dllist.c 	elem->next = llist->head;
head              204 ext/spl/spl_dllist.c 	if (llist->head) {
head              205 ext/spl/spl_dllist.c 		llist->head->prev = elem;
head              210 ext/spl/spl_dllist.c 	llist->head = elem;
head              231 ext/spl/spl_dllist.c 		llist->head = elem;
head              255 ext/spl/spl_dllist.c 		llist->head = NULL;
head              286 ext/spl/spl_dllist.c 	spl_ptr_llist_element *head = llist->head;
head              288 ext/spl/spl_dllist.c 	if (head == NULL) {
head              291 ext/spl/spl_dllist.c 		return &head->data;
head              298 ext/spl/spl_dllist.c 	spl_ptr_llist_element   *head = llist->head;
head              300 ext/spl/spl_dllist.c 	if (head == NULL) {
head              305 ext/spl/spl_dllist.c 	if (head->next) {
head              306 ext/spl/spl_dllist.c 		head->next->prev = NULL;
head              311 ext/spl/spl_dllist.c 	llist->head = head->next;
head              313 ext/spl/spl_dllist.c 	ZVAL_COPY(ret, &head->data);
head              316 ext/spl/spl_dllist.c 		llist->dtor(head);
head              318 ext/spl/spl_dllist.c 	ZVAL_UNDEF(&head->data);
head              320 ext/spl/spl_dllist.c 	SPL_LLIST_DELREF(head);
head              326 ext/spl/spl_dllist.c 	spl_ptr_llist_element *current = from->head, *next;
head              391 ext/spl/spl_dllist.c 			intern->traverse_pointer  = intern->llist->head;
head              395 ext/spl/spl_dllist.c 			intern->traverse_pointer  = intern->llist->head;
head              402 ext/spl/spl_dllist.c 		intern->traverse_pointer  = intern->llist->head;
head              498 ext/spl/spl_dllist.c 	spl_ptr_llist_element *current = intern->llist->head, *next;
head              543 ext/spl/spl_dllist.c 	spl_ptr_llist_element *current = intern->llist->head;
head              899 ext/spl/spl_dllist.c 		if (element == llist->head) {
head              900 ext/spl/spl_dllist.c 			llist->head = element->next;
head              948 ext/spl/spl_dllist.c 		*traverse_pointer_ptr  = llist->head;
head             1138 ext/spl/spl_dllist.c 	spl_ptr_llist_element *current  = intern->llist->head, *next;
head             1274 ext/spl/spl_dllist.c 			intern->llist->head = elem;
head             41216 ext/sqlite3/libsqlite/sqlite3.c   struct RowSetEntry head;
head             41219 ext/sqlite3/libsqlite/sqlite3.c   pTail = &head;
head             41242 ext/sqlite3/libsqlite/sqlite3.c   return head.pRight;
head               48 ext/standard/filters.c 	while (buckets_in->head) {
head               49 ext/standard/filters.c 		bucket = php_stream_bucket_make_writeable(buckets_in->head);
head               96 ext/standard/filters.c 	while (buckets_in->head) {
head               97 ext/standard/filters.c 		bucket = php_stream_bucket_make_writeable(buckets_in->head);
head              124 ext/standard/filters.c 	while (buckets_in->head) {
head              125 ext/standard/filters.c 		bucket = php_stream_bucket_make_writeable(buckets_in->head);
head              216 ext/standard/filters.c 	while (buckets_in->head) {
head              217 ext/standard/filters.c 		bucket = php_stream_bucket_make_writeable(buckets_in->head);
head             1678 ext/standard/filters.c 	while (buckets_in->head != NULL) {
head             1679 ext/standard/filters.c 		bucket = buckets_in->head;
head             1800 ext/standard/filters.c 	while ((bucket = buckets_in->head) != NULL) {
head             2010 ext/standard/filters.c 	while (buckets_in->head) {
head             2011 ext/standard/filters.c 		bucket = php_stream_bucket_make_writeable(buckets_in->head);
head               31 ext/standard/head.h extern PHP_RINIT_FUNCTION(head);
head              223 ext/standard/user_filters.c 	if (buckets_in->head) {
head              224 ext/standard/user_filters.c 		php_stream_bucket *bucket = buckets_in->head;
head              227 ext/standard/user_filters.c 		while ((bucket = buckets_in->head)) {
head              234 ext/standard/user_filters.c 		php_stream_bucket *bucket = buckets_out->head;
head              238 ext/standard/user_filters.c 			bucket = buckets_out->head;
head              413 ext/standard/user_filters.c 	if (brigade->head && (bucket = php_stream_bucket_make_writeable(brigade->head))) {
head              424 ext/tidy/tidy.c 	TIDY_METHOD_MAP(head, tidy_get_head, NULL)
head              134 ext/xmlrpc/libxmlrpc/queue.c       q->head = q->tail = NULL;
head              135 ext/xmlrpc/libxmlrpc/queue.c       q->cursor = q->head;
head              159 ext/xmlrpc/libxmlrpc/queue.c    return(q && q->cursor == q->head);
head              241 ext/xmlrpc/libxmlrpc/queue.c    q->cursor = q->head;
head              296 ext/xmlrpc/libxmlrpc/queue.c       n = q->head;
head              298 ext/xmlrpc/libxmlrpc/queue.c       q->head = (node*)p;
head              299 ext/xmlrpc/libxmlrpc/queue.c       q->head->prev = NULL;
head              302 ext/xmlrpc/libxmlrpc/queue.c          q->head->next = NULL;
head              303 ext/xmlrpc/libxmlrpc/queue.c          q->tail = q->head;
head              306 ext/xmlrpc/libxmlrpc/queue.c          q->head->next = (datanode*)n;
head              307 ext/xmlrpc/libxmlrpc/queue.c          n->prev = q->head;
head              310 ext/xmlrpc/libxmlrpc/queue.c       q->head->data = d;
head              313 ext/xmlrpc/libxmlrpc/queue.c       q->cursor = q->head;
head              353 ext/xmlrpc/libxmlrpc/queue.c          q->head = q->tail;
head              398 ext/xmlrpc/libxmlrpc/queue.c    d = q->head->data;
head              399 ext/xmlrpc/libxmlrpc/queue.c    n = q->head->next;
head              400 ext/xmlrpc/libxmlrpc/queue.c    free(q->head);
head              405 ext/xmlrpc/libxmlrpc/queue.c       q->head = q->tail = q->cursor = NULL;
head              407 ext/xmlrpc/libxmlrpc/queue.c       q->head = (node *)n;
head              408 ext/xmlrpc/libxmlrpc/queue.c       q->head->prev = NULL;
head              409 ext/xmlrpc/libxmlrpc/queue.c       q->cursor = q->head;
head              447 ext/xmlrpc/libxmlrpc/queue.c       q->head = q->tail = q->cursor = NULL;
head              532 ext/xmlrpc/libxmlrpc/queue.c    if(iter == (q_iter)q->head)
head              818 ext/xmlrpc/libxmlrpc/queue.c    dn = q->head;
head              957 ext/xmlrpc/libxmlrpc/queue.c    return q ? (q_iter)q->head : NULL;
head               38 ext/xmlrpc/libxmlrpc/queue.h    node        *head, *tail, *cursor;
head               83 ext/xmlrpc/libxmlrpc/queue.h #define Q_Iter_Head_F(q) (q ? (q_iter)((queue*)q)->head : NULL)
head               43 ext/zip/lib/zip_extra_field.c     zip_extra_field_t *head, *prev, *def;
head               45 ext/zip/lib/zip_extra_field.c     head = prev = NULL;
head               50 ext/zip/lib/zip_extra_field.c             _zip_ef_free(head);
head               54 ext/zip/lib/zip_extra_field.c         if (head == NULL)
head               55 ext/zip/lib/zip_extra_field.c             head = def;
head               63 ext/zip/lib/zip_extra_field.c     return head;
head               70 ext/zip/lib/zip_extra_field.c     zip_extra_field_t *head, *prev;
head               74 ext/zip/lib/zip_extra_field.c     head = ef;
head               76 ext/zip/lib/zip_extra_field.c     for (; ef; ef=(prev ? prev->next : head)) {
head               84 ext/zip/lib/zip_extra_field.c 			head = ef->next;
head              100 ext/zip/lib/zip_extra_field.c     return head;
head               76 ext/zlib/zlib_filter.c 	while (buckets_in->head) {
head               79 ext/zlib/zlib_filter.c 		bucket = php_stream_bucket_make_writeable(buckets_in->head);
head              201 ext/zlib/zlib_filter.c 	while (buckets_in->head) {
head              204 ext/zlib/zlib_filter.c 		bucket = buckets_in->head;
head              597 main/SAPI.c    	zend_llist_element *current=l->head;
head              607 main/SAPI.c    				l->head = next;
head              693 main/php_ini.c 			for (element = scanned_ini_list.head; element; element = element->next) {
head              192 main/streams/filter.c 	bucket->next = brigade->head;
head              195 main/streams/filter.c 	if (brigade->head) {
head              196 main/streams/filter.c 		brigade->head->prev = bucket;
head              200 main/streams/filter.c 	brigade->head = bucket;
head              216 main/streams/filter.c 		brigade->head = bucket;
head              227 main/streams/filter.c 		bucket->brigade->head = bucket->next;
head              316 main/streams/filter.c 	filter->next = chain->head;
head              319 main/streams/filter.c 	if (chain->head) {
head              320 main/streams/filter.c 		chain->head->prev = filter;
head              324 main/streams/filter.c 	chain->head = filter;
head              344 main/streams/filter.c 		chain->head = filter;
head              368 main/streams/filter.c 				while (brig_in.head) {
head              369 main/streams/filter.c 					bucket = brig_in.head;
head              373 main/streams/filter.c 				while (brig_out.head) {
head              374 main/streams/filter.c 					bucket = brig_out.head;
head              395 main/streams/filter.c 				while (brig_outp->head) {
head              396 main/streams/filter.c 					bucket = brig_outp->head;
head              419 main/streams/filter.c 		if (chain->head == filter) {
head              420 main/streams/filter.c 			chain->head = NULL;
head              463 main/streams/filter.c 		outp->head = NULL;
head              472 main/streams/filter.c 	for(bucket = inp->head; bucket; bucket = bucket->next) {
head              493 main/streams/filter.c 		while ((bucket = inp->head)) {
head              501 main/streams/filter.c 		while ((bucket = inp->head)) {
head              516 main/streams/filter.c 		filter->chain->head = filter->next;
head               59 main/streams/php_stream_filter_api.h 	php_stream_bucket *head, *tail;
head              102 main/streams/php_stream_filter_api.h 	php_stream_filter *head, *tail;
head              142 main/streams/php_stream_filter_api.h #define php_stream_is_filtered(stream)	((stream)->readfilters.head || (stream)->writefilters.head)
head              479 main/streams/streams.c 		while (stream->readfilters.head) {
head              480 main/streams/streams.c 			php_stream_filter_remove(stream->readfilters.head, 1);
head              482 main/streams/streams.c 		while (stream->writefilters.head) {
head              483 main/streams/streams.c 			php_stream_filter_remove(stream->writefilters.head, 1);
head              558 main/streams/streams.c 	if (stream->readfilters.head) {
head              592 main/streams/streams.c 			for (filter = stream->readfilters.head; filter; filter = filter->next) {
head              613 main/streams/streams.c 					while (brig_inp->head) {
head              614 main/streams/streams.c 						bucket = brig_inp->head;
head              715 main/streams/streams.c 		if (!stream->readfilters.head && (stream->flags & PHP_STREAM_FLAG_NO_BUFFER || stream->chunk_size == 1)) {
head             1156 main/streams/streams.c 	for (filter = stream->writefilters.head; filter; filter = filter->next) {
head             1160 main/streams/streams.c 				filter == stream->writefilters.head ? &consumed : NULL, flags);
head             1178 main/streams/streams.c 			while (brig_inp->head) {
head             1179 main/streams/streams.c 				bucket = brig_inp->head;
head             1207 main/streams/streams.c 	if (stream->writefilters.head) {
head             1228 main/streams/streams.c 	if (stream->writefilters.head) {
head             1300 main/streams/streams.c 		if (stream->writefilters.head) {
head              409 main/streams/transports.c 	if (stream->readfilters.head) {
head              479 main/streams/transports.c 	if ((oob || addr) && stream->writefilters.head) {
head              266 sapi/phpdbg/phpdbg_wait.c 					zend_extensions.head = elm->next;