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

1234567891011>>

/external/lldb/test/pexpect-2.4/examples/
H A Dftp.py12 child = pexpect.spawn('ftp ftp.openbsd.org') variable
13 child.expect('(?i)name .*: ')
14 child.sendline('anonymous')
15 child.expect('(?i)password')
16 child.sendline('pexpect@sourceforge.net')
17 child.expect('ftp> ')
18 child.sendline('cd /pub/OpenBSD/3.7/packages/i386')
19 child.expect('ftp> ')
20 child.sendline('bin')
21 child
[all...]
H A Ddf.py12 child = pexpect.spawn ('df') variable
18 i = child.expect ([pattern, pexpect.EOF])
20 filesystem_list.append (child.match.groups())
/external/ltrace/testsuite/ltrace.minor/
H A Dtrace-fork.c2 Objectives : Verify that ltrace can trace to child process after
11 child () function
26 child();
29 printf("My child pid is %d\n",pid);
H A Dtrace-clone.c2 Objectives : Verify that ltrace can trace to child process after
13 int child () function
29 pid = __clone2((myfunc)&child, stack, STACK_SIZE, CLONE_FS, NULL);
31 pid = clone((myfunc)&child, stack + STACK_SIZE, CLONE_FS, NULL);
/external/valgrind/main/helgrind/tests/
H A Dtc02_simple_tls.c6 /* Simple test program, no race: parent only modified x after child
14 /* Unprotected relative to parent, but in child's segment only */
21 pthread_t child; local
25 if (pthread_create(&child, NULL, child_fn, NULL)) {
30 if (pthread_join(child, NULL)) {
H A Dtc01_simple_race.c6 /* Simple test program, has a race. Parent and child both modify x
21 pthread_t child; local
22 if (pthread_create(&child, NULL, child_fn, NULL)) {
27 /* Unprotected relative to child */
30 if (pthread_join(child, NULL)) {
H A Dtc05_simple_race.c6 /* Simple test program, has a race. Parent and child both modify y
26 pthread_t child; local
27 if (pthread_create(&child, NULL, child_fn, NULL)) {
38 if (pthread_join(child, NULL)) {
H A Dtc06_two_races.c24 pthread_t child; local
26 if (pthread_create(&child, NULL, child_fn, NULL)) {
37 if (pthread_join(child, NULL)) {
H A Dtc16_byterace.c13 bytes[2*i + 0] ++; /* child accesses: 0 2 4 6 8 */
21 pthread_t child; local
22 if (pthread_create(&child, NULL, child_fn, NULL)) {
27 /* Unprotected relative to child, but harmless, since different
32 /* Unprotected relative to child, but harmful; same bytes */
36 if (pthread_join(child, NULL)) {
/external/valgrind/main/memcheck/tests/
H A Dnoisy_child.c22 pid_t child; local
29 child = fork();
30 assert(child != -1); /* assert fork did not fail */
32 if (child == 0) {
33 /* I am the child */
H A Derr_disable3.c2 /* Check that a child thread doesn't inherit its parent's disablement
39 pthread_t child; local
49 fprintf(stderr, "\n--------- p: creating child ---------\n\n");
51 r = pthread_create(&child, NULL, child_fn, NULL);
53 sleep(1); // let the child run first (determinism fix)
54 fprintf(stderr, "\n--------- p: join child ---------\n\n");
55 r = pthread_join(child, NULL);
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DRenderSVGTSpan.cpp37 bool RenderSVGTSpan::isChildAllowed(RenderObject* child, RenderStyle*) const argument
40 if (child->isText())
41 return SVGRenderSupport::isRenderableTextNode(child);
50 return child->isSVGInline() && !child->isSVGTextPath();
/external/chromium_org/ui/aura/
H A Dlayout_manager.cc17 void LayoutManager::SetChildBoundsDirect(aura::Window* child, argument
19 child->SetBoundsInternal(bounds);
/external/elfutils/0.153/libelf/
H A Delf_readall.c69 Elf *child = elf->state.ar.children; local
71 while (child != NULL)
73 if (child->map_address == NULL)
75 child->map_address = elf->map_address;
76 child->start_offset -= offset;
77 if (child->kind == ELF_K_AR)
78 child->state.ar.offset -= offset;
80 set_address (child, offset);
83 child = child
[all...]
/external/strace/test/
H A Dclone.c9 int child(void* arg) function
18 clone(child, stack+4000, CLONE_VM|CLONE_FS|CLONE_FILES, NULL);
/external/chromium_org/chrome/browser/task_profiler/
H A Dtask_profiler_data_serializer_unittest.cc66 tracked_objects::BirthOnThreadSnapshot child; local
67 child.location.file_name = "path/to/bar.cc";
68 child.location.function_name = "FizzBoom";
69 child.location.line_number = 433;
70 child.thread_name = "Chrome_IOThread";
87 process_data.tasks.back().birth = child;
97 // Add a parent-child pair.
101 process_data.descendants.back().child = child;
/external/chromium_org/sandbox/win/src/
H A DWow64.h21 Wow64(TargetProcess* child, HMODULE ntdll) argument
22 : child_(child), ntdll_(ntdll), dll_load_(NULL), continue_load_(NULL) {}
25 // Waits for the 32 bit DLL to get loaded on the child process. This function
32 // the child (one page).
35 // This method receives "notifications" whenever a DLL is mapped on the child.
38 // Returns true if ntdll.dll is mapped on the child.
44 HANDLE continue_load_; // Event to signal to continue execution on the child.
H A Dpolicy_broker.cc22 // target side (the child).
41 bool SetupNtdllImports(TargetProcess *child) { argument
83 return (SBOX_ALL_OK == child->TransferVariable("g_nt", &g_nt, sizeof(g_nt)));
/external/chromium_org/skia/ext/
H A Drefptr_unittest.cc113 RefPtr<Subclass> child = AdoptRef(new Subclass()); local
114 EXPECT_EQ(1, child->getRefCnt());
116 RefPtr<SkRefCnt> parent = child;
117 EXPECT_TRUE(child);
120 EXPECT_EQ(2, child->getRefCnt());
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DRemoveNodePreservingChildrenCommand.cpp50 RefPtrWillBeRawPtr<Node> child = children[i].release(); local
51 removeNode(child, m_shouldAssumeContentIsAlwaysEditable);
52 insertNodeBefore(child.release(), m_node, m_shouldAssumeContentIsAlwaysEditable);
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DOrderIterator.cpp87 void OrderIteratorPopulator::collectChild(const RenderBox* child) argument
89 m_iterator.m_orderValues.insert(child->style()->order());
/external/chromium_org/third_party/android_crazy_linker/src/tests/
H A Dtest_shared_relro.cpp47 pid_t child = fork(); local
48 if (child < 0)
51 if (child == 0) {
52 // In the child.
58 printf("RELRO used in child process\n");
82 printf("RELRO enabled and sent to child\n");
86 printf("Parent waiting for child\n");
88 // Wait for child to complete.
90 waitpid(child, &status, 0);
H A Dtest_two_shared_relros.cpp52 pid_t child = fork(); local
53 if (child < 0)
56 if (child == 0) {
57 // In the child.
67 printf("RELROs used in child process\n");
96 printf("RELROs enabled and sent to child\n");
100 printf("Parent waiting for child\n");
102 // Wait for child to complete.
104 waitpid(child, &status, 0);
/external/chromium_org/third_party/skia/src/svg/
H A DSkSVGClipPath.cpp28 SkSVGElement* child = *fChildren.begin(); local
29 SkASSERT(child->getType() == SkSVGType_Use);
30 SkSVGUse* use = (SkSVGUse*) child;
/external/chromium_org/ui/compositor/
H A Dlayer_tree_owner.cc19 Layer* child = *it; local
20 DeepDeleteLayers(child);

Completed in 513 milliseconds

1234567891011>>