Home
last modified time | relevance | path

Searched refs:child (Results 251 – 275 of 312) sorted by relevance

1...<<111213

/php-src/ext/opcache/tests/jit/
H A Dgh12380.phpt2 GH-12380: JIT+private array property access inside closure accesses private property in child class
/php-src/sapi/fpm/
H A Dconfig.m485 pid_t child;
88 if ( (child = fork()) ) { /* parent */
91 if (0 > ptrace(PTRACE_ATTACH, child, 0, 0)) {
95 waitpid(child, &status, 0);
105 if (0 > ptrace(PT_IO, child, (void *) &ptio, 0)) {
111 v2 = ptrace(PTRACE_PEEKDATA, child, (void *) &v1, 0);
117 ptrace(PTRACE_DETACH, child, (void *) 1, 0);
119 kill(child, SIGKILL);
123 else { /* child */
H A Dwww.conf.in20 ; Unix user/group of the child processes. This can be used only if the master
21 ; process running user is root. It is set after the child process is created.
90 ; Choose how the process manager will control the number of child processes.
92 ; static - a fixed number (pm.max_children) of child processes;
93 ; dynamic - the number of child processes are set dynamically based on the
107 ; pm.max_spawn_rate - the maximum number of rate to spawn child
129 ; The number of child processes created on startup.
144 ; The number of rate to spawn child processes at once.
155 ; The number of requests each child process should execute before respawning.
334 ; %p: PID of the child that serviced the request
[all …]
/php-src/ext/dom/
H A Dphp_dom.c1795 if (parent == NULL || child == NULL || child->doc != parent->doc) { in dom_hierarchy()
1806 if (nodep == child) { in dom_hierarchy()
1940 while(child != NULL) { in php_dom_normalize_legacy()
1941 switch (child->type) { in php_dom_normalize_legacy()
1946 xmlUnlinkNode(child); in php_dom_normalize_legacy()
1947 free_node(child); in php_dom_normalize_legacy()
1948 child = nextp; in php_dom_normalize_legacy()
1963 child = child->next; in php_dom_normalize_legacy()
2640 for (xmlNodePtr child = clone->children; child != NULL; child = child->next) { in dom_clone_node() local
2662 while (child != NULL) { in php_dom_has_child_of_type()
[all …]
H A Dxpath_callbacks.c347 zval child; in php_dom_xpath_callback_fetch_args() local
357 php_dom_create_fake_namespace_decl(nsparent, original, &child, parent_intern); in php_dom_xpath_callback_fetch_args()
359 proxy_factory(node, &child, intern, ctxt); in php_dom_xpath_callback_fetch_args()
361 zend_hash_next_index_insert_new(Z_ARRVAL_P(param), &child); in php_dom_xpath_callback_fetch_args()
/php-src/ext/reflection/tests/
H A DReflectionClass_isSubclassOf_basic.phpt18 foreach ($rcs as $childName => $child) {
22 var_dump($child->isSubclassOf($parent));
24 var_dump($child->isSubclassOf($parentName));
H A DReflectionClass_implementsInterface_001.phpt21 foreach ($rcs as $childName => $child) {
26 var_dump($child->implementsInterface($parent));
32 var_dump($child->implementsInterface($parentName));
/php-src/ext/standard/tests/array/
H A Darray_fill_object.phpt36 // child class which inherits parent class test1
64 // child class which inherits parent class test2
92 // child class which inherits parent class test3
121 // child class which inherits parent class test4
/php-src/tests/classes/
H A Diterators_008.phpt2 Ensure plain userspace superclass does not override special iterator behaviour on child class.
/php-src/Zend/tests/
H A Dbug42937.phpt2 Bug #42937 (__call() method not invoked when methods are called on parent from child class)
H A Dobjects_033.phpt6 // PHP4-5.3 object semantics had child properties added to an
H A Dbug79862.phpt2 Bug #79862: Public non-static property in child should take priority over private static
/php-src/ext/dom/tests/
H A DDOMNode_insertBefore_error4.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-src/sapi/fpm/tests/
H A Dsocket-invalid-allowed-clients.phpt31 // this is from child when starting
/php-src/ext/dom/tests/modern/spec/
H A DParentNode_append_exception_consistency.phpt20 Exception: Cannot have more than one element child in a document
/php-src/Zend/tests/anon/
H A D005.phpt14 /* create a child object implementing array access */
/php-src/Zend/
H A Dzend_generators.h49 } child; member
/php-src/ext/opcache/
H A Dzend_file_cache.c359 if (list->child[i] && !IS_SERIALIZED(list->child[i])) {
360 SERIALIZE_PTR(list->child[i]);
361 tmp = list->child[i];
369 if (ast->child[i] && !IS_SERIALIZED(ast->child[i])) {
370 SERIALIZE_PTR(ast->child[i]);
371 tmp = ast->child[i];
1236 if (list->child[i] && !IS_UNSERIALIZED(list->child[i])) {
1237 UNSERIALIZE_PTR(list->child[i]);
1244 if (ast->child[i] && !IS_UNSERIALIZED(ast->child[i])) {
1245 UNSERIALIZE_PTR(ast->child[i]);
[all …]
/php-src/ext/opcache/jit/ir/
H A Dir_dump.c241 int child = bb->dom_child; in ir_dump_cfg_block() local
242 fprintf(f, "\tdom_children [BB%d", child); in ir_dump_cfg_block()
243 child = ctx->cfg_blocks[child].dom_next_child; in ir_dump_cfg_block()
244 while (child > 0) { in ir_dump_cfg_block()
245 fprintf(f, ", BB%d", child); in ir_dump_cfg_block()
246 child = ctx->cfg_blocks[child].dom_next_child; in ir_dump_cfg_block()
/php-src/ext/dom/tests/compareDocumentPosition/
H A Dattribute_child_order.phpt2 compareDocumentPosition: attribute vs child order
/php-src/Zend/tests/constexpr/
H A Dnew_not_allowed_property.phpt12 // constructor which is not explicitly declared, which may also require a child class to
/php-src/sapi/phpdbg/
H A Dphpdbg_watch.h93 struct _phpdbg_watch_element *child; /* always set for implicit watches */ member
/php-src/sapi/litespeed/
H A DREADME.md149 This controls how many requests each child process will handle before it exits
155 In Self Managed Mode, LSAPI_MAX_IDLE controls how long a idle child process
171 time allowed when processing a request. If a child process can not finish
173 parent process. This option can help getting rid of dead or runaway child
179 process will wait before exiting when there is no child process. This option

Completed in 72 milliseconds

1...<<111213