Home
last modified time | relevance | path

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

1234

/PHP-5.5/ext/dom/tests/
H A DDOMDocumentFragment_appendXML_basic_001.phpt2 DOMDocumentFragment::appendXML() with children with properties.
H A DDOMNode_replaceChild_basic.phpt14 // Replaces the child node oldChild with newChild in the list of children, and
/PHP-5.5/Zend/tests/
H A Dbug34199.phpt9 $kids = $xml->children();
/PHP-5.5/ext/spl/internal/
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
/PHP-5.5/ext/dom/
H A Ddom_iterators.c73 ret->children = NULL; in create_notation()
222 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 Ddocumenttype.c202 …c != NULL && ((intsubset = xmlGetIntSubset(dtdptr->doc)) != NULL) && intsubset->children != NULL) { in dom_documenttype_internal_subset_read()
204 xmlNodePtr cur = intsubset->children; in dom_documenttype_internal_subset_read()
H A Delement.c349 value = xmlNodeListGetString(attr->doc, attr->children, 1); in PHP_FUNCTION()
407 node_list_unlink(attr->children TSRMLS_CC); in PHP_FUNCTION()
465 node_list_unlink(attrp->children TSRMLS_CC); in PHP_FUNCTION()
511 if (attrp->children) { in PHP_FUNCTION()
512 curns->prefix = xmlStrdup((xmlChar *) attrp->children); in PHP_FUNCTION()
514 if (attrp->children) { in PHP_FUNCTION()
515 attrp = xmlNewDocNode(nodep->doc, NULL, (xmlChar *) attrp->children, attrp->name); in PHP_FUNCTION()
777 node_list_unlink(nodep->children TSRMLS_CC); in PHP_FUNCTION()
845 node_list_unlink(attr->children TSRMLS_CC); in PHP_FUNCTION()
910 node_list_unlink(attrp->children TSRMLS_CC); in PHP_FUNCTION()
[all …]
H A Dattr.c182 if (attrp->children) { in dom_attr_value_write()
183 node_list_unlink(attrp->children TSRMLS_CC); in dom_attr_value_write()
H A Ddomimplementation.c213 docp->children = (xmlNodePtr) doctype; in PHP_METHOD()
224 docp->children = NULL; in PHP_METHOD()
/PHP-5.5/sapi/fpm/fpm/
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()
H A Dfpm_worker_pool.c43 fpm_children_free(wp->children); in fpm_worker_pool_cleanup()
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()
/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
/PHP-5.5/ext/simplexml/tests/
H A D026.phpt22 foreach($xml->children() as $node)
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 D027.phpt20 foreach($xml->children() as $node)
/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/ext/simplexml/
H A DREADME11 all nodes with that element name. Thus method children() must be
H A Dsxe.c146 node = node->children; in PHP_METHOD()
/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/soap/
H A Dsoap.c3436 if (func->children != NULL ||
3468 trav = request->children;
3507 trav = env->children;
3552 trav = body->children;
3612 trav = head->children;
3646 if (strcmp((char*)attr->children->content,"1") == 0 ||
3686 hdr_func = hdr_func->children;
3707 func = func->children;
3710 func = func->children;
4192 if (head->children == NULL) {
[all …]

Completed in 55 milliseconds

1234