| /PHP_5_4/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_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_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_5_4/ext/intl/resourcebundle/ |
| H A D | resourcebundle_class.h | 32 UResourceBundle *child; member in struct:__anon193
|
| /PHP_5_4/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_5_4/ext/mbstring/oniguruma/ |
| H A D | regexec.c | 96 history_tree_add_child(OnigCaptureTreeNode* parent, OnigCaptureTreeNode* child) argument 121 parent->childs[parent->num_childs] = child; 130 OnigCaptureTreeNode *clone, *child; local 138 child = history_tree_clone(node->childs[i]); 139 if (IS_NULL(child)) { 143 history_tree_add_child(clone, child); 1091 OnigCaptureTreeNode* child; local 1099 child = history_node_new(); 1100 CHECK_NULL_RETURN_VAL(child, ONIGERR_MEMORY); 1101 child [all...] |
| /PHP_5_4/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.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...] |
| 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...] |
| /PHP_5_4/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_5_4/ext/spl/ |
| H A D | spl_iterators.c | 211 zval *retval, *child; local 301 zend_call_method_with_0_params(&zthis, object->ce, &object->callGetChildren, "callGetChildren", &child); 303 zend_call_method_with_0_params(&zobject, ce, NULL, "getchildren", &child); 311 if (child) { 312 zval_ptr_dtor(&child); 319 ce = child && Z_TYPE_P(child) == IS_OBJECT ? Z_OBJCE_P(child) : NULL; 321 if (child) { 322 zval_ptr_dtor(&child); [all...] |
| /PHP_5_4/ext/standard/ |
| H A D | proc_open.c | 231 wait_pid = waitpid(proc->child, &wstatus, 0); 281 if (kill(proc->child, sig_no) == 0) { 332 add_assoc_long(return_value, "pid", (long) proc->child); 344 wait_pid = waitpid(proc->child, &wstatus, WNOHANG|WUNTRACED); 346 if (wait_pid == proc->child) { 409 int index; /* desired fd number in child process */ 410 php_file_descriptor_t parentend, childend; /* fds for pipes in parent/child */ 449 php_process_id_t child; local 498 /* we use this to allow the child to inherit handles */ 587 /* don't let the child inheri [all...] |
| H A D | proc_open.h | 42 php_process_id_t child; member in struct:php_process_handle
|
| /PHP_5_4/ext/xsl/ |
| H A D | xsltprocessor.c | 262 zval *child; local 263 MAKE_STD_ZVAL(child); 283 child = php_dom_create_object(node, &ret, child, domintern TSRMLS_CC); 284 add_next_index_zval(args[i], child);
|
| /PHP_5_4/Zend/ |
| H A D | zend_compile.c | 3210 static void do_inheritance_check_on_method(zend_function *child, zend_function *parent TSRMLS_DC) /* {{{ */ argument 3217 && parent->common.scope != (child->common.prototype ? child->common.prototype->common.scope : child->common.scope) 3218 && child->common.fn_flags & (ZEND_ACC_ABSTRACT|ZEND_ACC_IMPLEMENTED_ABSTRACT)) { 3221 child->common.function_name, 3222 child->common.prototype ? child->common.prototype->common.scope->name : child->common.scope->name); 3226 zend_error(E_COMPILE_ERROR, "Cannot override final method %s::%s()", ZEND_FN_SCOPE_NAME(parent), child 3285 zend_function *child; local [all...] |
| H A D | zend_alloc.c | 403 struct _zend_mm_free_block *child[2]; member in struct:_zend_mm_free_block 736 mm_block->child[0] = mm_block->child[1] = NULL; 749 p = &prev->child[(m >> (ZEND_MM_NUM_BUCKETS-1)) & 1]; 800 rp = &mm_block->child[mm_block->child[1] != NULL]; 811 while (*(cp = &(prev->child[prev->child[1] != NULL])) != NULL) { 821 if ((prev->child[0] = mm_block->child[ [all...] |