HomeSort by relevance Sort by last modified time
    Searched refs:Threads (Results 1 - 25 of 67) sorted by null

1 2 3

  /external/volley/src/main/java/com/android/volley/toolbox/
Threads.java 5 final class Threads {
6 private Threads() {}
  /art/test/1934-jvmti-signal-thread/src/art/
Threads.java 19 public class Threads {
Test1934.java 85 Threads.stopThread(target, new Error("AWESOME"));
104 Threads.interruptThread(target);
135 Threads.stopThread(target, new Error("AWESOME"));
162 Threads.interruptThread(target);
191 () -> { Threads.stopThread(target, new Error("AWESOME")); });
231 Threads.stopThread(target, new Error("AWESOME!"));
254 Threads.interruptThread(target);
270 Threads.stopThread(target, new Error("AWESOME!"));
287 Threads.interruptThread(target);
  /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); \
  /cts/tests/tests/telephonyprovider/src/android/telephonyprovider/cts/
ThreadsTest.java 40 contentResolver.delete(Telephony.Threads.CONTENT_URI, null, null);
48 long threadId1 = Telephony.Threads.getOrCreateThreadId(mContext, destination1);
63 long threadId2 = Telephony.Threads.getOrCreateThreadId(mContext, destination2);
  /external/lzma/C/Util/Lzma/
makefile 17 $O\Threads.obj \
  /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/
JmhAlpnBenchmark.java 28 import org.openjdk.jmh.annotations.Threads;
35 @Threads(1)
JmhCipherEncryptBenchmark.java 27 import org.openjdk.jmh.annotations.Threads;
35 @Threads(1)
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;
36 @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/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
ThreadPool.cpp 29 // Create ThreadCount threads that will loop forever, wait on QueueCondition
31 Threads.reserve(ThreadCount);
33 Threads.emplace_back([&] {
73 // Wait for all threads to complete and the queue to be empty
76 // any active threads might be modifying the Tasks queue, and this would be a
99 // The destructor joins all threads, waiting for completion.
106 for (auto &Worker : Threads)
114 // No threads are launched, issue a warning if ThreadCount is not 0
119 << " threads, but LLVM_ENABLE_THREADS has been turned off\n";
  /device/linaro/bootloader/edk2/BaseTools/Source/C/LzmaCompress/
Makefile 31 $(SDK_C)\Threads.obj
  /external/lzma/C/Util/LzmaLib/
makefile 19 $O\Threads.obj \
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/dsymutil/
LinkUtils.h 51 /// Number of threads.
52 unsigned Threads = 1;
  /external/vogar/src/vogar/target/junit/
TimeoutAndAbortRunRule.java 30 import vogar.util.Threads;
38 Threads.daemonThreadFactory(getClass().getName()));
  /external/boringssl/src/crypto/
refcount_test.cc 48 TEST(RefCountTest, Threads) {
  /external/lzma/CPP/7zip/Bundles/LzmaCon/
makefile 55 $O\Threads.obj \
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
ThreadPool.h 33 /// threads.
35 /// The pool keeps a vector of threads alive, waiting on a condition variable
42 /// Construct a pool with the number of threads found by
46 /// Construct a pool of \p ThreadCount threads
49 /// Blocking destructor: the pool will wait for all the threads to complete.
68 /// Blocking wait for all the threads to complete and the queue to be empty.
77 /// Threads in flight
78 std::vector<llvm::thread> Threads;

Completed in 1901 milliseconds

1 2 3