Home
last modified time | relevance | path

Searched refs:children (Results 1 – 25 of 85) sorted by last modified time

1234

/PHP-5.5/sapi/litespeed/
H A DREADME120 start one PHP process, this process will start/stop children PHP processes
135 and start children process on demand to save system resource. This is
137 process manager will try to avoid freqently stopping and starting children
143 LSAPI_EXTRA_CHILDREN controls the maximum number of extra children processes
144 can be started when some or all existing children processes are in
145 malfunctioning state. Total number of children processes will be reduced to
170 children processes are allowed. Excessive idle children processes
H A Dlsapi_main.c944 void start_children( int children ) in start_children() argument
966 while((!s_stop )&&( running < children )) { in start_children()
/PHP-5.5/sapi/fpm/fpm/
H A Dfpm_process_ctl.c154 for (child = wp->children; child; child = child->next) { in fpm_pctl_kill_all()
302 for (child = wp->children; child; child = child->next) { in fpm_pctl_check_request_timeout()
324 for (child = wp->children; child; child = child->next) { in fpm_pctl_perform_idle_server_maintenance()
522 for (child = wp->children; child; child = child->next) { in fpm_pctl_on_socket_accept()
H A Dfpm_worker_pool.c43 fpm_children_free(wp->children); in fpm_worker_pool_cleanup()
H A Dfpm_worker_pool.h31 struct fpm_child_s *children; member
H A Dfpm_children.c96 child->next = wp->children; in fpm_child_link()
101 wp->children = child; in fpm_child_link()
113 child->wp->children = child->next; in fpm_child_unlink()
129 for (child = wp->children; child; child = child->next) { in fpm_child_find()
/PHP-5.5/sapi/fpm/
H A Dphp-fpm.conf.in200 ; always at least 1 children.
201 ; pm.max_children - the maximum number of children that can
203 ; pm.start_servers - the number of children created on startup.
204 ; pm.min_spare_servers - the minimum number of children in 'idle'
207 ; number then some children will be created.
208 ; pm.max_spare_servers - the maximum number of children in 'idle'
211 ; number then some children will be killed.
212 ; ondemand - no children are created at startup. Children will be forked when
214 ; pm.max_children - the maximum number of children that
275 ; max children reached - number of times, the process limit has been reached,
[all …]
/PHP-5.5/sapi/cgi/
H A DREADME.FastCGI137 those will handle requests. The main process will restart children in case of
H A Dcgi_main.c107 static int children = 0; variable
1998 children = atoi(children_str);
1999 if (children < 0) {
2011 if (children) {
2065 } while (parent && (running < children));
/PHP-5.5/ext/xsl/
H A Dxsltprocessor.c273 if (node->children) { in xsl_ext_function_php()
274 curns->prefix = xmlStrdup((char *) node->children); in xsl_ext_function_php()
276 if (node->children) { in xsl_ext_function_php()
277 node = xmlNewDocNode(node->doc, NULL, (char *) node->children, node->name); in xsl_ext_function_php()
457 if (nodep && (nodep = nodep->children)) { in PHP_FUNCTION()
/PHP-5.5/ext/xmlrpc/libxmlrpc/
H A Dxmlrpc_introspection.c351 if(Q_Size(&el->children) && in xml_element_to_method_description()
356 xml_element* elem_iter = Q_Head(&el->children); in xml_element_to_method_description()
360 elem_iter = Q_Next(&el->children); in xml_element_to_method_description()
372 if(Q_Size(&el->children)) { in xml_element_to_method_description()
373 xml_element* elem_iter = Q_Head(&el->children); in xml_element_to_method_description()
380 elem_iter = Q_Next(&el->children); in xml_element_to_method_description()
387 xml_element* elem_iter = Q_Head(&el->children); in xml_element_to_method_description()
395 elem_iter = Q_Next(&el->children); in xml_element_to_method_description()
405 else if(Q_Size(&el->children)) { in xml_element_to_method_description()
406 xml_element* elem_iter = Q_Head(&el->children); in xml_element_to_method_description()
[all …]
H A Dxml_to_dandarpc.c113 xml_element* iter = (xml_element*)Q_Head(&el->children); in xml_element_to_DANDARPC_REQUEST_worker()
128 iter = (xml_element*)Q_Next(&el->children); in xml_element_to_DANDARPC_REQUEST_worker()
132 xml_element* iter = (xml_element*)Q_Head(&el->children); in xml_element_to_DANDARPC_REQUEST_worker()
135 iter = (xml_element*)Q_Next(&el->children); in xml_element_to_DANDARPC_REQUEST_worker()
258 Q_PushTail(&elem_val->children, next_el); in DANDARPC_to_xml_element_worker()
304 Q_PushTail(&root->children, wrapper); in DANDARPC_REQUEST_to_xml_element()
312 Q_PushTail(&wrapper->children, method); in DANDARPC_REQUEST_to_xml_element()
314 Q_PushTail(&wrapper->children, in DANDARPC_REQUEST_to_xml_element()
H A Dxml_to_soap.c341 if (!Q_Size(&el->children)) { in xml_element_to_SOAP_REQUEST_worker()
374 xml_element* iter = (xml_element*)Q_Head(&el->children); in xml_element_to_SOAP_REQUEST_worker()
406 iter = (xml_element*)Q_Next(&el->children); in xml_element_to_SOAP_REQUEST_worker()
487 Q_PushTail(&elem_val->children, next_el); in SOAP_to_xml_element_worker()
610 Q_PushTail(&body->children, el_serialized); in SOAP_REQUEST_to_xml_element()
643 xml_element* iter = (xml_element*)Q_Head(&el_serialized->children); in SOAP_REQUEST_to_xml_element()
645 Q_PushTail(&rpc->children, iter); in SOAP_REQUEST_to_xml_element()
646 iter = (xml_element*)Q_Next(&el_serialized->children); in SOAP_REQUEST_to_xml_element()
651 Q_PushTail(&rpc->children, el_serialized); in SOAP_REQUEST_to_xml_element()
655 Q_PushTail(&body->children, rpc); in SOAP_REQUEST_to_xml_element()
[all …]
H A Dxml_element.c207 Q_Destroy(&root->children); in xml_elem_free_non_recurse()
238 xml_element* kids = Q_Head(&root->children); in xml_elem_free()
241 kids = Q_Next(&root->children); in xml_elem_free()
268 Q_Init(&elem->children); in xml_elem_new()
439 if(!el->text.len && !Q_Size(&el->children)) { in xml_element_serialize()
474 xml_element *kids = Q_Head(&el->children); in xml_element_serialize()
483 kids = Q_Next(&el->children); in xml_element_serialize()
628 Q_PushTail(&mydata->current->parent->children, mydata->current); in _xmlrpc_endElement()
754 xReturn = (xml_element*)Q_Head(&mydata.root->children); in xml_elem_parse_buf()
H A Dxml_element.h155 queue children; /* child element list */ member
185 #define xml_elem_next_element(el) ((el) ? (xml_element *)Q_Next(&el->children) : NULL)
186 #define xml_elem_head_element(el) ((el) ? (xml_element *)Q_Head(&el->children) : NULL)
H A Dxml_to_xmlrpc.c165 iter = (xml_element*)Q_Head(&el->children); in xml_element_to_XMLRPC_REQUEST_worker()
318 Q_PushTail(&param->children, value); in XMLRPC_to_xml_element_worker()
322 Q_PushTail(&value->children, elem_val); in XMLRPC_to_xml_element_worker()
335 Q_PushTail(&member->children, name); in XMLRPC_to_xml_element_worker()
336 Q_PushTail(&member->children, value); in XMLRPC_to_xml_element_worker()
337 Q_PushTail(&value->children, elem_val); in XMLRPC_to_xml_element_worker()
346 Q_PushTail(&value->children, elem_val); in XMLRPC_to_xml_element_worker()
359 Q_PushTail(&value->children, elem_val); in XMLRPC_to_xml_element_worker()
398 Q_PushTail(&wrapper->children, method); in XMLRPC_REQUEST_to_xml_element()
402 Q_PushTail(&wrapper->children, in XMLRPC_REQUEST_to_xml_element()
[all …]
/PHP-5.5/ext/tidy/tests/
H A D012.phpt2 Accessing children nodes
/PHP-5.5/ext/tidy/
H A Dtidy.c851 zval *attribute, *children, *temp; in tidy_add_default_properties() local
903 MAKE_STD_ZVAL(children); in tidy_add_default_properties()
905 array_init(children); in tidy_add_default_properties()
916 add_next_index_zval(children, temp); in tidy_add_default_properties()
921 ZVAL_NULL(children); in tidy_add_default_properties()
924 …zend_hash_update(obj->std.properties, "child", sizeof("child"), (void *)&children, sizeof(zval *),… in tidy_add_default_properties()
/PHP-5.5/ext/standard/tests/array/
H A Dbug48854.phpt8 'children' => array(
15 'children' => array(
29 [%u|b%"children"]=>
38 [%u|b%"children"]=>
/PHP-5.5/ext/spl/tests/
H A Dbug68128.phpt21 // print all children
28 echo "No children ";
36 No children Array
/PHP-5.5/ext/spl/internal/
H A Dparentiterator.inc20 * children.
24 /** @return whetehr the current element has children
H A Drecursivecachingiterator.inc80 /** @return whether the current element has children
81 * @note The check whether the Iterator for the children can be created was
84 * not try to access those children.
91 /** @return An Iterator for the children
H A Drecursivefilteriterator.inc39 /** @return whether the current element has children
46 /** @return an iterator for the current elements children
H A Drecursiveiterator.inc20 /** @return whether the current element has children
H A Drecursiveiteratoriterator.inc26 /** Mode: Show parents prior to their children */
28 /** Mode: Show all children prior to their parent */
46 * - CHILD_FIRST show all children prior to their parent
182 /** @return whether current sub iterators current element has children
190 /** @return current sub iterators current children

Completed in 94 milliseconds

1234