| /PHP_5_4/build/ |
| H A D | buildcheck.sh | 32 ac_version=`$PHP_AUTOCONF --version 2>/dev/null|head -n 1|sed -e 's/^[^0-9]*//' -e 's/[a-z]* *$//'`
|
| /PHP_5_4/ext/xmlrpc/libxmlrpc/ |
| H A D | queue.c | 134 q->head = q->tail = NULL; 135 q->cursor = q->head; 147 ** purpose : tests if cursor is at head of queue 151 ** returns : boolean - True_ is at head else False_ 159 return(q && q->cursor == q->head); 226 ** purpose : position queue cursor to first element (head) of queue. 230 ** returns : pointer to data at head. If queue is IsEmpty returns NULL 241 q->cursor = q->head; 276 ** purpose : put a data pointer at the head of the queue 296 n = q->head; [all...] |
| H A D | queue.h | 38 node *head, *tail, *cursor; member in struct:__anon482 83 #define Q_Iter_Head_F(q) (q ? (q_iter)((queue*)q)->head : NULL)
|
| /PHP_5_4/ext/gd/ |
| H A D | gdcache.c | 17 * The head structure has a pointer to the most-recently-used 19 * time they are used. The head also contains pointers to three 64 gdCache_head_t *head; local 66 head = (gdCache_head_t *)pemalloc(sizeof(gdCache_head_t), 1); 67 head->mru = NULL; 68 head->size = size; 69 head->gdCacheTest = gdCacheTest; 70 head->gdCacheFetch = gdCacheFetch; 71 head->gdCacheRelease = gdCacheRelease; 72 return head; 91 gdCacheGet( gdCache_head_t *head, void *keydata ) argument [all...] |
| H A D | gdcache.h | 17 * The head structure has a pointer to the most-recently-used 19 * time they are used. The head also contains pointers to three 64 /* head structure */ 84 gdCacheDelete( gdCache_head_t *head ); 87 gdCacheGet( gdCache_head_t *head, void *keydata );
|
| /PHP_5_4/ext/gd/libgd/ |
| H A D | gdcache.c | 26 * The head structure has a pointer to the most-recently-used 28 * time they are used. The head also contains pointers to three 63 gdCache_head_t *head; local 65 head = (gdCache_head_t *) gdPMalloc(sizeof (gdCache_head_t)); 66 head->mru = NULL; 67 head->size = size; 68 head->gdCacheTest = gdCacheTest; 69 head->gdCacheFetch = gdCacheFetch; 70 head->gdCacheRelease = gdCacheRelease; 71 return head; 75 gdCacheDelete(gdCache_head_t * head) argument 91 gdCacheGet(gdCache_head_t * head, void *keydata) argument [all...] |
| H A D | gdcache.h | 17 * The head structure has a pointer to the most-recently-used 19 * time they are used. The head also contains pointers to three 63 /* head structure */ 83 gdCacheDelete( gdCache_head_t *head ); 86 gdCacheGet( gdCache_head_t *head, void *keydata );
|
| /PHP_5_4/Zend/ |
| H A D | zend_llist.c | 28 l->head = NULL; 46 l->head = tmp; 59 tmp->next = l->head; 61 if (l->head) { 62 l->head->prev = tmp; 66 l->head = tmp; 77 (l)->head = (current)->next;\ 93 zend_llist_element *current=l->head; 109 zend_llist_element *current=l->head, *next; 127 l->head [all...] |
| H A D | zend_llist.h | 38 zend_llist_element *head; member in struct:_zend_llist
|
| /PHP_5_4/ext/bz2/ |
| H A D | bz2_filter.c | 91 while (buckets_in->head) { 94 bucket = php_stream_bucket_make_writeable(buckets_in->head TSRMLS_CC); 228 while (buckets_in->head) { 231 bucket = php_stream_bucket_make_writeable(buckets_in->head TSRMLS_CC);
|
| /PHP_5_4/ext/dba/libcdb/ |
| H A D | cdb_make.c | 61 c->head = 0; 78 struct cdb_hplist *head; local 80 head = c->head; 81 if (!head || (head->num >= CDB_HPLIST)) { 82 head = (struct cdb_hplist *) emalloc(sizeof(struct cdb_hplist)); 83 if (!head) 85 head->num = 0; 86 head [all...] |
| H A D | cdb_make.h | 47 struct cdb_hplist *head; member in struct:cdb_make
|
| /PHP_5_4/ext/mcrypt/ |
| H A D | mcrypt_filter.c | 55 while(buckets_in->head) { 56 bucket = buckets_in->head;
|
| /PHP_5_4/ext/pcntl/ |
| H A D | pcntl.c | 494 PCNTL_G(head) = PCNTL_G(tail) = PCNTL_G(spares) = NULL; 519 while (PCNTL_G(head)) { 520 sig = PCNTL_G(head); 521 PCNTL_G(head) = sig->next; 1219 /* the head check is important, as the tick handler cannot atomically clear both 1220 * the head and tail */ 1221 if (PCNTL_G(head) && PCNTL_G(tail)) { 1224 PCNTL_G(head) = psig; 1242 if (! PCNTL_G(head) || PCNTL_G(processing_signal_queue)) { 1250 queue = PCNTL_G(head); [all...] |
| H A D | php_pcntl.h | 70 struct php_pcntl_pending_signal *head, *tail, *spares; variable in typeref:struct:php_pcntl_pending_signal
|
| /PHP_5_4/ext/soap/ |
| H A D | php_packet_soap.c | 29 xmlNodePtr trav, env, head, body, resp, cur, fault; local 103 head = NULL; 109 head = trav; 157 if (head != NULL) { 158 attr = head->properties; 395 if (soap_headers && head) { 396 trav = head->children;
|
| /PHP_5_4/ext/standard/ |
| H A D | filters.c | 48 while (buckets_in->head) { 49 bucket = php_stream_bucket_make_writeable(buckets_in->head TSRMLS_CC); 96 while (buckets_in->head) { 97 bucket = php_stream_bucket_make_writeable(buckets_in->head TSRMLS_CC); 124 while (buckets_in->head) { 125 bucket = php_stream_bucket_make_writeable(buckets_in->head TSRMLS_CC); 216 while (buckets_in->head) { 217 bucket = php_stream_bucket_make_writeable(buckets_in->head TSRMLS_CC); 1715 while (buckets_in->head != NULL) { 1716 bucket = buckets_in->head; [all...] |
| H A D | head.h | 24 extern PHP_RINIT_FUNCTION(head);
|
| H A D | user_filters.c | 238 if (buckets_in->head) { 239 php_stream_bucket *bucket = buckets_in->head; 242 while ((bucket = buckets_in->head)) { 249 php_stream_bucket *bucket = buckets_out->head; 253 bucket = buckets_out->head; 428 if (brigade->head && (bucket = php_stream_bucket_make_writeable(brigade->head TSRMLS_CC))) {
|
| /PHP_5_4/ext/zlib/ |
| H A D | zlib_filter.c | 80 while (buckets_in->head) { 83 bucket = buckets_in->head; 85 bucket = php_stream_bucket_make_writeable(buckets_in->head TSRMLS_CC); 209 while (buckets_in->head) { 212 bucket = buckets_in->head;
|
| /PHP_5_4/main/streams/ |
| H A D | filter.c | 194 bucket->next = brigade->head; 197 if (brigade->head) { 198 brigade->head->prev = bucket; 202 brigade->head = bucket; 218 brigade->head = bucket; 229 bucket->brigade->head = bucket->next; 318 filter->next = chain->head; 321 if (chain->head) { 322 chain->head->prev = filter; 326 chain->head [all...] |
| H A D | php_stream_filter_api.h | 59 php_stream_bucket *head, *tail; member in struct:_php_stream_bucket_brigade 102 php_stream_filter *head, *tail; member in struct:_php_stream_filter_chain 142 #define php_stream_is_filtered(stream) ((stream)->readfilters.head || (stream)->writefilters.head)
|
| /PHP_5_4/sapi/caudium/ |
| H A D | caudium.c | 186 struct svalue *head = NULL; local 187 THREAD_SAFE_RUN(head = lookup_header(headername), "header lookup"); 188 if(!head || head->type != PIKE_T_STRING) 190 return head->u.string->str; 198 struct svalue *head = NULL; local 199 THREAD_SAFE_RUN(head = lookup_header(headername), "header lookup"); 200 if(!head || head->type != PIKE_T_INT) 202 return head [all...] |
| /PHP_5_4/sapi/roxen/ |
| H A D | roxen.c | 188 struct svalue *head = NULL; local 189 THREAD_SAFE_RUN(head = lookup_header(headername), "header lookup"); 190 if(!head || head->type != PIKE_T_STRING) 192 return head->u.string->str; 200 struct svalue *head = NULL; local 201 THREAD_SAFE_RUN(head = lookup_header(headername), "header lookup"); 202 if(!head || head->type != PIKE_T_INT) 204 return head [all...] |
| /PHP_5_4/ext/spl/ |
| H A D | spl_dllist.c | 77 spl_ptr_llist_element *head; member in struct:_spl_ptr_llist 129 llist->head = NULL; 147 spl_ptr_llist_element *current = llist->head, *next; 172 current = llist->head; 195 elem->next = llist->head; 197 if (llist->head) { 198 llist->head->prev = elem; 203 llist->head = elem; 224 llist->head = elem; 248 llist->head 281 spl_ptr_llist_element *head = llist->head; local 294 spl_ptr_llist_element *head = llist->head; local [all...] |