Home
last modified time | relevance | path

Searched refs:child (Results 76 – 100 of 159) sorted by relevance

1234567

/PHP-7.2/Zend/
H A Dzend_generators.h48 zend_generator *child; member
50 } child; member
H A Dzend_ast.h157 zend_ast *child[1]; /* Array of children (using struct hack) */ member
166 zend_ast *child[1]; member
186 zend_ast *child[4]; member
272 if (list->children && list->child[list->children - 1] == NULL) { in zend_ast_list_rtrim()
/PHP-7.2/ext/standard/
H A Dproc_open.h40 php_process_id_t child; member
H A Dproc_open.c212 wait_pid = waitpid(proc->child, &wstatus, waitpid_options); in proc_open_rsrc_dtor()
267 if (kill(proc->child, sig_no) == 0) { in PHP_FUNCTION()
324 add_assoc_long(return_value, "pid", (zend_long) proc->child); in PHP_FUNCTION()
336 wait_pid = waitpid(proc->child, &wstatus, WNOHANG|WUNTRACED); in PHP_FUNCTION()
338 if (wait_pid == proc->child) { in PHP_FUNCTION()
435 php_process_id_t child; in PHP_FUNCTION() local
789 child = pi.dwProcessId; in PHP_FUNCTION()
793 child = fork(); in PHP_FUNCTION()
795 if (child == 0) { in PHP_FUNCTION()
846 } else if (child < 0) { in PHP_FUNCTION()
[all …]
/PHP-7.2/ext/tidy/examples/
H A Durlgrab5.php27 foreach($node->child as $c) {
/PHP-7.2/ext/spl/tests/
H A DSplFileInfo_setFileClass_basic.phpt2 SplFileInfo::setFileClass() expects SplFileObject or child class
H A Dbug65328.phpt146 * @param Node $child
148 public function addChild(Node $child)
150 $child->setParent($this);
151 $this->children[] = $child;
H A DSplFileInfo_setInfoClass_basic.phpt2 SplFileInfo::setInfoClass() expects SplFileInfo or child class
/PHP-7.2/sapi/fpm/fpm/
H A Dfpm_children.h14 int fpm_children_free(struct fpm_child_s *child);
/PHP-7.2/Zend/tests/
H A Dbug63976.phpt2 Bug #63976 (Parent class incorrectly using child constant in class property)
H A Dbug33277.phpt2 Bug #33277 (private method accessed by child class)
H A Dbug62814.phpt2 Bug #62814: It is possible to stiffen child class members visibility
H A Dbug62441.phpt2 Bug #62441: Incorrect strong typing in namespaced child classes
H A Dbug40770.phpt2 Bug #40770 (Apache child exits when PHP memory limit reached)
H A Dbug74862_2.phpt2 Bug #74862 (Unable to clone instance when private __clone defined in a child class)
/PHP-7.2/tests/classes/
H A D__call_006.phpt38 echo "\n\n---> Invoke __call via scope resolution operator within child instance.\n";
67 ---> Invoke __call via scope resolution operator within child instance.
H A D__call_007.phpt38 echo "\n\n---> Invoke __call via scope resolution operator within child instance.\n";
68 ---> Invoke __call via scope resolution operator within child instance.
/PHP-7.2/Zend/tests/return_types/
H A D006.phpt2 Return type allowed in child when parent does not have return type
/PHP-7.2/sapi/fpm/tests/
H A Dlogtool.inc8 const P_PREFIX = '\[pool unconfined\] child \d+ said into stderr: ';
421 … '[08-Oct-2017 19:53:50] WARNING: [pool unconfined] child 23183 said into stderr: "' .
423 … '[08-Oct-2017 19:53:50] WARNING: [pool unconfined] child 23183 said into stderr: "' .
425 … '[08-Oct-2017 19:53:50] WARNING: [pool unconfined] child 23183 said into stderr: "' .
436 … '[08-Oct-2017 19:53:50] WARNING: [pool unconfined] child 23183 said into stderr: "' .
438 … '[08-Oct-2017 19:53:50] WARNING: [pool unconfined] child 23183 said into stderr: "' .
440 … '[08-Oct-2017 19:53:50] WARNING: [pool unconfined] child 23183 said into stderr: "' .
442 … '[08-Oct-2017 19:53:50] WARNING: [pool unconfined] child 23183 said into stderr: pe is closed',
/PHP-7.2/ext/simplexml/tests/
H A Dbug41947.phpt8 $grandchild = $xml->addChild('child', null, 'http://myns')->addChild('grandchild', 'hello', '');
H A Dbug40451.phpt2 Bug #40451 (addAttribute() may crash when used with non-existent child node)
/PHP-7.2/ext/spl/internal/
H A Drecursivecachingiterator.inc55 $child = $this->it->getChildren();
60 $this->getChildren = $ref->newInstance($child, $this->flags);
/PHP-7.2/ext/reflection/tests/
H A DReflectionObject_isSubclassOf_basic.phpt26 foreach ($ros as $childName => $child) {
30 var_dump($child->isSubclassOf($parent));
33 var_dump($child->isSubclassOf($ros[$parentName]));
36 var_dump($child->isSubclassOf($parentName));
/PHP-7.2/ext/intl/resourcebundle/
H A Dresourcebundle_class.h31 UResourceBundle *child; member
/PHP-7.2/ext/dom/
H A Dxpath.c141 zval child; in dom_xpath_ext_function_php() local
161 php_dom_create_object(node, &child, &intern->dom); in dom_xpath_ext_function_php()
162 add_next_index_zval(&fci.params[i], &child); in dom_xpath_ext_function_php()
440 zval child; in php_xpath_eval() local
460 php_dom_create_object(node, &child, &intern->dom); in php_xpath_eval()
461 add_next_index_zval(&retval, &child); in php_xpath_eval()

Completed in 37 milliseconds

1234567