Home
last modified time | relevance | path

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

1234

/PHP-7.4/sapi/fpm/
H A Dwww.conf.in84 ; always at least 1 children.
85 ; pm.max_children - the maximum number of children that can
87 ; pm.start_servers - the number of children created on startup.
88 ; pm.min_spare_servers - the minimum number of children in 'idle'
91 ; number then some children will be created.
92 ; pm.max_spare_servers - the maximum number of children in 'idle'
95 ; number then some children will be killed.
96 ; ondemand - no children are created at startup. Children will be forked when
98 ; pm.max_children - the maximum number of children that
159 ; max children reached - number of times, the process limit has been reached,
[all …]
/PHP-7.4/ext/opcache/Optimizer/
H A Dzend_cfg.c259 block->children = -1; in initialize_block()
722 if (blocks[blocks[j].idom].children < 0 || in zend_cfg_compute_dominators_tree()
723 j < blocks[blocks[j].idom].children) { in zend_cfg_compute_dominators_tree()
724 blocks[j].next_child = blocks[blocks[j].idom].children; in zend_cfg_compute_dominators_tree()
725 blocks[blocks[j].idom].children = j; in zend_cfg_compute_dominators_tree()
727 int k = blocks[blocks[j].idom].children; in zend_cfg_compute_dominators_tree()
811 for (j = blocks[i].children; j >= 0; j = blocks[j].next_child) { in zend_cfg_identify_loops()
H A Dzend_ssa.c862 j = blocks[n].children; in zend_ssa_rename()
1466 j = ssa->cfg.blocks[block->idom].children; in zend_ssa_remove_block()
1468 ssa->cfg.blocks[block->idom].children = block->next_child; in zend_ssa_remove_block()
1481 block->children = -1; in zend_ssa_remove_block()
H A Dzend_dump.c804 if (b->children >= 0) { in zend_dump_block_info()
805 int j = b->children; in zend_dump_block_info()
/PHP-7.4/ext/simplexml/tests/
H A D027.phpt20 foreach($xml->children() as $node)
/PHP-7.4/sapi/fpm/tests/
H A Dfpm_get_status_basic.phpt67 ["max-children-reached"]=>
H A Dstatus.inc35 'max children reached' => '\d+',
/PHP-7.4/ext/dom/tests/
H A DDOMNode_replaceChild_basic.phpt14 // Replaces the child node oldChild with newChild in the list of children, and
/PHP-7.4/ext/dom/
H A Ddocumenttype.c182 xmlNodePtr cur = intsubset->children; in dom_documenttype_internal_subset_read()
H A Ddocument.c1720 php_dom_remove_xinclude_nodes(cur->children); in php_dom_remove_xinclude_nodes()
1730 php_dom_remove_xinclude_nodes(cur->children); in php_dom_remove_xinclude_nodes()
1767 root = (xmlNodePtr) docp->children; in PHP_FUNCTION()
2217 for (node = node->children; node; node = node->next) { in PHP_FUNCTION()
H A Dphp_dom.c983 node_list_unlink(node->children); in node_list_unlink()
1355 ret = dom_get_elements_by_tag_name_ns_raw(nodep->children, ns, local, cur, index); in dom_get_elements_by_tag_name_ns_raw()
1382 child = nodep->children; in dom_normalize()
/PHP-7.4/ext/xsl/
H A Dxsltprocessor.c268 if (node->children) { in xsl_ext_function_php()
269 curns->prefix = xmlStrdup((xmlChar *)node->children); in xsl_ext_function_php()
271 if (node->children) { in xsl_ext_function_php()
272 node = xmlNewDocNode(node->doc, NULL, (xmlChar *) node->children, node->name); in xsl_ext_function_php()
449 if (nodep && (nodep = nodep->children)) { in PHP_FUNCTION()
/PHP-7.4/ext/simplexml/
H A Dsxe.c141 node = node->children; in PHP_METHOD()
/PHP-7.4/ext/soap/
H A Dsoap.c1623 xmlNodePtr env = get_node(doc_request->children,"Envelope");
3397 if (func->children != NULL ||
3474 trav = env->children;
3519 trav = body->children;
3578 trav = head->children;
3612 if (strcmp((char*)attr->children->content,"1") == 0 ||
3652 hdr_func = hdr_func->children;
3673 func = func->children;
3676 func = func->children;
4154 if (head->children == NULL) {
[all …]
/PHP-7.4/sapi/cgi/
H A Dcgi_main.c108 static int children = 0; variable
2010 children = atoi(children_str);
2011 if (children < 0) {
2040 if (children) {
2095 } while (parent && (running < children));
2128 if (children) {
2135 kids = children < WIN32_MAX_SPAWN_CHILDREN ? children : WIN32_MAX_SPAWN_CHILDREN;
2144 snprintf(kid_buf, 16, "%d", children);
/PHP-7.4/ext/opcache/
H A Dzend_persist.c164 sizeof(zend_ast_list) - sizeof(zend_ast *) + sizeof(zend_ast *) * list->children); in zend_persist_ast()
165 for (i = 0; i < list->children; i++) { in zend_persist_ast()
172 uint32_t children = zend_ast_get_num_children(ast); in zend_persist_ast() local
173 …e = zend_shared_memdup(ast, sizeof(zend_ast) - sizeof(zend_ast *) + sizeof(zend_ast *) * children); in zend_persist_ast()
174 for (i = 0; i < children; i++) { in zend_persist_ast()
H A Dzend_file_cache.c309 for (i = 0; i < list->children; i++) {
318 uint32_t children = zend_ast_get_num_children(ast); local
319 for (i = 0; i < children; i++) {
1037 for (i = 0; i < list->children; i++) {
1044 uint32_t children = zend_ast_get_num_children(ast); local
1045 for (i = 0; i < children; i++) {
/PHP-7.4/ext/tidy/tests/
H A D012.phpt2 Accessing children nodes
/PHP-7.4/ext/tidy/
H A Dtidy.c881 zval attribute, children, temp; in tidy_add_default_properties() local
933 array_init(&children); in tidy_add_default_properties()
943 add_next_index_zval(&children, &temp); in tidy_add_default_properties()
948 ZVAL_NULL(&children); in tidy_add_default_properties()
951 zend_hash_str_update(obj->std.properties, "child", sizeof("child") - 1, &children); in tidy_add_default_properties()
/PHP-7.4/ext/libxml/
H A Dlibxml.c247 php_libxml_node_free_list(node->children); in php_libxml_node_free_list()
250 php_libxml_node_free_list(node->children); in php_libxml_node_free_list()
1354 php_libxml_node_free_list((xmlNodePtr) node->children); in php_libxml_node_free_resource()
/PHP-7.4/sapi/litespeed/
H A Dlsapi_main.c1390 void start_children( int children ) in start_children() argument
1413 while((!s_stop )&&( running < children )) { in start_children()
/PHP-7.4/
H A Drun-tests.php1662 function kill_children(array $children) { argument
1663 foreach ($children as $child) {

Completed in 144 milliseconds

1234