/frameworks/av/media/libstagefright/mpeg2ts/ |
AnotherPacketSource.h | 23 #include <utils/threads.h>
|
/frameworks/base/cmds/bootanimation/ |
BootAnimation.h | 24 #include <utils/threads.h>
|
/frameworks/base/include/android_runtime/ |
AndroidRuntime.h | 27 #include <utils/threads.h> 92 * fork. Override it to initialize threads, etc. Upon return, the
|
/frameworks/base/services/common_time/ |
clock_recovery.h | 23 #include <utils/threads.h>
|
/frameworks/base/tools/aapt/ |
Main.h | 10 #include <utils/threads.h>
|
/frameworks/native/include/binder/ |
AppOpsManager.h | 22 #include <utils/threads.h>
|
/frameworks/native/include/gui/ |
ConsumerBase.h | 26 #include <utils/threads.h> 47 // by multiple threads.
|
CpuConsumer.h | 26 #include <utils/threads.h>
|
/frameworks/native/include/ui/ |
FramebufferNativeWindow.h | 25 #include <utils/threads.h>
|
GraphicBufferAllocator.h | 27 #include <utils/threads.h>
|
/frameworks/native/services/surfaceflinger/ |
MessageQueue.h | 24 #include <utils/threads.h>
|
/hardware/qcom/display/libexternal/ |
external.h | 24 #include <utils/threads.h>
|
/hardware/ti/omap4xxx/camera/ |
CameraProperties.cpp | 25 #include <utils/threads.h>
|
/libcore/luni/src/test/java/libcore/java/net/ |
ConcurrentCloseTest.java | 126 // We want to test that we unblock *all* the threads blocked on a socket, not just one. 130 final ArrayList<Thread> threads = new ArrayList<Thread>(); local 148 threads.add(t); 150 for (Thread t : threads) { 154 for (Thread t : threads) {
|
/libcore/luni/src/test/java/libcore/java/nio/charset/ |
CharsetTest.java | 39 ArrayList<Thread> threads = new ArrayList<Thread>(); local 48 threads.add(t); 51 for (Thread t : threads) { 54 for (Thread t : threads) {
|
/packages/apps/Mms/tests/src/com/android/mms/ |
RecyclerTest.java | 26 import android.provider.Telephony.Threads; 43 * Bang on the recycler and test it getting called simultaneously from two different threads 51 * Bang on the recycler and test it getting called simultaneously from two different threads 68 Threads.CONTENT_URI.buildUpon().appendQueryParameter("simple", "true").build(); 70 Threads._ID, Threads.DATE, Threads.MESSAGE_COUNT, Threads.RECIPIENT_IDS, 71 Threads.SNIPPET, Threads.SNIPPET_CHARSET, Threads.READ, Threads.ERROR 241 ArrayList<Thread> threads = new ArrayList<Thread>(THREAD_COUNT); local [all...] |
/sdk/emulator/opengl/host/libs/Translator/EGL/ |
EglGlobalInfo.h | 21 #include <utils/threads.h>
|
/sdk/emulator/opengl/tests/ut_renderer/ |
Renderer.h | 22 #include <utils/threads.h>
|
/sdk/emulator/qtools/ |
dmtrace.h | 57 std::vector<ThreadRecord*> *threads; member in class:DmTrace
|
/system/core/libcutils/ |
qsort_r_compat.c | 61 #include <cutils/threads.h>
|
threads.c | 1 /* libs/cutils/threads.c 17 #include <cutils/threads.h>
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/ |
ThreadGroupTest.java | 273 assertTrue("Can't destroy a ThreadGroup that has threads", passed); 290 "Should be able to destroy a ThreadGroup that has no threads", 401 // wipeSideEffectThreads destroy all side effect of threads created in 405 fail("wipe threads in test_list() not successful"); 840 // Give the threads a chance to die. 846 private Thread[] threads(ThreadGroup parent) { method in class:ThreadGroupTest 893 Thread[] threads = threads(aGroup); local 894 for (Thread t : threads) { 910 Thread[] threads = threads(aGroup) local [all...] |
/system/core/toolbox/ |
top.c | 88 static int max_procs, delay, iterations, threads; variable 162 if (!strcmp(argv[i], "-t")) { threads = 1; continue; } 172 if (threads && proc_cmp == &proc_thr_cmp) { 173 fprintf(stderr, "Sorting by threads per thread makes no sense!\n"); 237 new_procs = calloc(INIT_PROCS * (threads ? THREAD_MULT : 1), sizeof(struct proc_info *)); 238 num_new_procs = INIT_PROCS * (threads ? THREAD_MULT : 1); 255 if (!threads) { 290 if (threads) { 314 if (!threads) 455 if (!threads) [all...] |
/external/linux-tools-perf/util/ |
python.c | 313 struct thread_map *threads; member in struct:pyrf_thread_map 326 pthreads->threads = thread_map__new(pid, tid); 327 if (pthreads->threads == NULL) 334 thread_map__delete(pthreads->threads); 342 return pthreads->threads->nr; 349 if (i >= pthreads->threads->nr) 352 return Py_BuildValue("i", pthreads->threads->map[i]); 499 struct thread_map *threads = NULL; local 502 static char *kwlist[] = {"cpus", "threads", "group", "inherit", NULL, NULL}; 509 threads = ((struct pyrf_thread_map *)pthreads)->threads 564 struct thread_map *threads; local [all...] |
/external/icu4c/test/intltest/ |
tsmthred.cpp | 208 // TestThreads -- see if threads really work at all. 210 // Set up N threads pointing at N chars. When they are started, they will 231 // TestArabicShapeThreads -- see if calls to u_shapeArabic in many threads works successfully 233 // Set up N threads pointing at N chars. When they are started, they will make calls to doTailTest which tests 235 // At the end we make sure all threads managed to run u_shapeArabic successfully. 302 SimpleThread *threads[THREADTEST_NRTHREADS]; local 309 threads[i] = new TestThreadsThread(&threadTestChars[i]); 313 logln("->" + UnicodeString(threadTestChars) + "<- Firing off threads.. "); 316 if (threads[i]->start() != 0) { 326 logln("Waiting for threads to be set..") 372 SimpleThread *threads[ARABICSHAPE_THREADTEST]; local 495 TestMutexThread *threads[TESTMUTEX_THREAD_COUNT]; local [all...] |