/libcore/luni/src/main/java/java/lang/ |
Thread.java | 66 * non-daemon threads running. 129 * The normal (default) priority value assigned to threads. 356 * threads or attach threads created externally. 500 * Copies an array with all Threads which are in the same ThreadGroup as the 501 * receiver - and subgroups - into the array <code>threads</code> passed as 505 * @param threads 506 * array into which the Threads will be copied 507 * @return How many Threads were copied over 509 public static int enumerate(Thread[] threads) { 523 Thread[] threads = new Thread[count + count \/ 2]; local [all...] |
/system/core/adb/ |
sysdeps_win32.c | 1515 WaitForAllParam* threads; local [all...] |
/dalvik/vm/os/ |
android.cpp | 27 #include <utils/threads.h>
|
/development/tools/emulator/opengl/host/libs/Translator/EGL/ |
EglDisplay.h | 23 #include <utils/threads.h>
|
/development/tools/emulator/opengl/host/libs/Translator/GLES_CM/ |
GLEScmContext.h | 26 #include <utils/threads.h>
|
/external/kernel-headers/original/asm-x86/ |
fixmap_32.h | 32 #include <linux/threads.h>
|
/external/kernel-headers/original/linux/ |
percpu_counter.h | 11 #include <linux/threads.h>
|
/external/webkit/Source/WebCore/platform/graphics/android/ |
BaseTile.h | 37 #include <utils/threads.h> 185 // across all threads and cores.
|
/frameworks/base/drm/libdrmframework/plugins/common/util/include/ |
SessionMap.h | 20 #include <utils/threads.h>
|
/frameworks/base/include/binder/ |
BpBinder.h | 22 #include <utils/threads.h>
|
ProcessState.h | 25 #include <utils/threads.h>
|
/frameworks/base/include/media/stagefright/ |
AudioPlayer.h | 24 #include <utils/threads.h>
|
/frameworks/base/include/utils/ |
BlobCache.h | 25 #include <utils/threads.h>
|
/frameworks/base/media/jni/ |
android_media_ResampleInputStream.cpp | 27 #include <utils/threads.h>
|
/frameworks/base/media/libstagefright/include/ |
ChromiumHTTPDataSource.h | 22 #include <utils/threads.h>
|
/frameworks/base/media/libstagefright/omx/tests/ |
OMXHarness.h | 24 #include <utils/threads.h>
|
/frameworks/base/media/mtp/ |
MtpDevice.h | 25 #include <utils/threads.h>
|
/frameworks/base/opengl/libagl/ |
TextureObjectManager.h | 25 #include <utils/threads.h>
|
/frameworks/base/services/surfaceflinger/ |
MessageQueue.h | 24 #include <utils/threads.h>
|
/frameworks/media/libvideoeditor/lvpp/ |
AudioPlayerBase.h | 24 #include <utils/threads.h>
|
/dalvik/vm/test/ |
AtomicTest.cpp | 269 pthread_t threads[THREAD_COUNT]; local 279 dvmFprintf(stdout, "Creating threads\n"); 284 if (pthread_create(&threads[i], NULL, startRoutine, arg) != 0) { 289 /* wait for all the threads to reach the starting line */ 305 if (pthread_join(threads[i], &retval) != 0) { 311 dvmFprintf(stdout, "All threads stopped, time is %.6fms\n",
|
/sdk/ddms/libs/ddmlib/src/com/android/ddmlib/ |
ClientData.java | 46 * FooPanel methods, which run in different threads. All non-trivial 540 * Returns the list of threads as {@link ThreadInfo} objects. 545 Collection<ThreadInfo> threads = mThreadMap.values(); local 546 return threads.toArray(new ThreadInfo[threads.size()]);
|
/system/core/toolbox/ |
ps.c | 107 nexttok(&ptr); // threads 199 int threads = 0; local 206 threads = 1; 233 if(threads) ps_threads(pid, namefilter);
|
/external/chromium/base/metrics/ |
stats_table_unittest.cc | 51 slot_id = table.RegisterThread("too many threads"); 69 // CounterMixed will be incremented by odd numbered threads and 70 // decremented by even threads. 108 // Create a few threads and have them poke on their counters. 121 // Spin up a set of threads to go bang on the various counters. 122 // After we join the threads, we'll make sure the counters 124 StatsTableThread* threads[kMaxThreads]; local 126 // Spawn the threads. 128 threads[index] = new StatsTableThread("MultipleThreadsTest", index); 129 threads[index]->Start() [all...] |
/packages/apps/Mms/src/com/android/mms/transaction/ |
MessagingNotification.java | 177 Set<Long> threads = new HashSet<Long>(4); local 181 accumulator, getMmsNewMessageNotificationInfo(context, threads)); 183 accumulator, getSmsNewMessageNotificationInfo(context, threads)); 191 accumulator.first().deliver(context, isNew, count, threads.size()); 280 Context context, Set<Long> threads) { 326 threads.add(threadId); 328 threads.add(cursor.getLong(COLUMN_THREAD_ID)); 363 Context context, Set<Long> threads) { 400 threads.add(threadId); 402 threads.add(cursor.getLong(COLUMN_THREAD_ID)) [all...] |