HomeSort by relevance Sort by last modified time
    Searched refs:th (Results 26 - 50 of 709) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/compiler-rt/test/tsan/Linux/
mutex_robust.cc 20 pthread_t th; local
21 pthread_create(&th, 0, thr, 0);
27 pthread_join(th, 0);
mutex_robust2.cc 22 pthread_t th; local
23 pthread_create(&th, 0, thr, 0);
30 pthread_join(th, 0);
  /external/compiler-rt/test/tsan/
fd_dup_norace2.cc 47 pthread_t th; local
48 pthread_create(&th, 0, Thread, 0);
51 pthread_join(th, 0);
fd_dup_race.cc 24 pthread_t th; local
25 pthread_create(&th, 0, Thread, 0);
29 pthread_join(th, 0);
java_lock.cc 24 pthread_t th; local
25 pthread_create(&th, 0, Thread, 0);
30 pthread_join(th, 0);
java_race_move.cc 23 pthread_t th; local
24 pthread_create(&th, 0, Thread, 0);
28 pthread_join(th, 0);
java_race_pc.cc 27 pthread_t th; local
28 pthread_create(&th, 0, Thread, (void*)jheap);
31 pthread_join(th, 0);
java_rwlock.cc 24 pthread_t th; local
25 pthread_create(&th, 0, Thread, 0);
30 pthread_join(th, 0);
signal_errno.cc 41 pthread_t th; local
42 pthread_create(&th, 0, sendsignal, 0);
44 pthread_join(th, 0);
fork_multithreaded.cc 19 pthread_t th; local
20 pthread_create(&th, 0, sleeper, 0);
signal_reset.cc 61 pthread_t th[2]; local
62 pthread_create(&th[0], 0, busy, 0);
63 pthread_create(&th[1], 0, reset, 0);
65 pthread_join(th[1], 0);
67 pthread_join(th[0], 0);
barrier.cc 33 pthread_t th[kSize];
35 pthread_create(&th[i], 0, thr, (void*)(long)i);
37 pthread_join(th[i], 0);
cond_destruction.cc 27 pthread_t th; local
30 pthread_create(&th, 0, thr, 0);
49 pthread_join(th, 0);
cond_race.cc 29 pthread_t th; local
30 pthread_create(&th, 0, thr, c);
38 pthread_join(th, 0);
dl_iterate_phdr.cc 38 pthread_t th; local
39 pthread_create(&th, 0, thread, 0);
49 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_lock_move.cc 29 pthread_t th; local
30 pthread_create(&th, 0, Thread, 0);
36 pthread_join(th, 0);
  /external/skia/tools/skqp/
make_apk_list 33 <th>APK</th>
34 <th>Date</th>
35 <th>Commit</th>
  /external/valgrind/helgrind/tests/
hg01_all_ok.c 17 static void *th(void *v) function
41 pthread_create(&a, NULL, th, NULL);
42 pthread_create(&b, NULL, th, NULL);
  /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);
  /compatibility/cdd/5_multimedia/
5_2_video-encoding.md 67 <th></th>
68 <th>SD (Low quality)</th>
69 <th>SD (High quality)</th>
70 <th>HD 720p</th>
71 <th>HD 1080p</th>
    [all...]
  /libcore/ojluni/src/main/native/
ObjectStreamClass.c 63 jthrowable th = (*env)->ExceptionOccurred(env); local
65 if (!(*env)->IsInstanceOf(env, th, noSuchMethodErrCl)) {
66 (*env)->Throw(env, th);
92 jthrowable th = (*env)->ExceptionOccurred(env); local
94 if (!(*env)->IsInstanceOf(env, th, noSuchMethodErrCl)) {
95 (*env)->Throw(env, th);
  /external/compiler-rt/lib/tsan/tests/rtl/
tsan_posix.cc 59 pthread_t th[3]; local
63 EXPECT_EQ(pthread_create(&th[0], 0, dtors_thread, &k1), 0);
64 EXPECT_EQ(pthread_create(&th[1], 0, dtors_thread, &k2), 0);
65 EXPECT_EQ(pthread_join(th[0], 0), 0);
66 EXPECT_EQ(pthread_create(&th[2], 0, dtors_thread, &k3), 0);
67 EXPECT_EQ(pthread_join(th[1], 0), 0);
68 EXPECT_EQ(pthread_join(th[2], 0), 0);
82 pthread_t th[kThreads]; local
84 EXPECT_EQ(pthread_create(&th[i], 0, local_thread,
87 EXPECT_EQ(pthread_join(th[i], 0), 0)
133 pthread_t th; local
    [all...]
  /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();
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/
TestTaskQueue.java 36 HandlerThread th = new HandlerThread(threadName); local
37 th.start();
38 mHandler = new Handler(th.getLooper());

Completed in 782 milliseconds

12 3 4 5 6 7 8 91011>>