/prebuilts/ndk/current/platforms/android-18/arch-arm/usr/include/asm/ |
hardirq.h | 16 #include <linux/threads.h>
|
smp.h | 15 #include <linux/threads.h>
|
/prebuilts/ndk/current/platforms/android-18/arch-x86/usr/include/asm/ |
hardirq_32.h | 21 #include <linux/threads.h>
|
smp_32.h | 24 #include <linux/threads.h>
|
/prebuilts/ndk/current/platforms/android-19/arch-arm/usr/include/asm/ |
hardirq.h | 16 #include <linux/threads.h>
|
smp.h | 15 #include <linux/threads.h>
|
/prebuilts/ndk/current/platforms/android-19/arch-x86/usr/include/asm/ |
hardirq_32.h | 21 #include <linux/threads.h>
|
smp_32.h | 24 #include <linux/threads.h>
|
/prebuilts/ndk/current/platforms/android-3/arch-arm/usr/include/asm/ |
hardirq.h | 16 #include <linux/threads.h>
|
smp.h | 15 #include <linux/threads.h>
|
/prebuilts/ndk/current/platforms/android-4/arch-arm/usr/include/asm/ |
hardirq.h | 16 #include <linux/threads.h>
|
smp.h | 15 #include <linux/threads.h>
|
/prebuilts/ndk/current/platforms/android-5/arch-arm/usr/include/asm/ |
hardirq.h | 16 #include <linux/threads.h>
|
smp.h | 15 #include <linux/threads.h>
|
/prebuilts/ndk/current/platforms/android-8/arch-arm/usr/include/asm/ |
hardirq.h | 16 #include <linux/threads.h>
|
smp.h | 15 #include <linux/threads.h>
|
/prebuilts/ndk/current/platforms/android-9/arch-arm/usr/include/asm/ |
hardirq.h | 16 #include <linux/threads.h>
|
smp.h | 15 #include <linux/threads.h>
|
/prebuilts/ndk/current/platforms/android-9/arch-x86/usr/include/asm/ |
hardirq_32.h | 21 #include <linux/threads.h>
|
smp_32.h | 24 #include <linux/threads.h>
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/ |
SuspendTest.java | 49 * and checks with help of ThreadReference.Status command that all threads in debuggee 51 * debuggee threads are suspended. 70 int threads = reply.getNextValueAsInt(); local 71 logWriter.println("Number of threads = " + threads); 72 assertTrue("Invalid number of threads: " + threads, threads > 0); 74 for (int i = 0; i < threads; i++) {
|
/external/libchrome/base/threading/ |
thread_local_storage_unittest.cc | 100 // threads that set the TLS, while the destructor cleans it up. 101 // After the threads finish, verify that the value is cleaned up. 105 DelegateSimpleThread* threads[kNumThreads]; local 109 // Spawn the threads. 113 threads[index] = new DelegateSimpleThread(thread_delegates[index], 115 threads[index]->Start(); 118 // Wait for the threads to finish. 120 threads[index]->Join(); 121 delete threads[index]; 127 tls_slot.Free(); // Stop doing callbacks to cleanup threads [all...] |
/external/google-breakpad/src/processor/ |
microdump_processor_unittest.cc | 102 ASSERT_EQ(1U, state->threads()->size()); 133 ASSERT_EQ(1U, state.threads()->size()); 134 ASSERT_EQ(12U, state.threads()->at(0)->frames()->size()); 137 state.threads()->at(0)->frames()->at(0)->function_name); 139 state.threads()->at(0)->frames()->at(3)->function_name); 163 ASSERT_EQ(8U, state.threads()->at(0)->frames()->size()); 165 state.threads()->at(0)->frames()->at(0)->function_name); 167 state.threads()->at(0)->frames()->at(1)->function_name); 169 state.threads()->at(0)->frames()->at(6)->function_name); 171 state.threads()->at(0)->frames()->at(6)->module->code_file()) [all...] |
/external/dbus/test/internals/ |
refs.c | 64 GThread *threads[N_THREADS]; member in struct:__anon8791 181 g_thread_join (f->threads[i]); 285 f->threads[i] = g_thread_new (NULL, ref_thread, &public_api); 287 f->threads[i] = g_thread_new (NULL, ref_thread, &internal_api); 289 g_assert (f->threads[i] != NULL); 297 f->threads[i] = g_thread_new (NULL, cycle_thread, &public_api); 299 f->threads[i] = g_thread_new (NULL, cycle_thread, &internal_api); 301 g_assert (f->threads[i] != NULL); 309 f->threads[i] = g_thread_new (NULL, unref_thread, &public_api); 311 f->threads[i] = g_thread_new (NULL, unref_thread, &internal_api) [all...] |
/external/compiler-rt/lib/sanitizer_common/tests/ |
sanitizer_mutex_test.cc | 107 pthread_t threads[kThreads]; local 109 PTHREAD_CREATE(&threads[i], 0, lock_thread<SpinMutex>, &data); 111 PTHREAD_JOIN(threads[i], 0); 118 pthread_t threads[kThreads]; local 120 PTHREAD_CREATE(&threads[i], 0, try_thread<SpinMutex>, &data); 122 PTHREAD_JOIN(threads[i], 0); 129 pthread_t threads[kThreads]; local 131 PTHREAD_CREATE(&threads[i], 0, lock_thread<BlockingMutex>, &data); 133 PTHREAD_JOIN(threads[i], 0);
|