Home
last modified time | relevance | path

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

1234

/PHP-7.4/sapi/fpm/fpm/
H A Dfpm_worker_pool.h29 struct fpm_child_s *children; member
H A Dfpm_process_ctl.c156 for (child = wp->children; child; child = child->next) { in fpm_pctl_kill_all()
305 for (child = wp->children; child; child = child->next) { in fpm_pctl_check_request_timeout()
327 for (child = wp->children; child; child = child->next) { in fpm_pctl_perform_idle_server_maintenance()
525 for (child = wp->children; child; child = child->next) { in fpm_pctl_on_socket_accept()
H A Dfpm_children.c98 child->next = wp->children; in fpm_child_link()
103 wp->children = child; in fpm_child_link()
115 child->wp->children = child->next; in fpm_child_unlink()
131 for (child = wp->children; child; child = child->next) { in fpm_child_find()
H A Dfpm_worker_pool.c55 fpm_children_free(wp->children); in fpm_worker_pool_cleanup()
/PHP-7.4/ext/spl/tests/
H A Drecursivedualiterator.inc33 /** @return whether both LHS and RHS have children
41 * iterators current children.
/PHP-7.4/ext/dom/tests/
H A DDOMDocumentFragment_appendXML_basic_001.phpt2 DOMDocumentFragment::appendXML() with children with properties.
/PHP-7.4/Zend/tests/
H A Dbug34199.phpt9 $kids = $xml->children();
/PHP-7.4/ext/soap/tests/bugs/
H A Dbug30045.phpt27 …echo $xml->children("http://schemas.xmlsoap.org/soap/envelope/")->Body->children("http://test-uri"…
/PHP-7.4/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) {
/PHP-7.4/ext/dom/
H A Ddom_iterators.c75 ret->children = NULL; in create_notation()
221 basenode = basenode->children; in php_dom_iterator_move_forward()
301 curnode = (xmlNodePtr) nodep->children; in php_dom_get_iterator()
307 nodep = nodep->children; in php_dom_get_iterator()
H A Dattr.c168 if (attrp->children) { in dom_attr_value_write()
169 node_list_unlink(attrp->children); in dom_attr_value_write()
H A Delement.c339 value = xmlNodeListGetString(attr->doc, attr->children, 1); in PHP_FUNCTION()
399 node_list_unlink(attr->children); in PHP_FUNCTION()
458 node_list_unlink(attrp->children); in PHP_FUNCTION()
506 if (attrp->children) { in PHP_FUNCTION()
507 curns->prefix = xmlStrdup((xmlChar *) attrp->children); in PHP_FUNCTION()
509 if (attrp->children) { in PHP_FUNCTION()
510 attrp = xmlNewDocNode(nodep->doc, NULL, (xmlChar *) attrp->children, attrp->name); in PHP_FUNCTION()
777 node_list_unlink(nodep->children); in PHP_FUNCTION()
845 node_list_unlink(attr->children); in PHP_FUNCTION()
911 node_list_unlink(attrp->children); in PHP_FUNCTION()
[all …]
H A Ddomimplementation.c222 docp->children = (xmlNodePtr) doctype; in PHP_METHOD()
233 docp->children = NULL; in PHP_METHOD()
/PHP-7.4/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 freqently 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-7.4/Zend/
H A Dzend_compile.c3232 || args->children != 1 in zend_compile_func_strlen()
3254 if (args->children != 1) { in zend_compile_func_typecheck()
3436 && list->children == 3 in zend_compile_func_cufa()
3470 if (args->children < 1) { in zend_compile_func_cuf()
3723 && args->children == 2 in zend_compile_func_array_slice()
3738 && list->children == 0 in zend_compile_func_array_slice()
4725 if (list->children > 1) { in zend_compile_if()
4753 if (list->children > 1) { in zend_compile_if()
5541 if (!list->children) { in zend_compile_closure_binding()
6092 uint32_t i, children = list->children; in zend_compile_prop_decl() local
[all …]
H A Dzend_ast.h173 uint32_t children; member
337 if (list->children && list->child[list->children - 1] == NULL) { in zend_ast_list_rtrim()
338 list->children--; in zend_ast_list_rtrim()
/PHP-7.4/sapi/fpm/tests/
H A Dstatus-basic.phpt29 'max children reached' => 0,
H A Dbug76601-reload-child-signals.phpt2 FPM: bug76601 children should not ignore signals during concurrent reloads
21 ; spawn children immediately after reload
/PHP-7.4/ext/opcache/Optimizer/
H A Dzend_cfg.h53 int children; /* list of dominated blocks */ member
/PHP-7.4/ext/opcache/
H A Dzend_persist_calc.c87 ADD_SIZE(sizeof(zend_ast_list) - sizeof(zend_ast *) + sizeof(zend_ast *) * list->children); in zend_persist_ast_calc()
88 for (i = 0; i < list->children; i++) { in zend_persist_ast_calc()
94 uint32_t children = zend_ast_get_num_children(ast); in zend_persist_ast_calc() local
95 ADD_SIZE(sizeof(zend_ast) - sizeof(zend_ast *) + sizeof(zend_ast *) * children); in zend_persist_ast_calc()
96 for (i = 0; i < children; i++) { in zend_persist_ast_calc()

Completed in 95 milliseconds

1234