HomeSort by relevance Sort by last modified time
    Searched refs:threads (Results 151 - 175 of 998) sorted by null

1 2 3 4 5 67 8 91011>>

  /prebuilts/ndk/9/platforms/android-14/arch-arm/usr/include/asm/
smp.h 15 #include <linux/threads.h>
  /prebuilts/ndk/9/platforms/android-14/arch-x86/usr/include/asm/
hardirq_32.h 21 #include <linux/threads.h>
smp_32.h 24 #include <linux/threads.h>
  /prebuilts/ndk/9/platforms/android-18/arch-arm/usr/include/asm/
hardirq.h 16 #include <linux/threads.h>
smp.h 15 #include <linux/threads.h>
  /prebuilts/ndk/9/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/9/platforms/android-3/arch-arm/usr/include/asm/
hardirq.h 16 #include <linux/threads.h>
smp.h 15 #include <linux/threads.h>
  /prebuilts/ndk/9/platforms/android-4/arch-arm/usr/include/asm/
hardirq.h 16 #include <linux/threads.h>
smp.h 15 #include <linux/threads.h>
  /prebuilts/ndk/9/platforms/android-5/arch-arm/usr/include/asm/
hardirq.h 16 #include <linux/threads.h>
smp.h 15 #include <linux/threads.h>
  /prebuilts/ndk/9/platforms/android-8/arch-arm/usr/include/asm/
hardirq.h 16 #include <linux/threads.h>
smp.h 15 #include <linux/threads.h>
  /prebuilts/ndk/9/platforms/android-9/arch-arm/usr/include/asm/
hardirq.h 16 #include <linux/threads.h>
smp.h 15 #include <linux/threads.h>
  /prebuilts/ndk/9/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/chromium_org/base/threading/
thread_local_storage_unittest.cc 94 // threads that set the TLS, while the destructor cleans it up.
95 // After the threads finish, verify that the value is cleaned up.
99 DelegateSimpleThread* threads[kNumThreads]; local
103 // Spawn the threads.
107 threads[index] = new DelegateSimpleThread(thread_delegates[index],
109 threads[index]->Start();
112 // Wait for the threads to finish.
114 threads[index]->Join();
115 delete threads[index];
121 tls_slot.Free(); // Stop doing callbacks to cleanup threads
    [all...]
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_mutex_test.cc 105 pthread_t threads[kThreads]; local
107 pthread_create(&threads[i], 0, lock_thread<SpinMutex>, &data);
109 pthread_join(threads[i], 0);
116 pthread_t threads[kThreads]; local
118 pthread_create(&threads[i], 0, try_thread<SpinMutex>, &data);
120 pthread_join(threads[i], 0);
127 pthread_t threads[kThreads]; local
129 pthread_create(&threads[i], 0, lock_thread<BlockingMutex>, &data);
131 pthread_join(threads[i], 0);
  /system/core/toolbox/
schedtop.c 46 struct thread_table threads; variable in typeref:struct:thread_table
103 info = get_item(&threads);
152 commit_item(&threads);
180 for (j = 0; j < threads.active; j++)
181 if (tid == threads.data[j].tid)
183 if (j == threads.active)
185 else if (!(flags & FLAG_HIDE_IDLE) || threads.data[j].run_count - last_threads.data[i].run_count)
187 NS_TO_S_D(threads.data[j].exec_time - last_threads.data[i].exec_time),
188 NS_TO_S_D(threads.data[j].delay_time - last_threads.data[i].delay_time),
189 threads.data[j].run_count - last_threads.data[i].run_count
    [all...]
  /external/v8/test/cctest/
test-lockers.cc 192 static void StartJoinAndDeleteThreads(const i::List<JoinableThread*>& threads) {
193 for (int i = 0; i < threads.length(); i++) {
194 threads[i]->Start();
196 for (int i = 0; i < threads.length(); i++) {
197 threads[i]->Join();
199 for (int i = 0; i < threads.length(); i++) {
200 delete threads[i];
205 // Run many threads all locking on the same isolate
212 i::List<JoinableThread*> threads(kNThreads);
215 threads.Add(new IsolateLockingThreadWithLocalContext(isolate))
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
pthread_key_delete.c 9 * Pthreads-win32 - POSIX Threads Library for Win32
74 if (key->threads != NULL && key->destructor != NULL)
84 * key->threads is valid.
86 while ((assoc = (ThreadKeyAssoc *) key->threads) != NULL)
99 * Since we are starting at the head of the key's threads
100 * chain, this will also point key->threads at the next assoc.
ptw32_tkAssocDestroy.c 10 * Pthreads-win32 - POSIX Threads Library for Win32
93 /* Remove assoc from key's threads chain */
105 if (assoc->key->threads == assoc)
107 /* We're at the head of the key's threads chain */
108 assoc->key->threads = next;

Completed in 1170 milliseconds

1 2 3 4 5 67 8 91011>>