| /PHP_TRUNK/ext/spl/examples/ |
| H A D | recursivecomparedualiterator.inc | 20 * level we need to check whether both child iterators are at their end.
|
| /PHP_TRUNK/ext/spl/internal/ |
| H A D | recursivecachingiterator.inc | 55 $child = $this->it->getChildren(); 60 $this->getChildren = $ref->newInstance($child, $this->flags);
|
| /PHP_TRUNK/ext/tidy/examples/ |
| H A D | dumpit5.php | 84 foreach($node->child as $child) { 85 dump_tree($child, $indent + 3);
|
| H A D | urlgrab5.php | 27 foreach($node->child as $c) {
|
| /PHP_TRUNK/sapi/fpm/fpm/ |
| H A D | fpm_children.c | 59 static void fpm_child_free(struct fpm_child_s *child) /* {{{ */ argument 61 free(child); 65 static void fpm_child_close(struct fpm_child_s *child, int in_event_loop) /* {{{ */ argument 67 if (child->fd_stdout != -1) { 69 fpm_event_fire(&child->ev_stdout); 71 if (child->fd_stdout != -1) { 72 close(child->fd_stdout); 76 if (child->fd_stderr != -1) { 78 fpm_event_fire(&child->ev_stderr); 80 if (child 89 fpm_child_link(struct fpm_child_s *child) argument 105 fpm_child_unlink(struct fpm_child_s *child) argument 125 struct fpm_child_s *child = 0; local 164 fpm_children_free(struct fpm_child_s *child) argument 181 struct fpm_child_s *child; local 330 fpm_resources_discard(struct fpm_child_s *child) argument 338 fpm_child_resources_use(struct fpm_child_s *child) argument 354 fpm_parent_resources_use(struct fpm_child_s *child) argument 364 struct fpm_child_s *child; local [all...] |
| H A D | fpm_children.h | 15 int fpm_children_free(struct fpm_child_s *child);
|
| H A D | fpm_php_trace.c | 43 static int fpm_php_trace_dump(struct fpm_child_s *child, FILE *slowlog TSRMLS_DC) /* {{{ */ argument 46 pid_t pid = child->pid; 57 fprintf(slowlog, "\n%s [pool %s] pid %d\n", buf, child->wp->config->name, (int) pid); 138 void fpm_php_trace(struct fpm_child_s *child) /* {{{ */ argument 141 fpm_scoreboard_update(0, 0, 0, 0, 0, 0, 1, FPM_SCOREBOARD_ACTION_SET, child->wp->scoreboard); 144 zlog(ZLOG_NOTICE, "about to trace %d", (int) child->pid); 146 slowlog = fopen(child->wp->config->slowlog, "a+"); 149 zlog(ZLOG_SYSERROR, "unable to open slowlog (%s)", child->wp->config->slowlog); 153 if (0 > fpm_trace_ready(child->pid)) { 157 if (0 > fpm_php_trace_dump(child, slowlo [all...] |
| H A D | fpm_process_ctl.c | 152 struct fpm_child_s *child; local 154 for (child = wp->children; child; child = child->next) { 155 int res = kill(child->pid, signo); 157 zlog(ZLOG_DEBUG, "[pool %s] sending signal %d %s to child %d", 158 child->wp->config->name, signo, 159 fpm_signal_names[signo] ? fpm_signal_names[signo] : "", (int) child->pid); 168 zlog(ZLOG_DEBUG, "%d child(re 299 struct fpm_child_s *child; local 315 struct fpm_child_s *child; local 499 struct fpm_child_s *child; local [all...] |
| H A D | fpm_request.c | 230 void fpm_request_check_timed_out(struct fpm_child_s *child, struct timeval *now, int terminate_timeout, int slowlog_timeout) /* {{{ */ argument 234 proc_p = fpm_scoreboard_proc_acquire(child->wp->scoreboard, child->scoreboard_i, 1); 244 if (child->slow_logged.tv_sec) { 245 if (child->slow_logged.tv_sec != proc.accepted.tv_sec || child->slow_logged.tv_usec != proc.accepted.tv_usec) { 246 child->slow_logged.tv_sec = 0; 247 child->slow_logged.tv_usec = 0; 259 if (child->slow_logged.tv_sec == 0 && slowlog_timeout && 264 child 287 fpm_request_is_idle(struct fpm_child_s *child) argument 301 fpm_request_last_activity(struct fpm_child_s *child, struct timeval *tv) argument [all...] |
| H A D | fpm_request.h | 18 void fpm_request_check_timed_out(struct fpm_child_s *child, struct timeval *tv, int terminate_timeout, int slowlog_timeout); 19 int fpm_request_is_idle(struct fpm_child_s *child); 21 int fpm_request_last_activity(struct fpm_child_s *child, struct timeval *tv);
|
| H A D | fpm_stdio.h | 13 int fpm_stdio_prepare_pipes(struct fpm_child_s *child); 14 void fpm_stdio_child_use_pipes(struct fpm_child_s *child); 15 int fpm_stdio_parent_use_pipes(struct fpm_child_s *child); 16 int fpm_stdio_discard_pipes(struct fpm_child_s *child);
|
| H A D | fpm_stdio.c | 78 zlog(ZLOG_SYSERROR, "failed to init child stdio: dup2()"); 91 struct fpm_child_s *child; local 102 child = (struct fpm_child_s *)arg; 103 is_stdout = (fd == child->fd_stdout); 105 event = &child->ev_stdout; 107 event = &child->ev_stderr; 120 zlog(ZLOG_SYSERROR, "unable to read what child say"); 127 close(child->fd_stdout); 128 child->fd_stdout = -1; 130 close(child 183 fpm_stdio_prepare_pipes(struct fpm_child_s *child) argument 213 fpm_stdio_parent_use_pipes(struct fpm_child_s *child) argument 234 fpm_stdio_discard_pipes(struct fpm_child_s *child) argument 249 fpm_stdio_child_use_pipes(struct fpm_child_s *child) argument [all...] |
| /PHP_TRUNK/ext/intl/resourcebundle/ |
| H A D | resourcebundle.c | 38 restype = ures_getType( source->child ); 42 ufield = ures_getString( source->child, &ilen, &INTL_DATA_ERROR_CODE(source) ); 48 bfield = ures_getBinary( source->child, &ilen, &INTL_DATA_ERROR_CODE(source) ); 54 lfield = ures_getInt( source->child, &INTL_DATA_ERROR_CODE(source) ); 60 vfield = ures_getIntVector( source->child, &ilen, &INTL_DATA_ERROR_CODE(source) ); 72 newrb->me = source->child; 73 source->child = NULL;
|
| H A D | resourcebundle_class.c | 48 if (rb->child) { 49 ures_close( rb->child ); 70 rb->child = NULL; 177 rb->child = ures_getByIndex( rb->me, meindex, rb->child, &INTL_DATA_ERROR_CODE(rb) ); 181 rb->child = ures_getByKey(rb->me, mekey, rb->child, &INTL_DATA_ERROR_CODE(rb) );
|
| H A D | resourcebundle_class.h | 32 UResourceBundle *child; member in struct:__anon202
|
| H A D | resourcebundle_iterator.c | 37 rb->child = ures_getByIndex( rb->me, iterator->i, rb->child, &icuerror ); 40 /* ATTN: key extraction must be the first thing to do... rb->child might be reset in read! */ 42 iterator->currentkey = estrdup( ures_getKey( rb->child ) );
|
| /PHP_TRUNK/ext/json/ |
| H A D | JSON_parser.c | 395 zval *child = jp->the_zstack[cur]; local 400 add_next_index_zval(root, child); 406 add_property_zval_ex(root, (key->len ? key->c : "_empty_"), (key->len ? (key->len + 1) : sizeof("_empty_")), child TSRMLS_CC); 407 Z_DELREF_P(child); 411 add_assoc_zval_ex(root, (key->len ? key->c : ""), (key->len ? (key->len + 1) : sizeof("")), child);
|
| /PHP_TRUNK/ext/dom/ |
| H A D | node.c | 1002 xmlNodePtr child, new_child, parentp, refp; local 1016 DOM_GET_OBJ(child, node, xmlNodePtr, childobj); 1023 (child->parent != NULL && dom_node_is_read_only(child->parent) == SUCCESS)) { 1028 if (dom_hierarchy(parentp, child) == FAILURE) { 1033 if (child->doc != parentp->doc && child->doc != NULL) { 1038 if (child->type == XML_DOCUMENT_FRAG_NODE && child->children == NULL) { 1043 if (child 1251 xmlNodePtr children, child, nodep; local 1302 xmlNodePtr child, nodep, new_child = NULL; local [all...] |
| H A D | php_dom.h | 115 int dom_hierarchy(xmlNodePtr parent, xmlNodePtr child);
|
| H A D | xpath.c | 146 zval *child; local 147 MAKE_STD_ZVAL(child); 167 child = php_dom_create_object(node, &ret, child, (dom_object *)intern TSRMLS_CC); 168 add_next_index_zval(args[i], child); 480 zval *child; local 482 MAKE_STD_ZVAL(child); 502 child = php_dom_create_object(node, &ret, child, (dom_object *)intern TSRMLS_CC); 503 add_next_index_zval(retval, child); [all...] |
| H A D | php_dom.c | 1440 /* {{{ int dom_hierarchy(xmlNodePtr parent, xmlNodePtr child) */ 1441 int dom_hierarchy(xmlNodePtr parent, xmlNodePtr child) argument 1445 if (parent == NULL || child == NULL || child->doc != parent->doc) { 1452 if (nodep == child) { 1506 xmlNodePtr child, nextp, newnextp; local 1510 child = nodep->children; 1511 while(child != NULL) { 1512 switch (child->type) { 1514 nextp = child [all...] |
| /PHP_TRUNK/ext/simplexml/ |
| H A D | sxe.c | 87 Get name of current child element */ 132 php_sxe_object *child; local 142 child = php_sxe_fetch_object(sxe->iter.data TSRMLS_CC); 144 GET_NODE(child, node); 156 Get child element iterator */
|
| /PHP_TRUNK/ext/standard/ |
| H A D | proc_open.h | 42 php_process_id_t child; member in struct:php_process_handle
|
| H A D | proc_open.c | 241 wait_pid = waitpid(proc->child, &wstatus, waitpid_options); 291 if (kill(proc->child, sig_no) == 0) { 344 add_assoc_long(return_value, "pid", (long) proc->child); 356 wait_pid = waitpid(proc->child, &wstatus, WNOHANG|WUNTRACED); 358 if (wait_pid == proc->child) { 421 int index; /* desired fd number in child process */ 422 php_file_descriptor_t parentend, childend; /* fds for pipes in parent/child */ 462 php_process_id_t child; local 511 /* we use this to allow the child to inherit handles */ 600 /* don't let the child inheri [all...] |
| /PHP_TRUNK/Zend/ |
| H A D | zend_alloc.c | 403 struct _zend_mm_free_block *child[2]; member in struct:_zend_mm_free_block 740 mm_block->child[0] = mm_block->child[1] = NULL; 753 p = &prev->child[(m >> (ZEND_MM_NUM_BUCKETS-1)) & 1]; 804 rp = &mm_block->child[mm_block->child[1] != NULL]; 815 while (*(cp = &(prev->child[prev->child[1] != NULL])) != NULL) { 825 if ((prev->child[0] = mm_block->child[ [all...] |