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

1 2 3 4

  /external/compiler-rt/test/tsan/
fork_multithreaded.cc 17 pthread_t th; local
18 pthread_create(&th, 0, sleeper, 0);
malloc_stack.cc 15 pthread_t th; local
16 pthread_create(&th, 0, thr, p);
18 pthread_join(th, 0);
mutex_double_lock.cc 15 pthread_t th; local
16 pthread_create(&th, 0, ThreadFunc, &m);
17 pthread_join(th, 0);
mutex_robust.cc 20 pthread_t th; local
21 pthread_create(&th, 0, thr, 0);
27 pthread_join(th, 0);
race_on_puts.cc 19 pthread_t th[2]; local
20 pthread_create(&th[0], 0, Thread0, 0);
21 pthread_create(&th[1], 0, Thread1, 0);
22 pthread_join(th[0], 0);
23 pthread_join(th[1], 0);
sunrpc.cc 16 pthread_t th[2]; local
17 pthread_create(&th[0], 0, thr, 0);
18 pthread_create(&th[1], 0, thr, 0);
19 pthread_join(th[0], 0);
20 pthread_join(th[1], 0);
cond_cancel.c 24 pthread_t th; local
29 pthread_create(&th, 0, thr1, 0);
31 pthread_cancel(th);
33 pthread_join(th, 0);
cond_race.cc 30 pthread_t th; local
31 pthread_create(&th, 0, thr, c);
39 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_finalizer.cc 17 pthread_t th; local
18 pthread_create(&th, 0, Thread, (void*)jheap);
20 pthread_join(th, 0);
java_race.cc 15 pthread_t th; local
16 pthread_create(&th, 0, Thread, (void*)jheap);
18 pthread_join(th, 0);
mutex_robust2.cc 22 pthread_t th; local
23 pthread_create(&th, 0, thr, 0);
30 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 38 pthread_t th; local
39 pthread_create(&th, 0, sendsignal, 0);
41 pthread_join(th, 0);
unaligned_norace.cc 76 pthread_t th; local
77 pthread_create(&th, 0, Thread, 0);
79 pthread_join(th, 0);
  /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();
  /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/app/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/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/serialization/
CRLExceptionTest.java 43 Throwable th = null; local
46 new CRLException(new Throwable()), new CRLException(th),
CertPathBuilderExceptionTest.java 43 Throwable th = null; local
46 new CertPathBuilderException(new Throwable()), new CertPathBuilderException(th),

Completed in 455 milliseconds

1 2 3 4