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

1 2 3

  /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;
Android.mk 9 Threads.cpp \
  /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/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;
74 " UPDATE threads SET read = " +
78 " AND " + Sms.THREAD_ID + " = threads._id)" +
82 " WHERE threads._id = new." + Sms.THREAD_ID + "; ";
85 " UPDATE threads SET message_count = " +
86 " (SELECT COUNT(sms._id) FROM sms LEFT JOIN threads " +
87 " ON threads._id = " + Sms.THREAD_ID +
90 " (SELECT COUNT(pdu._id) FROM pdu LEFT JOIN threads " +
91 " ON threads._id = " + Mms.THREAD_ID +
95 " WHERE threads._id = new.thread_id; "
    [all...]
TelephonyBackupAgent.java 188 Telephony.Threads._ID,
189 Telephony.Threads.RECIPIENT_IDS
712 jsonWriter.name(Telephony.Threads.ARCHIVED).value(true);
719 new String[] { Telephony.Threads.ARCHIVED };
723 Uri.Builder builder = Telephony.Threads.CONTENT_URI.buildUpon();
770 case Telephony.Threads.ARCHIVED:
    [all...]
  /external/lzma/CPP/7zip/Bundles/LzmaCon/
makefile 55 $O\Threads.obj \
  /external/google-breakpad/src/client/windows/unittests/
dump_analysis.cc 85 if (!HasMemory(thread_list->Threads[i].Teb))
103 if (!HasMemory(thread_list->Threads[0].Teb, &teb))
  /external/vogar/src/vogar/tasks/
TaskQueue.java 28 import vogar.util.Threads;
67 ExecutorService runners = Threads.threadPerCpuExecutor(console, "TaskQueue");
  /frameworks/av/services/audioflinger/
Android.mk 25 Threads.cpp \
  /packages/apps/Messaging/src/com/android/messaging/sms/
MmsSmsUtils.java 134 * Helper functions for the "threads" table used by MMS and SMS.
136 public static final class Threads implements android.provider.Telephony.ThreadsColumns {
144 private Threads() {
  /external/llvm/include/llvm/Support/
ThreadPool.h 47 /// threads.
49 /// The pool keeps a vector of threads alive, waiting on a condition variable
69 /// Construct a pool of \p ThreadCount threads
72 /// Blocking destructor: the pool will wait for all the threads to complete.
104 /// Blocking wait for all the threads to complete and the queue to be empty.
113 /// Threads in flight
114 std::vector<llvm::thread> Threads;
  /external/lzma/CPP/7zip/UI/Console/
makefile 66 $O\Threads.obj \
  /packages/apps/Contacts/src/com/android/contacts/compat/
TelephonyThreadsCompat.java 51 return Telephony.Threads.getOrCreateThreadId(context, recipient);
78 * Copied from {@link Telephony.Threads#getOrCreateThreadId(Context, String)}

Completed in 914 milliseconds

1 2 3