Home
last modified time | relevance | path

Searched refs:child (Results 51 – 75 of 160) sorted by relevance

1234567

/PHP-7.4/Zend/tests/
H A Dbug68215.phpt25 function test(&$child, $entry)
29 foreach ($child AS $key => $fruit)
33 $child[$i] = $fruit;
34 unset($child[$key]);
H A Dbug39297.phpt37 $child = new MyTree();
38 $root[$id] = $child;
40 var_dump(compareByRef($root[$id], $child));
H A Dbug29210.phpt47 echo "test_func1 isn't callable from child\n";
52 echo "test_func2 isn't callable from child\n";
57 echo "test_func3 isn't callable from child\n";
62 echo "test_func4 isn't callable from child\n";
101 test_func1 isn't callable from child
103 test_func3 isn't callable from child
H A Dbug39721.phpt23 $child = new test2_child();
26 echo $child->instance . "\n";
H A Dbug21888.phpt14 class child extends mom {
26 $c = new child();
/PHP-7.4/sapi/fpm/fpm/
H A Dfpm_scoreboard.h75 struct fpm_scoreboard_proc_s *fpm_scoreboard_proc_get_from_child(struct fpm_child_s *child);
84 void fpm_scoreboard_child_use(struct fpm_child_s *child, pid_t pid);
86 void fpm_scoreboard_proc_free(struct fpm_child_s *child);
87 int fpm_scoreboard_proc_alloc(struct fpm_child_s *child);
/PHP-7.4/ext/simplexml/tests/
H A Dprofile10.phpt10 <child reserved:attribute="Sample" special:attribute="Test" />
14 $rsattr = $root->child->attributes('reserved-ns');
15 $spattr = $root->child->attributes('special-ns');
H A Dprofile03.phpt9 <child attribute="Sample" />
13 echo $root->child['attribute'];
H A Dprofile08.phpt10 <child reserved:attribute="Sample" />
14 echo $root->child['attribute'];
H A Dprofile06.phpt10 <child reserved:attribute="Sample" />
14 $attr = $root->child->attributes('reserved-ns');
H A Dbug41861.phpt24 foreach ($xml->children($ns) as $child)
26 $name = $child->getName();
27 $namespaces = $child->getNamespaces(false);
/PHP-7.4/ext/mysqli/tests/
H A Dmysqli_fork.phpt2 Forking a child and using the same connection.
30 printf("[001] Cannot fork child");
34 /* child */
71 sender ENUM('child', 'parent') NOT NULL,
83 printf("[009] Cannot fork child");
87 /* child */
244 child start
245 child array
247 child array
249 child array
[all …]
/PHP-7.4/ext/sysvsem/tests/
H A Dnowait.phpt27 // Get semaphore for child
30 echo "P: failed to child get semaphore\n";
43 // Acquire semaphore for child
63 /* Wait for the child semaphore to be released to
70 /* Release the child semahpore before releasing
72 the child continue execution */
90 echo "C: child process running.\n";
101 // The child process did not wait to acquire the semaphore
126 C: child process running.
/PHP-7.4/ext/libxml/tests/
H A Dbug42112.phpt8 <root><child xml:id="id1">baz</child></root>
30 Deleting Node: child
/PHP-7.4/ext/dom/tests/
H A Ddomxpath.phpt24 $dom->loadXML('<root xmlns="urn::default"><child>myval</child></root>');
32 $nodelist = $xpath->query("//def:child");
37 $count = $xpath->evaluate("count(//def:child)");
H A Dbug69373.phpt9 $doc->loadXML("<parent><child /><child /></parent>");
H A Ddom_comment_variation.phpt21 echo "--- child $index ---\n";
28 --- child 0 ---
/PHP-7.4/Zend/
H A Dzend_generators.c270 efree(generator->node.child.ht); in zend_generator_free_storage()
505 return node->child.single.child; in zend_generator_get_child()
514 node = &node->child.single.child->node; in zend_generator_search_multi_children_node()
522 node->child.single.leaf = leaf; in zend_generator_add_single_child()
523 node->child.single.child = child; in zend_generator_add_single_child()
529 (zend_ulong) node->child.single.leaf, node->child.single.child); in zend_generator_add_single_child()
530 node->child.ht = ht; in zend_generator_add_single_child()
533 zend_hash_index_add_ptr(node->child.ht, (zend_ulong) leaf, child); in zend_generator_add_single_child()
552 zend_generator *leaf = child->node.children ? child->node.ptr.leaf : child; in zend_generator_add_child()
564 zend_generator *child = zend_hash_index_find_ptr(next->node.child.ht, (zend_ulong) generator); in zend_generator_add_child() local
[all …]
/PHP-7.4/ext/tidy/tests/
H A D028.phpt8 var_dump($x->body()->child[0]->name);
9 var_dump($x->body()->child[0]->getParent()->name);
/PHP-7.4/ext/standard/tests/serialize/
H A Dbug35895.phpt13 private $child;
15 return array_merge(array("child"), parent::__sleep());
/PHP-7.4/ext/standard/tests/class_object/
H A Dget_class_vars_variation2.phpt70 echo "\n-- From inside a child object instance --\n";
71 $child = new Child();
72 $child->test();
74 echo "\n-- From a child's static context --\n";
145 -- From inside a child object instance --
157 -- From a child's static context --
/PHP-7.4/ext/standard/tests/streams/
H A Dbug61019.phpt9 0 => array("pipe", "r"), // stdin is a pipe that the child will read from
10 1 => array("pipe", "w"), // stdout is a pipe that the child will write to
11 2 => array("pipe", "w") // stderr is a pipe that the child will write to
/PHP-7.4/ext/soap/tests/interop/Round3/GroupE/
H A Dr3_groupE_list_001w.phpt13 $this->child = $c;
26 …ype="xsd:int">1</varInt><varString xsi:type="xsd:string">arg1</varString><child xsi:nil="true" xsi…
28 …ype="xsd:int">1</varInt><varString xsi:type="xsd:string">arg1</varString><child xsi:nil="true" xsi…
34 ["child"]=>
/PHP-7.4/ext/pcntl/tests/
H A Dpcntl_fork_basic.phpt14 echo "*** Test by calling method or function with its expected arguments, first print the child PID…
25 *** Test by calling method or function with its expected arguments, first print the child PID and t…
/PHP-7.4/sapi/fpm/tests/
H A Dbug76601-reload-child-signals.phpt32 * If a child miss SIGQUIT then reload process should stuck
39 …pid 21315, fpm_pctl_kill_all(), line 161: [pool unconfined] sending signal 9 SIGKILL to child 21337
40 …33471] DEBUG: pid 21315, fpm_children_bury(), line 259: [pool unconfined] child 21337 exited on si…
70 /* When a child ignores SIGQUIT, the following expectation fails due to timeout. */

Completed in 33 milliseconds

1234567