Home
last modified time | relevance | path

Searched refs:child (Results 101 – 125 of 160) sorted by relevance

1234567

/PHP-7.4/ext/simplexml/tests/
H A Dbug40451.phpt2 Bug #40451 (addAttribute() may crash when used with non-existent child node)
/PHP-7.4/Zend/tests/
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)
H A Dbug62441.phpt2 Bug #62441: Incorrect strong typing in namespaced child classes
H A Dbug42937.phpt2 Bug #42937 (__call() method not invoked when methods are called on parent from child class)
/PHP-7.4/ext/intl/resourcebundle/
H A Dresourcebundle_class.h31 UResourceBundle *child; member
/PHP-7.4/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));
H A DReflectionClass_isSubclassOf_basic.phpt18 foreach ($rcs as $childName => $child) {
22 var_dump($child->isSubclassOf($parent));
24 var_dump($child->isSubclassOf($parentName));
/PHP-7.4/tests/classes/
H A Dctor_name_clash.phpt2 ZE2 The child class can re-use the parent class name for a function member
H A Diterators_008.phpt2 Ensure plain userspace superclass does not override special iterator behaviour on child class.
/PHP-7.4/ext/standard/
H A Dproc_open.c205 wait_pid = waitpid(proc->child, &wstatus, waitpid_options); in proc_open_rsrc_dtor()
260 if (kill(proc->child, sig_no) == 0) { in PHP_FUNCTION()
317 add_assoc_long(return_value, "pid", (zend_long) proc->child); in PHP_FUNCTION()
329 wait_pid = waitpid(proc->child, &wstatus, WNOHANG|WUNTRACED); in PHP_FUNCTION()
331 if (wait_pid == proc->child) { in PHP_FUNCTION()
511 php_process_id_t child; in PHP_FUNCTION() local
1003 child = pi.dwProcessId; in PHP_FUNCTION()
1007 child = fork(); in PHP_FUNCTION()
1009 if (child == 0) { in PHP_FUNCTION()
1068 } else if (child < 0) { in PHP_FUNCTION()
[all …]
/PHP-7.4/ext/dom/tests/
H A Dbug41374.phpt9 <root>foo<child />baz</root>
H A Dbug54382.phpt11 <ns2:child />
H A DDOMNode_insertBefore_error6.phpt5 DOM_NOT_FOUND is raised if refnode is not a child
H A DDOMNode_insertBefore_error2.phpt5 DOM_NOT_FOUND is raised if refnode is not a child
H A DDOMNode_insertBefore_error3.phpt5 DOM_NOT_FOUND is raised if refnode is not a child
/PHP-7.4/ext/dom/
H A Dxpath.c139 zval child; in dom_xpath_ext_function_php() local
159 php_dom_create_object(node, &child, &intern->dom); in dom_xpath_ext_function_php()
160 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()
/PHP-7.4/ext/pdo_pgsql/tests/
H A Dbug36727.phpt16 $stmt = $db->prepare('SELECT * FROM child');
/PHP-7.4/ext/standard/tests/array/
H A Darray_map_object1.phpt15 * 4) abstract and child class
73 echo "defined in child\n";
160 defined in child
161 defined in child
H A Darray_filter_object.phpt14 * object of child class extending abstract class
46 echo "defined in child";
/PHP-7.4/ext/filter/tests/
H A D058.phpt17 'tést.child@example.com',
45 string(23) "tést.child@example.com"
/PHP-7.4/ext/standard/tests/dir/
H A Ddir_variation7.phpt19 * remove the execute permission from the parent dir and test dir() on child dir
29 |-> child_dir ( child dir)
H A Dopendir_variation5.phpt18 * remove the execute permission from the parent dir and test opendir() on child dir
28 * |-> child_dir ( child dir)
H A Dscandir_variation5.phpt18 * remove the execute permission from the parent dir and test scandir() on child dir
29 * |-> child_dir ( child dir)
/PHP-7.4/sapi/fpm/
H A Dconfig.m4141 pid_t child;
144 if ( (child = fork()) ) { /* parent */
147 if (0 > ptrace(PTRACE_ATTACH, child, 0, 0)) {
151 waitpid(child, &status, 0);
161 if (0 > ptrace(PT_IO, child, (void *) &ptio, 0)) {
167 v2 = ptrace(PTRACE_PEEKDATA, child, (void *) &v1, 0);
173 ptrace(PTRACE_DETACH, child, (void *) 1, 0);
175 kill(child, SIGKILL);
179 else { /* child */

Completed in 36 milliseconds

1234567