Home
last modified time | relevance | path

Searched refs:child (Results 101 – 125 of 138) sorted by relevance

123456

/PHP-5.5/ext/dom/tests/
H A DDOMNode_insertBefore_error3.phpt5 DOM_NOT_FOUND is raised if refnode is not a child
H A DDOMNode_insertBefore_error4.phpt5 DOM_NOT_FOUND is raised if refnode is not a child
H A DDOMNode_insertBefore_error2.phpt5 DOM_NOT_FOUND is raised if refnode is not a child
H A Ddom001.phpt71 echo "--------- Add child to root\n";
185 --------- Add child to root
/PHP-5.5/ext/openssl/tests/
H A Dbug46127.phpt41 if ($pid == 0) { // child
H A Dbug48182.phpt77 if ($pid == 0) { // child
/PHP-5.5/ext/dom/
H A Dphp_dom.c1449 if (parent == NULL || child == NULL || child->doc != parent->doc) { in dom_hierarchy()
1456 if (nodep == child) { in dom_hierarchy()
1510 xmlNodePtr child, nextp, newnextp; in dom_normalize() local
1514 child = nodep->children; in dom_normalize()
1515 while(child != NULL) { in dom_normalize()
1516 switch (child->type) { in dom_normalize()
1518 nextp = child->next; in dom_normalize()
1534 dom_normalize (child TSRMLS_CC); in dom_normalize()
1535 attr = child->properties; in dom_normalize()
1542 dom_normalize (child TSRMLS_CC); in dom_normalize()
[all …]
H A Dphp_dom.h115 int dom_hierarchy(xmlNodePtr parent, xmlNodePtr child);
/PHP-5.5/ext/reflection/tests/
H A DReflectionClass_implementsInterface_001.phpt21 foreach ($rcs as $childName => $child) {
26 var_dump($child->implementsInterface($parent));
32 var_dump($child->implementsInterface($parentName));
/PHP-5.5/sapi/litespeed/
H A DREADME153 This controls how many requests each child process will handle before
161 In Self Managed Mode, LSAPI_MAX_IDLE controls how long a idle child
180 processing time allowed when processing a request. If a child process
183 of dead or runaway child process.
189 process will wait before exiting when there is no child process.
/PHP-5.5/sapi/fpm/
H A Dphp-fpm.conf.in52 ; If this number of child processes exit with SIGSEGV or SIGBUS within the time
66 ; Time limit for child processes to wait for a reaction on signals from master.
122 ; Multiple pools of child processes may be started with different listening
195 ; Choose how the process manager will control the number of child processes.
197 ; static - a fixed number (pm.max_children) of child processes;
198 ; dynamic - the number of child processes are set dynamically based on the
222 ; maximum number of child processes when pm is set to 'dynamic' or 'ondemand'.
232 ; The number of child processes created on startup.
252 ; The number of requests each child process should execute before respawning.
415 ; %p: PID of the child that serviced the request
[all …]
/PHP-5.5/ext/spl/examples/
H A Drecursivecomparedualiterator.inc20 * level we need to check whether both child iterators are at their end.
/PHP-5.5/ext/oci8/tests/
H A Dedition_1.phpt22 /* In 11.2, there can only be one child edition. So this test will
23 * fail to create the necessary editions if a child edition exists
H A Dedition_2.phpt22 /* In 11.2, there can only be one child edition. So this test will
23 * fail to create the necessary editions if a child edition exists
/PHP-5.5/ext/soap/tests/interop/Round3/GroupE/
H A Dr3_groupE_list_004w.phpt13 $this->child = $c;
/PHP-5.5/Zend/tests/
H A Dbug32290.phpt2 Bug #32290 (calling call_user_func_array() ends in infinite loop within child class)
/PHP-5.5/sapi/cgi/
H A DREADME.FastCGI131 This controls how many child processes the PHP process spawns. When the
132 fastcgi starts, it creates a number of child processes which handle one
148 This controls how many requests each child process will handle before
/PHP-5.5/ext/standard/tests/streams/
H A Dproc_open_bug51800.phpt17 so then the pipe buffer is emptied more often and the child has chance to continue its
/PHP-5.5/ext/xsl/
H A Dxsltprocessor.c264 zval *child; in xsl_ext_function_php() local
265 MAKE_STD_ZVAL(child); in xsl_ext_function_php()
288 child = php_dom_create_object(node, &ret, child, domintern TSRMLS_CC); in xsl_ext_function_php()
289 add_next_index_zval(args[i], child); in xsl_ext_function_php()
/PHP-5.5/ext/standard/tests/array/
H A Dsizeof_object2.phpt44 // child class which inherits parent test2
H A Duasort_object2.phpt14 * child class,
H A Darray_unshift_object.phpt43 echo "defined in child";
/PHP-5.5/ext/json/
H A DJSON_parser.c395 zval *child = jp->the_zstack[cur]; in attach_zval() local
400 add_next_index_zval(root, child); in attach_zval()
406 …(key->len ? key->c : "_empty_"), (key->len ? (key->len + 1) : sizeof("_empty_")), child TSRMLS_CC); in attach_zval()
407 Z_DELREF_P(child); in attach_zval()
411 …add_assoc_zval_ex(root, (key->len ? key->c : ""), (key->len ? (key->len + 1) : sizeof("")), child); in attach_zval()
/PHP-5.5/Zend/
H A Dzend_compile.c3413 …&& parent->common.scope != (child->common.prototype ? child->common.prototype->common.scope : chil… in do_inheritance_check_on_method()
3417 child->common.function_name, in do_inheritance_check_on_method()
3418child->common.prototype ? child->common.prototype->common.scope->name : child->common.scope->name); in do_inheritance_check_on_method()
3425 child_flags = child->common.fn_flags; in do_inheritance_check_on_method()
3442 child->common.fn_flags |= ZEND_ACC_CHANGED; in do_inheritance_check_on_method()
3450 child->common.fn_flags |= ZEND_ACC_CHANGED; in do_inheritance_check_on_method()
3455 child->common.prototype = NULL; in do_inheritance_check_on_method()
3458 child->common.prototype = parent; in do_inheritance_check_on_method()
3464 if (child->common.prototype && (child->common.prototype->common.fn_flags & ZEND_ACC_ABSTRACT)) { in do_inheritance_check_on_method()
3465 if (!zend_do_perform_implementation_check(child, child->common.prototype TSRMLS_CC)) { in do_inheritance_check_on_method()
[all …]
/PHP-5.5/ext/mbstring/oniguruma/
H A Dregexec.c123 parent->childs[parent->num_childs] = child; in history_tree_add_child()
132 OnigCaptureTreeNode *clone, *child; in history_tree_clone() local
140 child = history_tree_clone(node->childs[i]); in history_tree_clone()
141 if (IS_NULL(child)) { in history_tree_clone()
145 history_tree_add_child(clone, child); in history_tree_clone()
1041 OnigCaptureTreeNode* child; in make_capture_history_tree() local
1049 child = history_node_new(); in make_capture_history_tree()
1050 CHECK_NULL_RETURN_MEMERR(child); in make_capture_history_tree()
1051 child->group = n; in make_capture_history_tree()
1052 child->beg = (int )(k->u.mem.pstr - str); in make_capture_history_tree()
[all …]

Completed in 78 milliseconds

123456