/external/chromium_org/third_party/tcmalloc/chromium/src/base/ |
thread_lister.c | 41 /* Include other thread listers here that define THREADS macro 45 #ifndef THREADS 77 #endif /* ifndef THREADS */
|
linuxthreads.cc | 36 #ifdef THREADS 63 * after suspending threads. So, we just implement our own copy. A 118 * to call once threads are suspended (depending on whether libc looks up 194 * other threads. 257 /* Create "marker" that we can use to detect threads sharing the same 259 * we minimize the risk of misidentifying child processes as threads; 320 /* Some kernels know about threads, and hide them in "/proc" 322 * id). Threads are moved into a separate "task" directory. We 334 /* Since we are suspending threads, we cannot call any libc 341 * Unless the number of threads is increasing very rapidly, w [all...] |
/external/chromium_org/third_party/tcmalloc/vendor/src/base/ |
thread_lister.c | 41 /* Include other thread listers here that define THREADS macro 45 #ifndef THREADS 77 #endif /* ifndef THREADS */
|
linuxthreads.cc | 36 #ifdef THREADS 63 * after suspending threads. So, we just implement our own copy. A 118 * to call once threads are suspended (depending on whether libc looks up 194 * other threads. 257 /* Create "marker" that we can use to detect threads sharing the same 259 * we minimize the risk of misidentifying child processes as threads; 320 /* Some kernels know about threads, and hide them in "/proc" 322 * id). Threads are moved into a separate "task" directory. We 334 /* Since we are suspending threads, we cannot call any libc 341 * Unless the number of threads is increasing very rapidly, w [all...] |
/frameworks/av/libvideoeditor/vss/stagefrightshells/src/ |
MediaBufferPuller.h | 20 #include <utils/threads.h> 77 bool mAskToStart; // Asks the threads to start 78 bool mAskToStop; // Asks the threads to stop
|
/frameworks/base/docs/html/training/multiple-threads/ |
create-threadpool.jd | 1 page.title=Creating a Manager for Multiple Threads 14 <li><a href="#ThreadPool">Create a Pool of Threads</a></li> 20 <li><a href="{@docRoot}guide/components/processes-and-threads.html">Processes and Threads</a></li> 39 you need to provide a managed collection of threads. To do this, use an instance of 49 <a href="{@docRoot}guide/components/processes-and-threads.html"> 50 Processes and Threads</a> API guide. 159 The initial number of threads to allocate to the pool, and the maximum allowable number. 160 The number of threads you can have in a thread pool depends primarily on the number of cores 215 <h2 id="ThreadPool">Create a Pool of Threads</h2 [all...] |
/frameworks/base/services/input/ |
InputManager.h | 41 * The input manager uses two threads. 63 /* Starts the input manager threads. */ 66 /* Stops the input manager threads and waits for them to exit. */
|
/libcore/luni/src/main/java/java/util/concurrent/locks/ |
ReentrantLock.java | 29 * access order. Programs using fair locks accessed by many threads 34 * fairness of thread scheduling. Thus, one of many threads using a 36 * active threads are not progressing and not currently holding the 40 * is available even if other threads are waiting. 318 * other threads are currently waiting for the lock. 347 * an available lock <em>will not</em> be acquired if any other threads 458 * <li> Waiting threads are signalled in FIFO order. 460 * <li>The ordering of lock reacquisition for threads returning 461 * from waiting methods is the same as for threads initially 463 * but for <em>fair</em> locks favors those threads that have bee [all...] |
/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/core/include/utils/ |
ProcessCallStack.h | 32 // Collect/print the call stack (function, file, line) traces for all threads in a process. 41 // Immediately collect the stack traces for all threads. 57 // Get the number of threads whose stack traces were collected.
|
/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 );
|
test_pthread_once.c | 65 pthread_t threads[N_THREADS]; local 69 if (pthread_create( &threads[nn], NULL, thread_function, (void*)(long int)nn) < 0) { 76 if (pthread_join(threads[nn], NULL)) {
|
/external/chromium_org/third_party/icu/source/test/threadtest/ |
threadtest.cpp | 32 // Windows specific code for starting threads 77 // UNIX specific code for starting threads 147 // that is shared by all threads. 149 // During the test, the threads will access this info without 172 // The main program monitors the threads by looking 198 UMTX gStopMutex; // Lets main thread suspend test threads. 200 // worker threads and the main thread 235 else if (strcmp(argv[argnum], "-threads") == 0) 288 fprintf(stderr, "usage: threadtest [-threads nnn] [-time nnn] [-quiet] [-verbose] test-name\n" 291 " -threads nnn Number of threads. Default is 2. \n [all...] |
/external/icu4c/test/threadtest/ |
threadtest.cpp | 33 // Windows specific code for starting threads 78 // UNIX specific code for starting threads 148 // that is shared by all threads. 150 // During the test, the threads will access this info without 173 // The main program monitors the threads by looking 199 UMTX gStopMutex; // Lets main thread suspend test threads. 201 // worker threads and the main thread 236 else if (strcmp(argv[argnum], "-threads") == 0) 289 fprintf(stderr, "usage: threadtest [-threads nnn] [-time nnn] [-quiet] [-verbose] test-name\n" 292 " -threads nnn Number of threads. Default is 2. \n [all...] |
/external/chromium_org/tools/telemetry/telemetry/core/timeline/ |
trace_event_importer_unittest.py | 47 self.assertEqual(1, len(p.threads)) 48 t = p.threads[53] 94 t = processes[0].threads[1] 114 self.assertEqual(1, len(p.threads)) 115 t = p.threads[53] 135 t = m.GetAllProcesses()[0].threads[1] 168 t = p.threads[1] 186 t = p.threads[1] 209 t = m.GetAllProcesses()[0].threads[1] 221 # Slice that begins before min and ends after max of the other threads [all...] |
/art/runtime/gc/collector/ |
garbage_collector.cc | 74 ATRACE_BEGIN("Application threads suspended"); 91 ATRACE_BEGIN("Suspending mutator threads"); 94 ATRACE_BEGIN("All mutator threads suspended"); 98 ATRACE_BEGIN("Resuming mutator threads");
|
/bionic/libc/kernel/arch-mips/asm/ |
hardirq.h | 21 #include <linux/threads.h>
|
/bionic/libc/kernel/common/linux/ |
percpu_counter.h | 24 #include <linux/threads.h>
|
/development/ndk/platforms/android-3/include/linux/ |
kernel_stat.h | 17 #include <linux/threads.h>
|
/development/ndk/platforms/android-9/arch-mips/include/asm/ |
hardirq.h | 21 #include <linux/threads.h>
|
/device/generic/goldfish/opengl/system/OpenglSystemCommon/ |
ThreadInfo.cpp | 17 #include "cutils/threads.h"
|
/device/generic/goldfish/opengl/tests/gles_android_wrapper/ |
ThreadInfo.cpp | 17 #include "cutils/threads.h"
|
/external/chromium/chrome/browser/sync/engine/ |
http_post_provider_factory.h | 28 // multiple threads to serve network requests.
|
/external/chromium-trace/trace-viewer/src/cc/ |
raster_task_slice_view_test.js | 17 var rasterTask = p.threads[1].sliceGroup.slices.filter(function(slice) {
|
/external/chromium_org/android_webview/browser/ |
scoped_allow_wait_for_legacy_web_view_api.h | 12 // thread must block waiting on other threads e.g. to obtain a synchronous
|