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

1 2 3 4 5 6 7 8 91011>>

  /external/jsilver/src/com/google/clearsilver/jsilver/exceptions/
ExceptionUtil.java 30 public static boolean isFileNotFoundException(Throwable th) {
31 while (th != null) {
32 if (th instanceof JSilverTemplateNotFoundException || th instanceof FileNotFoundException) {
35 th = th.getCause();
  /external/compiler-rt/test/tsan/
race_on_puts.cc 20 pthread_t th[2]; local
21 pthread_create(&th[0], 0, Thread0, 0);
22 pthread_create(&th[1], 0, Thread1, 0);
23 pthread_join(th[0], 0);
24 pthread_join(th[1], 0);
setuid.c 24 pthread_t th; local
25 pthread_create(&th, 0, thread, 0);
27 pthread_join(th, 0);
sunrpc.cc 17 pthread_t th[2]; local
18 pthread_create(&th[0], 0, thr, 0);
19 pthread_create(&th[1], 0, thr, 0);
20 pthread_join(th[0], 0);
21 pthread_join(th[1], 0);
pthread_key.cc 28 pthread_t th; local
29 pthread_create(&th, 0, thr, 0);
30 pthread_join(th, 0);
32 pthread_t th[2]; local
33 pthread_create(&th[0], 0, thr, 0);
34 pthread_create(&th[1], 0, thr, 0);
35 pthread_join(th[0], 0);
36 pthread_join(th[1], 0);
malloc_stack.cc 15 pthread_t th; local
16 pthread_create(&th, 0, thr, p);
19 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);
race_stress.cc 16 pthread_t th[kThreads]; local
18 pthread_create(&th[i], 0, thr, 0);
20 pthread_join(th[i], 0);
java_finalizer.cc 18 pthread_t th; local
19 pthread_create(&th, 0, Thread, (void*)jheap);
22 pthread_join(th, 0);
java_race.cc 17 pthread_t th; local
18 pthread_create(&th, 0, Thread, (void*)jheap);
21 pthread_join(th, 0);
cond_cancel.c 37 pthread_t th; local
42 pthread_create(&th, 0, thr1, 0);
45 pthread_cancel(th);
47 pthread_join(th, 0);
mmap_stress.cc 23 pthread_t th[4]; local
25 if (pthread_create(&th[i], 0, SubWorker, 0))
29 if (pthread_join(th[i], 0))
37 pthread_t th[4]; local
39 if (pthread_create(&th[i], 0, Worker1, 0))
43 if (pthread_join(th[i], 0))
54 pthread_t th[4];
56 if (pthread_create(&th[i], 0, Worker, 0))
60 if (pthread_join(th[i], 0))
java_volatile.cc 24 pthread_t th; local
25 pthread_create(&th, 0, Thread, 0);
29 pthread_join(th, 0);
31 pthread_create(&th, 0, Thread, 0);
35 pthread_join(th, 0);
  /external/valgrind/none/tests/
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);
manythreads.c 15 pthread_t th; local
20 pthread_create(&th, NULL, func, NULL);
21 pthread_join(th, NULL);
  /external/valgrind/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);
hg05_race2.c 13 static void *th(void *v) function
27 pthread_create(&a, NULL, th, &foo);
29 pthread_create(&b, NULL, th, &foo);
  /device/linaro/bootloader/edk2/StdLib/LibC/Main/
bswap64.c 38 u_int32_t tl, th;
40 th = bswap32((u_int32_t)(x & 0x00000000ffffffffULL));
42 return ((u_int64_t)th << 32) | tl;
  /external/eigen/demos/mandelbrot/
mandelbrot.h 61 for(int th = 0; th < threadcount; th++) threads[th] = new MandelbrotThread(this, th);
66 for(int th = 0; th < threadcount; th++) delete threads[th];
  /external/libevent/test/
regress_thread.h 36 #define THREAD_JOIN(th) pthread_join(th, NULL)
45 #define THREAD_JOIN(th) WaitForSingleObject(th, INFINITE)
  /external/owasp/sanitizer/src/main/org/owasp/html/
Handler.java 54 public void handle(Throwable th) {
55 Throwables.propagate(th);
  /libcore/ojluni/src/main/java/sun/nio/ch/
NativeThreadSet.java 46 long th = NativeThread.current(); local
48 if (th == 0)
49 th = -1;
62 elts[i] = th;
91 long th = elts[i]; local
92 if (th == 0)
94 if (th != -1)
95 NativeThread.signal(th);
  /external/tensorflow/tensorflow/core/common_runtime/gpu/
gpu_event_mgr_test.cc 104 TEST_EventMgrHelper th(&em);
105 EXPECT_EQ(0, th.queue_size());
106 EXPECT_EQ(0, th.free_size());
121 TEST_EventMgrHelper th(&em);
122 EXPECT_EQ(0, th.queue_size());
130 th.QueueTensors(stream.get(), v);
131 EXPECT_EQ(i + 1, th.queue_size());
132 EXPECT_EQ(0, th.free_size());
134 th.PollEvents(false);
135 EXPECT_EQ(0, th.queue_size())
    [all...]
  /system/extras/libperfmgr/tests/
NodeLooperThreadTest.cc 66 sp<NodeLooperThread> th = new NodeLooperThread(std::move(nodes_)); local
68 EXPECT_TRUE(th->isRunning());
71 th->Stop();
72 EXPECT_FALSE(th->isRunning());
77 sp<NodeLooperThread> th = new NodeLooperThread(std::move(nodes_)); local
78 EXPECT_TRUE(th->isRunning());
83 EXPECT_TRUE(th->Request(actions, "LAUNCH"));
93 th->Stop();
94 EXPECT_FALSE(th->isRunning());
99 sp<NodeLooperThread> th = new NodeLooperThread(std::move(nodes_)) local
130 sp<NodeLooperThread> th = new NodeLooperThread(std::move(nodes_)); local
150 sp<NodeLooperThread> th = new NodeLooperThread(std::move(nodes_)); local
    [all...]
  /cts/tests/app/app/src/android/app/stubs/
LaunchpadTabActivity.java 36 final TabHost th = getTabHost(); local
37 final TabHost.TabSpec ts = th.newTabSpec("1");
40 th.addTab(ts);

Completed in 449 milliseconds

1 2 3 4 5 6 7 8 91011>>