HomeSort by relevance Sort by last modified time
    Searched defs:th (Results 1 - 25 of 162) sorted by null

1 2 3 4 5 6 7

  /external/compiler-rt/lib/tsan/lit_tests/
malloc_stack.cc 15 pthread_t th; local
16 pthread_create(&th, 0, thr, p);
18 pthread_join(th, 0);
java_alloc.cc 24 pthread_t th; local
25 pthread_create(&th, 0, Thread, (void*)(jheap + kHeapSize / 4));
27 pthread_join(th, 0);
java_race.cc 15 pthread_t th; local
16 pthread_create(&th, 0, Thread, jheap);
18 pthread_join(th, 0);
oob_race.cc 16 pthread_t th; local
17 pthread_create(&th, 0, Thread, p);
19 pthread_join(th, 0);
java_lock.cc 24 pthread_t th; local
25 pthread_create(&th, 0, Thread, 0);
29 pthread_join(th, 0);
java_lock_rec.cc 37 pthread_t th; local
38 pthread_create(&th, 0, Thread, 0);
47 pthread_join(th, 0);
java_lock_rec_race.cc 35 pthread_t th; local
36 pthread_create(&th, 0, Thread, 0);
41 pthread_join(th, 0);
java_race_move.cc 22 pthread_t th; local
23 pthread_create(&th, 0, Thread, 0);
26 pthread_join(th, 0);
java_rwlock.cc 24 pthread_t th; local
25 pthread_create(&th, 0, Thread, 0);
29 pthread_join(th, 0);
signal_errno.cc 28 pthread_t th; local
29 pthread_create(&th, 0, sendsignal, 0);
36 pthread_join(th, 0);
unaligned_norace.cc 76 pthread_t th; local
77 pthread_create(&th, 0, Thread, 0);
79 pthread_join(th, 0);
  /external/valgrind/main/none/tests/
manythreads.c 15 pthread_t th; local
20 pthread_create(&th, NULL, func, NULL);
21 pthread_join(th, NULL);
pth_exit.c 4 static void *th(void *v) function
14 pthread_create(&a, NULL, th, NULL);
15 pthread_create(&a, NULL, th, NULL);
16 pthread_create(&a, NULL, th, NULL);
17 pthread_create(&a, NULL, th, NULL);
  /art/test/003-omnibus-opcodes/src/
Throw.java 117 Throw th = new Throw(); local
119 th.one();
120 th.twoA();
121 th.twoN();
122 th.rethrow();
  /dalvik/tests/003-omnibus-opcodes/src/
Throw.java 117 Throw th = new Throw(); local
119 th.one();
120 th.twoA();
121 th.twoN();
122 th.rethrow();
  /external/valgrind/main/helgrind/tests/
hg04_race.c 8 static void *th(void *v) function
19 pthread_create(&a, NULL, th, NULL);
21 pthread_create(&b, NULL, th, NULL);
hg01_all_ok.c 9 static void *th(void *v) function
25 pthread_create(&a, NULL, th, NULL);
26 pthread_create(&b, NULL, th, NULL);
hg05_race2.c 13 static void *th(void *v) function
27 pthread_create(&a, NULL, th, &foo);
29 pthread_create(&b, NULL, th, &foo);
  /external/apache-harmony/security/src/test/api/java/tests/api/java/security/
AccessControlContextTest.java 51 Thread th = new Thread(new Runnable() { local
62 th.start();
64 th.join();
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/monitor_exit/
Test_monitor_exit.java 36 Thread th = new Thread(r); local
37 th.start();
38 th.join();
  /cts/tests/src/android/app/cts/
LaunchpadTabActivity.java 36 final TabHost th = getTabHost(); local
37 final TabHost.TabSpec ts = th.newTabSpec("1");
40 th.addTab(ts);
  /external/valgrind/main/callgrind/tests/
threads.c 14 static void *th(void *v) function
41 pthread_create(&t[i], NULL, th, &sum[i]);
  /frameworks/base/core/tests/coretests/src/android/app/activity/
LaunchpadTabActivity.java 36 TabHost th = getTabHost(); local
37 TabHost.TabSpec ts = th.newTabSpec("1");
40 th.addTab(ts);
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/serialization/
CRLExceptionTest.java 44 Throwable th = null; local
47 new CRLException(new Throwable()), new CRLException(th),
CertPathBuilderExceptionTest.java 44 Throwable th = null; local
47 new CertPathBuilderException(new Throwable()), new CertPathBuilderException(th),

Completed in 282 milliseconds

1 2 3 4 5 6 7