/prebuilt/ndk/android-ndk-r7/platforms/android-3/arch-arm/usr/include/asm/ |
smp.h | 15 #include <linux/threads.h>
|
/prebuilt/ndk/android-ndk-r7/platforms/android-4/arch-arm/usr/include/asm/ |
hardirq.h | 16 #include <linux/threads.h>
|
smp.h | 15 #include <linux/threads.h>
|
/prebuilt/ndk/android-ndk-r7/platforms/android-5/arch-arm/usr/include/asm/ |
hardirq.h | 16 #include <linux/threads.h>
|
smp.h | 15 #include <linux/threads.h>
|
/prebuilt/ndk/android-ndk-r7/platforms/android-8/arch-arm/usr/include/asm/ |
hardirq.h | 16 #include <linux/threads.h>
|
smp.h | 15 #include <linux/threads.h>
|
/prebuilt/ndk/android-ndk-r7/platforms/android-9/arch-arm/usr/include/asm/ |
hardirq.h | 16 #include <linux/threads.h>
|
smp.h | 15 #include <linux/threads.h>
|
/prebuilt/ndk/android-ndk-r7/platforms/android-9/arch-x86/usr/include/asm/ |
hardirq_32.h | 15 #include <linux/threads.h>
|
smp_32.h | 17 #include <linux/threads.h>
|
/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/webkit/Source/WebCore/notifications/ |
NotificationCenter.idl | 31 module threads {
|
/external/webkit/Source/WebCore/workers/ |
AbstractWorker.idl | 31 module threads {
|
/development/tools/emulator/opengl/host/libs/Translator/EGL/ |
EglThreadInfo.cpp | 21 #include <cutils/threads.h>
|
/development/tools/emulator/opengl/host/libs/libOpenglRender/ |
ThreadInfo.cpp | 32 #include <cutils/threads.h>
|
/external/kernel-headers/original/asm-x86/ |
hardirq_32.h | 4 #include <linux/threads.h>
|
/external/oprofile/module/x86/ |
cpu_type.c | 25 * p4_threads - determines the number of logical processor threads in a die 27 * returns number of threads in p4 die (1 for non-HT processors) 35 /* This it a Pentium 4 with HT, find number of threads */ 79 int enabled, threads, i; 85 threads = p4_threads(); 86 if (threads == 1) return 0; 90 while (i < threads) {
|
/external/valgrind/main/none/tests/ |
tls.c | 90 pthread_t threads[NTESTS*2]; local 96 pthread_create(&threads[curthread++], NULL, tls_ptr, (void *)&tests[i]); 97 pthread_create(&threads[curthread++], NULL, tls_ptr, (void *)&tests[i]); 101 pthread_join(threads[i], NULL);
|
/frameworks/base/include/media/stagefright/ |
MediaBufferGroup.h | 23 #include <utils/threads.h>
|
/frameworks/base/opengl/libagl/ |
TokenManager.h | 24 #include <utils/threads.h>
|
/libcore/luni/src/test/java/tests/security/ |
SecureRandomTest.java | 78 int threads = 2; local 79 ExecutorService executor = Executors.newFixedThreadPool(threads); 81 for (int t = 0; t < threads; t++) { 92 for (int i = 0; i < threads; i++) {
|
/libcore/luni/src/test/java/tests/support/ |
ThreadPool.java | 79 Thread[] threads = new Thread[activeCount()]; local 80 int count = enumerate(threads); 83 threads[i].join();
|
/system/extras/tests/bionic/libc/common/ |
test_pthread_getcpuclockid.c | 73 pthread_t threads[MAX_THREADS]; local 79 pthread_create( &threads[nn], &attr, thread_func, (void*)nn ); 83 pthread_join( threads[nn], &dummy );
|
/external/valgrind/main/coregrind/ |
m_machine.c | 47 return INSTR_PTR( VG_(threads)[tid].arch ); 50 return STACK_PTR( VG_(threads)[tid].arch ); 53 return FRAME_PTR( VG_(threads)[tid].arch ); 57 INSTR_PTR( VG_(threads)[tid].arch ) = ip; 60 STACK_PTR( VG_(threads)[tid].arch ) = sp; 67 regs->r_pc = (ULong)VG_(threads)[tid].arch.vex.guest_EIP; 68 regs->r_sp = (ULong)VG_(threads)[tid].arch.vex.guest_ESP; 70 = VG_(threads)[tid].arch.vex.guest_EBP; 72 regs->r_pc = VG_(threads)[tid].arch.vex.guest_RIP; 73 regs->r_sp = VG_(threads)[tid].arch.vex.guest_RSP [all...] |