/system/extras/memory_replay/ |
Threads.h | 26 class Threads { 28 Threads(Pointers* pointers, size_t max_threads); 29 virtual ~Threads();
|
Threads.cpp | 31 #include "Threads.h" 48 Threads::Threads(Pointers* pointers, size_t max_threads) 56 err(1, "Failed to map in memory for Threads: map size %zu, max threads %zu\n", 68 Threads::~Threads() { 76 Thread* Threads::CreateThread(pid_t tid) { 78 err(1, "Too many threads created, current max %zu.\n", num_threads_); 82 err(1, "No empty entries found, current max %zu, num threads %zu\n" [all...] |
Thread.h | 63 friend class Threads;
|
/packages/apps/Messaging/src/com/android/messaging/datamodel/action/ |
LogTelephonyDatabaseAction.java | 24 import android.provider.Telephony.Threads; 37 Threads._ID, 38 Threads.DATE, 39 Threads.MESSAGE_COUNT, 40 Threads.RECIPIENT_IDS, 41 Threads.SNIPPET, 42 Threads.SNIPPET_CHARSET, 43 Threads.READ, 44 Threads.ERROR, 45 Threads.HAS_ATTACHMENT } [all...] |
/external/eigen/bench/tensors/ |
contraction_benchmarks_cpu.cc | 7 #define CREATE_THREAD_POOL(threads) \ 8 Eigen::ThreadPool pool(threads); \ 9 Eigen::ThreadPoolDevice device(&pool, threads); 12 // Contractions for number of threads ranging from 1 to 32 15 static void BM_##Contraction##_##D1##x##D2##x##D3(int iters, int Threads) { \ 17 CREATE_THREAD_POOL(Threads); \
|
/external/lzma/C/Util/Lzma/ |
makefile | 17 $O\Threads.obj \
|
/system/extras/memory_replay/tests/ |
ThreadsTest.cpp | 22 #include "Threads.h" 27 Threads threads(&pointers, 1); 28 Thread* thread = threads.CreateThread(900); 30 ASSERT_EQ(1U, threads.num_threads()); 32 Thread* found_thread = threads.FindThread(900); 39 threads.Finish(thread); 41 ASSERT_EQ(0U, threads.num_threads()); 47 Threads threads(&pointers, 1) [all...] |
/cts/libs/vogar-expect/src/vogar/util/ |
Threads.java | 26 * Utility methods for working with threads. 28 public final class Threads { 29 private Threads() {}
|
/external/conscrypt/benchmark-jmh/src/jmh/java/org/conscrypt/ |
JmhEngineHandshakeBenchmark.java | 44 import org.openjdk.jmh.annotations.Threads; 51 @Threads(1)
|
JmhEngineWrapBenchmark.java | 45 import org.openjdk.jmh.annotations.Threads; 52 @Threads(1)
|
JmhClientSocketBenchmark.java | 29 import org.openjdk.jmh.annotations.Threads; 37 @Threads(1)
|
JmhServerSocketBenchmark.java | 29 import org.openjdk.jmh.annotations.Threads; 37 @Threads(1)
|
/external/vogar/src/vogar/target/ |
TestActivity.java | 30 import vogar.util.Threads; 66 ExecutorService executor = Threads.fixedThreadsExecutor(log, "testactivity", 1);
|
/external/vogar/src/vogar/util/ |
Threads.java | 27 * Utility methods for working with threads. 29 public final class Threads { 30 private Threads() {}
|
/external/okhttp/okio/benchmarks/src/main/java/com/squareup/okio/benchmarks/ |
BufferPerformanceBench.java | 40 import org.openjdk.jmh.annotations.Threads; 90 * Benchmark threads do not explicitly communicate between each other (except to sync 99 @Threads(1) 105 @Threads(2) 111 @Threads(4) 117 @Threads(8) 123 @Threads(16) 129 @Threads(32)
|
/external/llvm/lib/Support/ |
ThreadPool.cpp | 28 // Create ThreadCount threads that will loop forever, wait on QueueCondition 30 Threads.reserve(ThreadCount); 32 Threads.emplace_back([&] { 76 // Wait for all threads to complete and the queue to be empty 79 // any active threads might be modifying the Tasks queue, and this would be a 102 // The destructor joins all threads, waiting for completion. 109 for (auto &Worker : Threads) 117 // No threads are launched, issue a warning if ThreadCount is not 0 122 << " threads, but LLVM_ENABLE_THREADS has been turned off\n";
|
/external/lzma/C/Util/LzmaLib/ |
makefile | 19 $O\Threads.obj \
|
/external/vogar/src/vogar/target/junit/ |
TimeoutAndAbortRunRule.java | 30 import vogar.util.Threads; 38 Threads.daemonThreadFactory(getClass().getName()));
|
/packages/providers/TelephonyProvider/src/com/android/providers/telephony/ |
MmsSmsDatabaseHelper.java | 38 import android.provider.Telephony.Threads; 75 " UPDATE threads SET read = " + 79 " AND " + Sms.THREAD_ID + " = threads._id)" + 83 " WHERE threads._id = new." + Sms.THREAD_ID + "; "; 86 " UPDATE threads SET message_count = " + 87 " (SELECT COUNT(sms._id) FROM sms LEFT JOIN threads " + 88 " ON threads._id = " + Sms.THREAD_ID + 91 " (SELECT COUNT(pdu._id) FROM pdu LEFT JOIN threads " + 92 " ON threads._id = " + Mms.THREAD_ID + 96 " WHERE threads._id = new.thread_id; " [all...] |
/external/lzma/CPP/7zip/Bundles/LzmaCon/ |
makefile | 55 $O\Threads.obj \
|
/prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Support/ |
ThreadPool.h | 32 /// threads. 34 /// The pool keeps a vector of threads alive, waiting on a condition variable 54 /// Construct a pool of \p ThreadCount threads 57 /// Blocking destructor: the pool will wait for all the threads to complete. 89 /// Blocking wait for all the threads to complete and the queue to be empty. 98 /// Threads in flight 99 std::vector<llvm::thread> Threads;
|
/prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Support/ |
ThreadPool.h | 32 /// threads. 34 /// The pool keeps a vector of threads alive, waiting on a condition variable 54 /// Construct a pool of \p ThreadCount threads 57 /// Blocking destructor: the pool will wait for all the threads to complete. 89 /// Blocking wait for all the threads to complete and the queue to be empty. 98 /// Threads in flight 99 std::vector<llvm::thread> Threads;
|
/prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Support/ |
ThreadPool.h | 32 /// threads. 34 /// The pool keeps a vector of threads alive, waiting on a condition variable 54 /// Construct a pool of \p ThreadCount threads 57 /// Blocking destructor: the pool will wait for all the threads to complete. 89 /// Blocking wait for all the threads to complete and the queue to be empty. 98 /// Threads in flight 99 std::vector<llvm::thread> Threads;
|
/prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/ |
ThreadPool.h | 32 /// threads. 34 /// The pool keeps a vector of threads alive, waiting on a condition variable 54 /// Construct a pool of \p ThreadCount threads 57 /// Blocking destructor: the pool will wait for all the threads to complete. 89 /// Blocking wait for all the threads to complete and the queue to be empty. 98 /// Threads in flight 99 std::vector<llvm::thread> Threads;
|
/prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Support/ |
ThreadPool.h | 32 /// threads. 34 /// The pool keeps a vector of threads alive, waiting on a condition variable 54 /// Construct a pool of \p ThreadCount threads 57 /// Blocking destructor: the pool will wait for all the threads to complete. 89 /// Blocking wait for all the threads to complete and the queue to be empty. 98 /// Threads in flight 99 std::vector<llvm::thread> Threads;
|