Searched defs:child (Results 1 - 25 of 431) 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/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)) {
H A Dstackteardown.c87 /* Parent creates 1 child, that will detach, and exit after destroying
93 pthread_t child; local
105 r = pthread_create(&child, &attr, child_fn, NULL); assert(!r);
H A Dtc09_bad_unlock.c17 pthread_t child; local
33 // start child and get it to unlock this lock
35 pthread_create( &child, NULL, child_fn, (void*)&mx2 );
36 /* child runs and attempts to unlock our lock. Error
38 pthread_join(child, NULL );
/external/libxml2/python/tests/
H A Dtst.py16 child = root.children variable
17 if child.name != "foo":
18 print("child.name failed")
H A Dnsdel.py45 # Remove a namespace refered to by a child
49 child = root.newChild(namespace, "child", None) variable
/external/valgrind/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/elfutils/src/libelf/
H A Delf_readall.c48 Elf *child = elf->state.ar.children; local
50 while (child != NULL)
52 if (child->map_address == NULL)
54 child->map_address = elf->map_address;
55 child->start_offset -= offset;
56 if (child->kind == ELF_K_AR)
57 child->state.ar.offset -= offset;
59 set_address (child, offset);
62 child = child
[all...]
H A Delf_end.c84 the child but here we already have the child lock. We
85 solve this problem by giving free the child lock. The
96 struct Elf *child = parent->state.ar.children; local
98 while (child->next != elf)
99 child = child->next;
101 child->next = elf->next;
/external/skia/src/svg/parser/
H A DSkSVGClipPath.cpp28 SkSVGElement* child = *fChildren.begin(); local
29 SkASSERT(child->getType() == SkSVGType_Use);
30 SkSVGUse* use = (SkSVGUse*) child;
/external/valgrind/none/tests/
H A Dpth_blockedsig.c35 pthread_t child; local
50 if (pthread_create (&child, NULL, child_main, NULL) != 0)
53 pthread_join (child, NULL);
/external/compiler-rt/test/msan/
H A Dfork.cc3 // and verify that origin reads do not deadlock in the child process.
51 // Run through stackdepot in the child process.
53 void child() { function
76 // child
77 child();
/external/deqp/framework/randomshaders/
H A DrsgExpressionGenerator.cpp73 Expression* child = curExpr->createNextChild(m_state); local
75 if (child)
77 m_expressionStack.push_back(child);
/external/elfutils/src/libdw/
H A Dlibdw_visit_scopes.c75 struct Dwarf_Die_Chain child; local
78 child.parent = root;
79 if ((ret = INTUSE(dwarf_child) (&root->die, &child.die)) != 0)
84 return __libdw_visit_scopes (depth + 1, &child,
95 children in place before moving to the next real child. */
96 while (INTUSE(dwarf_tag) (&child.die) == DW_TAG_imported_unit)
98 Dwarf_Die orig_child_die = child.die;
100 Dwarf_Attribute *attr = INTUSE(dwarf_attr) (&child.die,
103 if (INTUSE(dwarf_formref_die) (attr, &child.die) != NULL
104 && INTUSE(dwarf_child) (&child
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DLocaleUtility.java48 * return true if parent is a 'strict' fallback of child, that is,
49 * if child =~ "^parent(_.+)*" (roughly).
51 public static boolean isFallbackOf(String parent, String child) { argument
52 if (!child.startsWith(parent)) {
56 return (i == child.length() ||
57 child.charAt(i) == '_');
62 * 'strict' fallback of the child (parent string is a fallback
63 * of child string).
65 public static boolean isFallbackOf(Locale parent, Locale child) { argument
66 return isFallbackOf(parent.toString(), child
[all...]
/external/jmonkeyengine/engine/src/bullet-native/
H A Dcom_jme3_bullet_collision_shapes_CompoundCollisionShape.cpp68 btCollisionShape* child = reinterpret_cast<btCollisionShape*>(childId); local
78 shape->addChildShape(trans, child);
95 btCollisionShape* child = reinterpret_cast<btCollisionShape*>(childId); local
101 shape->removeChildShape(child);
/external/jmonkeyengine/engine/src/core/com/jme3/scene/
H A DSimpleBatchNode.java29 public int attachChild(Spatial child) { argument
31 if (!(child instanceof Geometry)) {
32 throw new UnsupportedOperationException("BatchNode is BatchMode.Simple only support child of type Geometry, use BatchMode.Complex to use a complex structure");
35 return super.attachChild(child);

Completed in 521 milliseconds

1234567891011>>