/external/valgrind/main/gdbserver_tests/ |
mcinfcallWSRU.stdinB.gdb | 6 # ensure all threads are known 13 # Here the 4 threads have been started.
|
/frameworks/av/media/libnbaio/ |
README.txt | 13 no mutexes, so safe to use between SCHED_NORMAL and SCHED_FIFO threads 29 no mutexes, so safe to use between SCHED_NORMAL and SCHED_FIFO threads
|
/ndk/sources/cxx-stl/gabi++/tests/ |
test_guard.cpp | 2 * works correctly, even in the presence of several threads. 42 /* Create all the threads */
|
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/ |
PriorityThreadFactory.java | 24 * A thread factory that creates threads with a given thread priority. 33 * @param priority The thread priority of the threads created by this factory.
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/ |
tags.h | 45 * optionally using a user-specified number of threads. */ 52 /** @brief Default constructor. Use default number of threads. */ 58 /** @brief Default constructor. Recommend number of threads to use. 59 * @param num_threads Desired number of threads. */ 65 /** @brief Find out desired number of threads. 66 * @return Desired number of threads. */ 75 /** @brief Set the desired number of threads. 76 * @param num_threads Desired number of threads. */
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/nfsd/ |
stats.h | 25 unsigned int th_cnt; /* number of available threads */ 27 * of available threads were in use */
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/nfsd/ |
stats.h | 25 unsigned int th_cnt; /* number of available threads */ 27 * of available threads were in use */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/nfsd/ |
stats.h | 25 unsigned int th_cnt; /* number of available threads */ 27 * of available threads were in use */
|
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/parallel/ |
tags.h | 45 * optionally using a user-specified number of threads. */ 52 /** @brief Default constructor. Use default number of threads. */ 56 /** @brief Default constructor. Recommend number of threads to use. 57 * @param __num_threads Desired number of threads. */ 61 /** @brief Find out desired number of threads. 62 * @return Desired number of threads. */ 71 /** @brief Set the desired number of threads. 72 * @param __num_threads Desired number of threads. */
|
/sdk/eclipse/plugins/com.android.ide.eclipse.ddms/ |
plugin.properties | 7 view.name.Threads = Threads
|
/external/chromium_org/third_party/re2/re2/testing/ |
dfa_test.cc | 17 DEFINE_int32(threads, 4, "number of threads"); 58 // Build the DFA simultaneously in a bunch of threads. 65 vector<BuildThread*> threads; local 69 threads.push_back(t); 72 threads[j]->Start(); 74 threads[j]->Join(); 75 delete threads[j]; 285 // Run the search simultaneously in a bunch of threads. 292 vector<SearchThread*> threads; local [all...] |
/external/regex-re2/re2/testing/ |
dfa_test.cc | 17 DEFINE_int32(threads, 4, "number of threads"); 58 // Build the DFA simultaneously in a bunch of threads. 65 vector<BuildThread*> threads; local 69 threads.push_back(t); 72 threads[j]->Start(); 74 threads[j]->Join(); 75 delete threads[j]; 285 // Run the search simultaneously in a bunch of threads. 292 vector<SearchThread*> threads; local [all...] |
/art/runtime/ |
thread_pool.h | 65 // Returns the number of threads in the thread pool. 93 // Provides a way to bound the maximum number of worker threads, threads must be less the the 95 void SetMaxActiveWorkers(size_t threads); 115 // How many worker threads are waiting on the condition.
|
/external/chromium/base/threading/ |
simple_thread.cc | 93 DCHECK(threads_.empty()) << "Start() called with outstanding threads."; 102 DCHECK(!threads_.empty()) << "JoinAll() called with no outstanding threads."; 104 // Tell all our threads to quit their worker loop. 107 // Join and destroy all the worker threads. 139 // Signal to any other threads that we're currently out of work.
|
/external/chromium_org/base/threading/ |
simple_thread.cc | 100 DCHECK(threads_.empty()) << "Start() called with outstanding threads."; 109 DCHECK(!threads_.empty()) << "JoinAll() called with no outstanding threads."; 111 // Tell all our threads to quit their worker loop. 114 // Join and destroy all the worker threads. 146 // Signal to any other threads that we're currently out of work.
|
/external/chromium_org/third_party/sqlite/src/test/ |
thread001.test | 25 # 1) All threads use the same database handle. 26 # 2) All threads use their own database handles. 27 # 3) All threads use their own database handles, shared-cache is enabled. 108 # Kick off $::NTHREAD threads: 115 # Wait for all threads to finish, then check they all returned "OK".
|
/external/chromium_org/tools/telemetry/telemetry/core/timeline/ |
inspector_importer_unittest.py | 117 threads = process.threads 118 self.assertEquals(2, len(threads)) 119 renderer_thread = threads[0] 123 second_thread = threads['2']
|
/external/linux-tools-perf/util/ |
evlist.c | 32 struct thread_map *threads) 39 perf_evlist__set_maps(evlist, cpus, threads); 43 struct thread_map *threads) 48 perf_evlist__init(evlist, cpus, threads); 103 int nfds = evlist->cpus->nr * evlist->threads->nr * evlist->nr_entries; 261 evlist->nr_mmaps = evlist->threads->nr; 288 for (thread = 0; thread < evlist->threads->nr; thread++) { 326 for (thread = 0; thread < evlist->threads->nr; thread++) { 351 for (thread = 0; thread < evlist->threads->nr; thread++) { 381 const struct thread_map *threads = evlist->threads local 439 const struct thread_map *threads = evlist->threads; local [all...] |
/frameworks/wilhelm/src/ |
ThreadPool.h | 50 /** \brief ThreadPool manages a pool of worker threads that execute Closures */ 58 unsigned mWaitingNotFull; ///< Number of client threads waiting to enqueue 59 unsigned mWaitingNotEmpty; ///< Number of worker threads waiting to dequeue 61 unsigned mMaxThreads; ///< Number of worker threads 67 pthread_t *mThreadArray; ///< The worker threads
|
/libcore/luni/src/main/java/java/util/concurrent/ |
CyclicBarrier.java | 12 * A synchronization aid that allows a set of threads to all wait for 14 * useful in programs involving a fixed sized party of threads that 16 * <em>cyclic</em> because it can be re-used after the waiting threads 21 * arrives, but before any threads are released. 76 * it is executed, then any of the threads in the party could execute that 89 * other threads waiting at that barrier point will also leave 99 * corresponding {@code await()} in other threads. 110 * is reset. There can be many generations associated with threads 112 * may be allocated to waiting threads - but only one of these 234 * given number of parties (threads) are waiting upon it, and whic [all...] |
/libcore/luni/src/main/native/ |
AsynchronousSocketCloseMonitor.cpp | 27 * We use an intrusive doubly-linked list to keep track of blocked threads. 30 * Waking potentially-blocked threads when a socket is closed is O(n) in the total number of 31 * blocked threads (not the number of threads actually blocked on the socket in question). 51 // Ensure that the signal we send interrupts system calls but doesn't kill threads.
|
/external/chromium/base/synchronization/ |
condition_variable.h | 7 // several threads wait for an event, as is common with a thread pool managed 10 // used in Chrome in the DNS prefetching system to notify worker threads that 34 // USAGE NOTE 2: Broadcast() frees up all waiting threads at once, 37 // approach to getting a lot of threads out of Wait() is to have each 43 // done, and leaves no sleeping threads... and performance is less 47 // threads that were waiting when the request was made will indeed 50 // a while while waiting threads come around). This implementation 52 // that all threads get signaled by Broadcast(). 97 // Broadcast() revives all waiting threads. 165 // Events that threads are blocked on [all...] |
/external/chromium/testing/gtest/test/ |
gtest_stress_test.cc | 33 // used in a large number of threads concurrently. 62 // How many threads to create? 105 // RecordProperty() should interact safely with other threads as well. 126 // Tests using SCOPED_TRACE() and Google Test assertions in many threads 130 scoped_ptr<ThreadWithParam<int> > threads[kThreadCount]; local 133 threads[i].reset(new ThreadWithParam<int>(&ManyAsserts, 139 // Blocks until all the threads are done. 141 threads[i]->Join(); 206 // This statement should succeed, because failures in all threads are 225 // This statement should succeed, because failures in all threads ar [all...] |
/external/chromium_org/testing/gtest/test/ |
gtest_stress_test.cc | 33 // used in a large number of threads concurrently. 61 // How many threads to create? 104 // RecordProperty() should interact safely with other threads as well. 125 // Tests using SCOPED_TRACE() and Google Test assertions in many threads 129 scoped_ptr<ThreadWithParam<int> > threads[kThreadCount]; local 132 threads[i].reset(new ThreadWithParam<int>(&ManyAsserts, 138 // Blocks until all the threads are done. 140 threads[i]->Join(); 205 // This statement should succeed, because failures in all threads are 224 // This statement should succeed, because failures in all threads ar [all...] |
/external/gtest/test/ |
gtest_stress_test.cc | 33 // used in a large number of threads concurrently. 62 // How many threads to create? 105 // RecordProperty() should interact safely with other threads as well. 126 // Tests using SCOPED_TRACE() and Google Test assertions in many threads 130 scoped_ptr<ThreadWithParam<int> > threads[kThreadCount]; local 133 threads[i].reset(new ThreadWithParam<int>(&ManyAsserts, 139 // Blocks until all the threads are done. 141 threads[i]->Join(); 206 // This statement should succeed, because failures in all threads are 225 // This statement should succeed, because failures in all threads ar [all...] |