Home
last modified time | relevance | path

Searched refs:children (Results 1 – 25 of 85) sorted by path

1234

/PHP-5.5/
H A DINSTALL557 dynamically. PHP will spawn children according to the PHP_FCGI_CHILDREN
562 avoided with PHP. PHP manages its own children and opcode caches like
563 APC will only share among children managed by PHP. If "min-procs" is
565 will be multiplied PHP_FCGI_CHILDREN (2 min-procs * 16 children gives
577 var controls how many children PHP will spawn to handle incoming
H A DNEWS3979 to allow zero children). (fat)
4269 . Removed timestamp in logs written by children processes. (fat)
7701 - Fixed bug #40286 (PHP fastcgi with PHP_FCGI_CHILDREN don't kill children when
8229 . Allowed PHP_FCGI_CHILDREN=0 that assumes no worker children. (FastCGI
9591 children). (Rob)
/PHP-5.5/Zend/tests/
H A Dbug34199.phpt9 $kids = $xml->children();
H A Dbug39297.phpt11 public $children = array();
22 $this->children[$cannonicalName] = $value;
29 return $this->children[$cannonicalName];
H A Dgc_017.phpt9 public $children;
13 $this->children = array();
18 $this->children[] = $node;
23 unset($this->children);
/PHP-5.5/ext/dom/
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 Ddocument.c1888 php_dom_remove_xinclude_nodes(cur->children TSRMLS_CC); in php_dom_remove_xinclude_nodes()
1898 php_dom_remove_xinclude_nodes(cur->children TSRMLS_CC); in php_dom_remove_xinclude_nodes()
1929 root = (xmlNodePtr) docp->children; in PHP_FUNCTION()
2360 for (node = node->children; node; node = node->next) { in PHP_FUNCTION()
H A Ddocumentfragment.c99 if (prop->children) { in php_dom_xmlSetTreeDoc()
100 cur = prop->children; in php_dom_xmlSetTreeDoc()
109 if (tree->children != NULL) { in php_dom_xmlSetTreeDoc()
110 cur = tree->children; in php_dom_xmlSetTreeDoc()
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 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 Ddomimplementation.c213 docp->children = (xmlNodePtr) doctype; in PHP_METHOD()
224 docp->children = NULL; in PHP_METHOD()
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 Dnode.c348 if (nodep->children) { in dom_node_node_value_write()
491 first = nodep->children; in dom_node_first_child_read()
1182 children = nodep->children; in PHP_FUNCTION()
1183 if (!children) { in PHP_FUNCTION()
1206 while (children) { in PHP_FUNCTION()
1211 children = children->next; in PHP_FUNCTION()
1275 children = nodep->children; in PHP_FUNCTION()
1276 if (!children) { in PHP_FUNCTION()
1281 while (children) { in PHP_FUNCTION()
1287 children = children->next; in PHP_FUNCTION()
[all …]
H A Dnodelist.c73 curnode = nodep->children; in dom_nodelist_length_read()
85 nodep = nodep->children; in dom_nodelist_length_read()
146 curnode = nodep->children; in PHP_FUNCTION()
156 nodep = nodep->children; in PHP_FUNCTION()
H A Dphp_dom.c1038 node_list_unlink(node->children TSRMLS_CC); in node_list_unlink()
1495 ret = dom_get_elements_by_tag_name_ns_raw(nodep->children, ns, local, cur, index); in dom_get_elements_by_tag_name_ns_raw()
1514 child = nodep->children; in dom_normalize()
H A Dxpath.c155 if (node->children) { in dom_xpath_ext_function_php()
156 curns->prefix = xmlStrdup((xmlChar *) node->children); in dom_xpath_ext_function_php()
158 if (node->children) { in dom_xpath_ext_function_php()
159 node = xmlNewDocNode(node->doc, NULL, (xmlChar *) node->children, node->name); in dom_xpath_ext_function_php()
490 if (node->children) { in php_xpath_eval()
491 curns->prefix = xmlStrdup((char *) node->children); in php_xpath_eval()
493 if (node->children) { in php_xpath_eval()
494 node = xmlNewDocNode(docp, NULL, (char *) node->children, node->name); in php_xpath_eval()
/PHP-5.5/ext/dom/examples/
H A Ddom1.php21 $children = $rootnode->childNodes; variable
22 print_node_list($children);
36 $children = $parent->childNodes; variable
37 print_node_list($children);
63 $children = $attrs->item(0)->childNodes; variable
64 print_node_list($children);
75 $children = $dom->getElementsByTagname("Silly"); variable
76 print_node_list($children);
80 print_node_list($children);
83 print_node($children->item(0));
[all …]
/PHP-5.5/ext/dom/tests/
H A DDOMDocumentFragment_appendXML_basic_001.phpt2 DOMDocumentFragment::appendXML() with children with properties.
H A DDOMNode_cloneNode_basic.phpt41 $children = $root->childNodes;
42 $len = $children->length;
43 for ($index = $children->length - 1; $index >=0; $index--) {
44 $current = $children->item($index);
51 $first_course = $children->item(0);
69 $children = $root->childNodes;
70 for ($index = 0; $index < $children->length; $index++) {
72 dumpcourse($children->item($index));
H A DDOMNode_removeChild_basic.phpt40 $children = $root->childNodes;
41 $len = $children->length;
43 for ($index = $children->length - 1; $index >=0; $index--) {
45 $current = $children->item($index);
51 $children = $root->childNodes;
52 $len = $children->length;
54 for ($index = 0; $index < $children->length; $index++) {
56 $current = $children->item($index);
H A DDOMNode_replaceChild_basic.phpt14 // Replaces the child node oldChild with newChild in the list of children, and
H A Ddom001.phpt18 //$children = $dom->children();
19 //print_node_list($children);
27 print_node_list($children);
39 // The children of this parent are the same children as one above
41 $children = $parent->childNodes;
42 print_node_list($children);
69 print_node_list($children);
81 print_node_list($children);
85 print_node_list($children);
107 --------- children of root
[all …]
H A Ddom_comment_basic.phpt21 $children = $root->childNodes;
23 for ($index = 0; $index < $children->length; $index++) {
25 $current = $children->item($index);
H A Ddom_comment_variation.phpt18 $children = $root->childNodes;
20 for ($index = 0; $index < $children->length; $index++) {
22 $current = $children->item($index);
/PHP-5.5/ext/libxml/
H A Dlibxml.c248 php_libxml_node_free_list(node->children TSRMLS_CC); in php_libxml_node_free_list()
251 php_libxml_node_free_list(node->children TSRMLS_CC); in php_libxml_node_free_list()
1293 php_libxml_node_free_list((xmlNodePtr) node->children TSRMLS_CC); in php_libxml_node_free_resource()

Completed in 104 milliseconds

1234