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

1 2 3 4 5

  /art/test/1934-jvmti-signal-thread/src/art/
Threads.java 19 public class Threads {
Test1934.java 63 Threads.stopThread(target, new Error("AWESOME"));
82 Threads.interruptThread(target);
113 Threads.stopThread(target, new Error("AWESOME"));
140 Threads.interruptThread(target);
169 () -> { Threads.stopThread(target, new Error("AWESOME")); });
209 Threads.stopThread(target, new Error("AWESOME!"));
232 Threads.interruptThread(target);
248 Threads.stopThread(target, new Error("AWESOME!"));
265 Threads.interruptThread(target);
  /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/
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";
  /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/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 \

Completed in 484 milliseconds

1 2 3 4 5