Home
last modified time | relevance | path

Searched refs:children (Results 51 – 75 of 100) sorted by relevance

1234

/PHP-8.2/ext/dom/tests/
H A DDOMDocumentFragment_appendXML_basic_001.phpt2 DOMDocumentFragment::appendXML() with children with properties.
H A Dgh11906.phpt2 GH-11906 (prepend without children after creating fragment results in segfault)
/PHP-8.2/ext/simplexml/tests/
H A D026.phpt22 foreach($xml->children() as $node)
H A Dbug72971.phpt11 var_dump($xml->children('ns'));
H A D009b.phpt19 var_dump($sxe->children());
H A D028.phpt20 foreach($xml->children() as $node)
H A D009.phpt31 foreach($sxe->children() as $name=>$val) {
H A D018.phpt31 foreach($xml->children() as $name => $node) {
H A Dsimplexml_uninitialized.phpt31 var_dump($sxe->children());
/PHP-8.2/ext/dom/
H A Dattr.c150 if (attrp->children) { in dom_attr_value_write()
151 node_list_unlink(attrp->children); in dom_attr_value_write()
H A Ddom_iterators.c73 ret->children = NULL; in create_notation()
218 basenode = basenode->children; in php_dom_iterator_move_forward()
298 curnode = (xmlNodePtr) nodep->children; in php_dom_get_iterator()
304 nodep = nodep->children; in php_dom_get_iterator()
H A Ddomimplementation.c182 docp->children = (xmlNodePtr) doctype; in PHP_METHOD()
193 docp->children = NULL; in PHP_METHOD()
H A Delement.c221 value = xmlNodeListGetString(attr->doc, attr->children, 1); in PHP_METHOD()
280 node_list_unlink(attr->children); in PHP_METHOD()
338 node_list_unlink(attrp->children); in PHP_METHOD()
639 node_list_unlink(nodep->children); in PHP_METHOD()
707 node_list_unlink(attr->children); in PHP_METHOD()
746 node = node->children; in dom_remove_eliminated_ns()
753 if (node->children) { in dom_remove_eliminated_ns()
754 node = node->children; in dom_remove_eliminated_ns()
842 node_list_unlink(attrp->children); in PHP_METHOD()
1069 id_val = xmlNodeListGetString(attrp->doc, attrp->children, 1); in php_set_attribute_id()
/PHP-8.2/sapi/litespeed/
H A DREADME.md119 process will start/stop children PHP processes dynamically based on on demand.
133 start children process on demand to save system resource. This is preferred in
135 try to avoid frequently stopping and starting children process. This might be
140 `LSAPI_EXTRA_CHILDREN` controls the maximum number of extra children processes
141 can be started when some or all existing children processes are in
142 malfunctioning state. Total number of children processes will be reduced to
162 In Self Managed Mode, `LSAI_MAX_IDLE_CHILDREN` controls how many idle children
163 processes are allowed. Excessive idle children processes will be killed by the
/PHP-8.2/sapi/fpm/fpm/
H A Dfpm_children.c120 child->next = wp->children; in fpm_child_link()
125 wp->children = child; in fpm_child_link()
137 child->wp->children = child->next; in fpm_child_unlink()
153 for (child = wp->children; child; child = child->next) { in fpm_child_find()
H A Dfpm_worker_pool.c58 fpm_children_free(wp->children); in fpm_worker_pool_cleanup()
H A Dfpm_process_ctl.c160 for (child = wp->children; child; child = child->next) { in fpm_pctl_kill_all()
308 for (child = wp->children; child; child = child->next) { in fpm_pctl_check_request_timeout()
361 for (child = wp->children; child; child = child->next) { in fpm_pctl_perform_idle_server_maintenance()
540 for (child = wp->children; child; child = child->next) { in fpm_pctl_on_socket_accept()
/PHP-8.2/sapi/fpm/tests/
H A Dbug76601-reload-child-signals.phpt2 FPM: bug76601 children should not ignore signals during concurrent reloads
21 ; spawn children immediately after reload
H A Dstatus-basic.phpt29 'max children reached' => 0,
H A Dstatus-listen.phpt30 'max children reached' => 0,
/PHP-8.2/Zend/
H A Dzend_generators.c181 ZEND_ASSERT(node->children >= 1); in zend_generator_remove_child()
182 if (node->children == 1) { in zend_generator_remove_child()
187 if (node->children == 2) { in zend_generator_remove_child()
197 node->children--; in zend_generator_remove_child()
341 if (UNEXPECTED(generator->node.children > 1)) { in zend_generator_free_storage()
420 generator->node.children = 0; in zend_generator_create()
487 if (node->children == 0) { in zend_generator_add_child()
490 if (node->children == 1) { in zend_generator_add_child()
501 ++node->children; in zend_generator_add_child()
532 while (!root->execute_data && root->node.children == 1) { in get_new_root()
H A Dzend_generators.h41 uint32_t children; member
/PHP-8.2/Zend/Optimizer/
H A Dzend_cfg.c261 block->children = -1; in initialize_block()
728 if (blocks[blocks[j].idom].children < 0 || in zend_cfg_compute_dominators_tree()
729 j < blocks[blocks[j].idom].children) { in zend_cfg_compute_dominators_tree()
730 blocks[j].next_child = blocks[blocks[j].idom].children; in zend_cfg_compute_dominators_tree()
731 blocks[blocks[j].idom].children = j; in zend_cfg_compute_dominators_tree()
733 int k = blocks[blocks[j].idom].children; in zend_cfg_compute_dominators_tree()
808 for (j = blocks[i].children; j >= 0; j = blocks[j].next_child) { in zend_cfg_identify_loops()
835 for (child = blocks[sorted_blocks[i]].children; child >= 0; child = blocks[child].next_child) { in zend_cfg_identify_loops()
H A Dzend_cfg.h53 int children; /* list of dominated blocks */ member
/PHP-8.2/ext/opcache/
H A Dzend_persist_calc.c83 ADD_SIZE(sizeof(zend_ast_list) - sizeof(zend_ast *) + sizeof(zend_ast *) * list->children); in zend_persist_ast_calc()
84 for (i = 0; i < list->children; i++) { in zend_persist_ast_calc()
90 uint32_t children = zend_ast_get_num_children(ast); in zend_persist_ast_calc() local
91 ADD_SIZE(sizeof(zend_ast) - sizeof(zend_ast *) + sizeof(zend_ast *) * children); in zend_persist_ast_calc()
92 for (i = 0; i < children; i++) { in zend_persist_ast_calc()

Completed in 55 milliseconds

1234