/external/ltp/testcases/kernel/syscalls/ipc/msgrcv/ |
msgrcv07.c | 34 static void wait4child(pid_t child, char *tst_flag); 149 static void wait4child(pid_t child, char *tst_flag) 154 if (waitpid(child, &status, 0) == -1) 165 tst_brkm(TBROK, cleanup, "child process terminated "
|
/external/ltp/testcases/kernel/syscalls/mmap/ |
mmap16.c | 68 * If child process was killed by SIGBUS, indeed that can not guarantee 72 * still will be called, child process will be killed by SIGBUS, but 74 * 10 times, if once, child process exits normally, we can sure that 96 pid_t child; local 102 child = tst_fork(); 103 switch (child) { 133 * If child process was killed by SIGBUS, bug is not reproduced. 137 "child process terminate unexpectedly"); 219 * has been fixed, usually child process will killed by SIGBUS signal,
|
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_exit/ |
6-1.c | 27 * -> main process joins the child process and checks the behavior 151 output("Child process killed with signal %d\n", 153 UNRESOLVED(-1, "Child process was killed"); 159 UNRESOLVED(-1, "Child process was neither killed nor exited"); 164 FAILED("The child process did not exit with 0 status."); 188 pthread_t child; local 196 /* We want to share some memory with the child process */ 255 ret = pthread_create(&child, &scenarii[sc].ta, threaded, &ctl); 285 ret = pthread_join(child, NULL);
|
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_join/ |
6-3.c | 125 pthread_t child; local 137 ret = pthread_create(&child, &scenarii[sc].ta, 151 ret = pthread_join(child, NULL);
|
/external/mesa3d/src/compiler/nir/ |
nir_lower_to_source_mods.c | 145 nir_instr *child = child_src->parent_instr; local 146 if (child->type != nir_instr_type_alu) { 151 nir_alu_instr *child_alu = nir_instr_as_alu(child);
|
/external/owasp/sanitizer/tools/ |
update_tree_in_svn.py | 71 for child in children: 72 handle(os.path.join(src, child), os.path.join(dst, child))
|
/external/pdfium/fpdfsdk/pwl/ |
cpwl_scroll_bar.h | 134 void NotifyLButtonDown(CPWL_Wnd* child, const CFX_PointF& pos) override; 135 void NotifyLButtonUp(CPWL_Wnd* child, const CFX_PointF& pos) override; 136 void NotifyMouseMove(CPWL_Wnd* child, const CFX_PointF& pos) override;
|
/external/pdfium/xfa/fwl/ |
cfwl_widget.cpp | 124 CFWL_Widget* child = widgetMgr->GetFirstChildWidget(widget); local 125 while (child) { 126 noteDriver->NotifyTargetHide(child); 127 NotifyHideChildWidget(widgetMgr, child, noteDriver); 128 child = widgetMgr->GetNextSiblingWidget(child); 141 CFWL_Widget* child = widgetMgr->GetFirstChildWidget(this); local 142 while (child) { 143 noteDriver->NotifyTargetHide(child); 144 NotifyHideChildWidget(widgetMgr, child, noteDriver) [all...] |
/external/python/cpython2/Lib/lib2to3/ |
btm_matcher.py | 105 for child in current_ast_node.children: 107 if isinstance(child, pytree.Leaf) and child.value == u";":
|
/external/python/cpython3/Lib/lib2to3/ |
btm_matcher.py | 105 for child in current_ast_node.children: 107 if isinstance(child, pytree.Leaf) and child.value == ";":
|
/external/selinux/python/sepolgen/src/sepolgen/ |
output.py | 168 for child in node.children: 169 if child not in c: 170 c.append(child)
|
/external/u-boot/drivers/core/ |
of_access.c | 149 } else if (prev->child) { 150 np = prev->child; 269 next = prev ? prev->sibling : node->child; 283 #define __for_each_child_of_node(parent, child) \ 284 for (child = __of_get_next_child(parent, NULL); child != NULL; \ 285 child = __of_get_next_child(parent, child)) 290 struct device_node *child; local 297 __for_each_child_of_node(parent, child) { [all...] |
/cts/tests/tests/os/src/android/os/health/cts/ |
HealthStatsTest.java | 112 final HealthStats child = stats.get("a"); local 113 Assert.assertEquals(0, child.getTimerKeyCount()); 114 Assert.assertEquals(1, child.getMeasurementKeyCount()); 115 Assert.assertEquals(Long.MIN_VALUE, child.getMeasurement(MEASUREMENT_2)); 116 Assert.assertEquals(0, child.getStatsKeyCount()); 117 Assert.assertEquals(0, child.getTimersKeyCount());
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/ |
ast.py | 144 for child in iter_child_nodes(node):
145 _fix(child, lineno, col_offset)
155 for child in walk(node):
156 if 'lineno' in child._attributes:
157 child.lineno = getattr(child, 'lineno', 0) + n
175 Yield all direct child nodes of *node*, that is, all fields that are nodes
277 Keep in mind that if the node you're operating on has child nodes you must
278 either transform the child nodes yourself or call the :meth:`generic_visit`
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
ast.py | 144 for child in iter_child_nodes(node):
145 _fix(child, lineno, col_offset)
155 for child in walk(node):
156 if 'lineno' in child._attributes:
157 child.lineno = getattr(child, 'lineno', 0) + n
175 Yield all direct child nodes of *node*, that is, all fields that are nodes
277 Keep in mind that if the node you're operating on has child nodes you must
278 either transform the child nodes yourself or call the :meth:`generic_visit`
|
/external/guice/lib/build/ |
safesax.jar | |
/external/ltp/testcases/kernel/fs/ftest/ |
ftest01.c | 88 static int fd; /* file descriptor used by child */ 154 int i, child, count, nwait, status; local 165 if ((child = fork()) == 0) { 172 if (child < 0) { 175 pidlist[i] = child; 185 if ((child = wait(&status)) >= 0) { 189 child); 540 * the child processes.
|
ftest02.c | 35 * This forks some child processes, they do some random operations 98 int k, j, pid, child, status, count; local 148 if ((child = fork()) == 0) { 152 if (child < 0) { 155 pidlist[k] = child; 162 while ((child = wait(&status)) > 0) { 163 //tst_resm(TINFO,"Test{%d} exited status = 0x%x", child, status); 167 child); 431 tst_brkm(TBROK, NULL, "Child process exiting.");
|
ftest04.c | 30 * Several child processes doing random seeks, read/write 76 static int nchild; /* number of child processes */ 145 int count, child, fd, i, nwait, status; local 150 if ((child = fork()) == 0) { 156 if (child < 0) { 159 pidlist[i] = child; 168 while ((child = wait(&status)) != -1 || errno == EINTR) { 169 if (child > 0) { 170 //tst_resm(TINFO, "\tTest{%d} exited status = 0x%x", child, status);
|
ftest05.c | 92 static int fd; /* file descriptor used by child */ 162 int child, count, i, nwait, pid, status; local 172 if ((child = fork()) == 0) { 179 if (child < 0) { 182 pidlist[i] = child; 192 if ((child = wait(&status)) >= 0) { 196 child); 533 * the child processes. This makes life easy.
|
ftest06.c | 38 * This forks some child processes, they do some random operations 102 int pid, child, status, count, k, j; local 160 if ((child = fork()) == 0) { 164 if (child < 0) { 168 pidlist[k] = child; 175 while ((child = wait(&status)) > 0) { 176 //tst_resm(TINFO,"Test{%d} exited status = 0x%x", child, status); 181 child); 448 tst_brkm(TBROK, NULL, "Term: Child process exiting.");
|
ftest08.c | 33 * Several child processes doing random seeks, read/write 84 static int nchild; /* number of child processes */ 149 int child, count, fd, i, nwait, status; local 155 if ((child = fork()) == 0) { 169 if (child < 0) { 172 pidlist[i] = child; 181 while ((child = wait(&status)) != -1 || errno == EINTR) { 182 if (child > 0) { 183 //tst_resm(TINFO, "\tTest{%d} exited status = 0x%x", child, status);
|
/external/python/cpython2/Lib/ |
ast.py | 144 for child in iter_child_nodes(node): 145 _fix(child, lineno, col_offset) 155 for child in walk(node): 156 if 'lineno' in child._attributes: 157 child.lineno = getattr(child, 'lineno', 0) + n 175 Yield all direct child nodes of *node*, that is, all fields that are nodes 277 Keep in mind that if the node you're operating on has child nodes you must 278 either transform the child nodes yourself or call the :meth:`generic_visit`
|
/external/python/cpython3/Lib/ |
ast.py | 155 for child in iter_child_nodes(node): 156 _fix(child, lineno, col_offset) 166 for child in walk(node): 167 if 'lineno' in child._attributes: 168 child.lineno = getattr(child, 'lineno', 0) + n 186 Yield all direct child nodes of *node*, that is, all fields that are nodes 298 Keep in mind that if the node you're operating on has child nodes you must 299 either transform the child nodes yourself or call the :meth:`generic_visit`
|
/external/v8/src/torque/ |
earley-parser.cc | 38 for (const Item* child : completed_item->Children()) { 39 if (!child) continue; 41 child->left()->RunAction(child, tokens); 63 // The above loop collects the child nodes in reversed order. 71 if (const Item* child = Children()[0]) 72 return child->SplitByChildren(tokens);
|