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

1234567891011>>

/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/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.c83 the child but here we already have the child lock. We
84 solve this problem by giving free the child lock. The
95 struct Elf *child = parent->state.ar.children; local
97 while (child->next != elf)
98 child = child->next;
100 child->next = elf->next;
/external/jcommander/src/test/java/com/beust/jcommander/args/
H A DArgsInherited.java25 @Parameter(names = "-child", description = "Child parameter")
26 public Integer child = 1; field in class:ArgsInherited
/external/boringssl/src/crypto/bn/
H A Dbn_asn1.c22 CBS child; local
23 if (!CBS_get_asn1(cbs, &child, CBS_ASN1_INTEGER) ||
24 CBS_len(&child) == 0) {
29 if (CBS_data(&child)[0] & 0x80) {
35 if (CBS_data(&child)[0] == 0x00 &&
36 CBS_len(&child) > 1 &&
37 !(CBS_data(&child)[1] & 0x80)) {
42 return BN_bin2bn(CBS_data(&child), CBS_len(&child), ret) != NULL;
46 CBS child; local
68 CBB child; local
[all...]
/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/icu/android_icu4j/runner/src/main/java/android/icu/junit/
H A DErrorReportingRunner.java98 private Description describeCause(Throwable child) { argument
102 String message = child.getMessage();
110 String causeClassName = child.getClass().getName();
117 private void runCause(Throwable child, RunNotifier notifier) { argument
118 Description description= describeCause(child);
120 notifier.fireTestFailure(new Failure(description, child));
H A DIcuTestFmwkRunner.java112 protected Description describeChild(IcuFrameworkTest child) { argument
113 return child.getDescription();
117 protected void runChild(final IcuFrameworkTest child, RunNotifier notifier) { argument
118 Description description = describeChild(child);
126 child.run();
H A DIcuTestGroupRunner.java90 protected Description describeChild(Runner child) { argument
91 return child.getDescription();
95 protected void runChild(Runner child, RunNotifier notifier) { argument
96 child.run(notifier);
/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DLocaleUtility.java50 * return true if parent is a 'strict' fallback of child, that is,
51 * if child =~ "^parent(_.+)*" (roughly).
53 public static boolean isFallbackOf(String parent, String child) { argument
54 if (!child.startsWith(parent)) {
58 return (i == child.length() ||
59 child.charAt(i) == '_');
64 * 'strict' fallback of the child (parent string is a fallback
65 * of child string).
67 public static boolean isFallbackOf(Locale parent, Locale child) { argument
68 return isFallbackOf(parent.toString(), child
[all...]

Completed in 743 milliseconds

1234567891011>>