Searched defs:child (Results 1 - 7 of 7) sorted by relevance

/ndk/sources/host-tools/make-3.81/
H A Djob.h38 /* Structure describing a running or dead child process. */
40 struct child struct
42 struct child *next; /* Link in the chain. */
62 unsigned int good_stdin:1; /* Nonzero if this child has a good stdin. */
67 extern struct child *children;
75 extern int child_execute_job PARAMS ((char *argv, struct child *child));
H A Dcommands.c368 fork off a child process to run the first command line in the sequence. */
416 /* That was the child who got the signal, not us. */
462 register struct child *c;
480 register struct child *c;
580 delete_child_targets (struct child *child)
584 if (child->deleted)
588 delete_target (child->file, (char *) 0);
591 for (d = child->file->also_make; d != 0; d = d->next)
592 delete_target (d->file, child
575 delete_child_targets(struct child *child) argument
[all...]
H A Dvmsjobs.c113 /* This is called as an AST when a child process dies (it won't get
117 vmsHandleChildTerm(struct child *child) argument
120 register struct child *lastc, *c;
123 vms_jobsefnmask &= ~(1 << (child->efn - 32));
125 lib$free_ef(&child->efn);
129 child_failed = !(child->cstatus & 1 || ((child->cstatus & 7) == 0));
131 /* Search for a child matching the deceased one. */
134 for (c = children; c != 0 && c != child; last
293 child_execute_job(char *argv, struct child *child) argument
[all...]
H A Djob.c199 static void free_child PARAMS ((struct child *));
200 static void start_job_command PARAMS ((struct child *child));
202 static int job_next_command PARAMS ((struct child *));
203 static int start_waiting_job PARAMS ((struct child *));
208 struct child *children = 0;
220 static struct child *waiting_jobs = 0;
408 /* Handle a dead child. This handler may or may not ever be installed.
444 state (`cs_finished') in the `file' member of the `struct child' for the
445 dead child, an
844 free_child(struct child *child) argument
967 start_job_command(struct child *child) argument
1743 job_next_command(struct child *child) argument
[all...]
/ndk/sources/host-tools/ndk-stack/elff/
H A Ddwarf_die.h139 /* Gets last child object in the list of this DIE's childs. NOTE: for better
147 /* Links next child to the list of this DIE childs. */
148 void link_child(DIEObject* child) { argument
149 last_child_ = child;
192 /* Last child object in the list of this DIE's childs. NOTE: for better
H A Ddwarf_die.cc106 /* For CU DIEs address range may be zero size, even though its child DIEs
115 * Lets iterate through child DIEs to find the leaf (last DIE) that contains
117 DIEObject* child = last_child(); local
118 while (child != NULL) {
119 DIEObject* leaf = child->get_leaf_for_address(address);
123 child = child->prev_sibling();
125 /* No child DIE contains this address. This DIE is the leaf. */
/ndk/sources/third_party/googletest/googletest/test/
H A Dgtest_filter_unittest.py54 # Checks if this platform can pass empty environment variables to child
57 # os.environ. We then use 'eval' to parse the child's output so that an
60 child = gtest_test_utils.Subprocess( variable
62 CAN_PASS_EMPTY_ENV = eval(child.output)
65 # Check if this platform can unset environment variables in child processes.
69 # We use 'eval' to parse the child's output so that an exception
73 child = gtest_test_utils.Subprocess( variable
75 CAN_UNSET_ENV = eval(child.output)

Completed in 147 milliseconds