HomeSort by relevance Sort by last modified time
    Searched refs:Threads (Results 1 - 25 of 62) 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/llvm/lib/CodeGen/
ParallelCG.cpp 60 std::vector<thread> Threads;
64 // main thread, in order to avoid data races) and spinning up new threads
71 llvm::raw_pwrite_stream *ThreadOS = OSs[Threads.size()];
72 Threads.emplace_back(
92 for (thread &T : 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
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";
  /external/lzma/C/Util/LzmaLib/
makefile 19 $O\Threads.obj \
  /packages/providers/TelephonyProvider/src/com/android/providers/telephony/
MmsSmsDatabaseHelper.java 37 import android.provider.Telephony.Threads;
73 " UPDATE threads SET read = " +
77 " AND " + Sms.THREAD_ID + " = threads._id)" +
81 " WHERE threads._id = new." + Sms.THREAD_ID + "; ";
84 " UPDATE threads SET message_count = " +
85 " (SELECT COUNT(sms._id) FROM sms LEFT JOIN threads " +
86 " ON threads._id = " + Sms.THREAD_ID +
89 " (SELECT COUNT(pdu._id) FROM pdu LEFT JOIN threads " +
90 " ON threads._id = " + Mms.THREAD_ID +
94 " 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 \
  /cts/tests/app/src/android/app/cts/
NotificationManagerTest.java 24 import android.provider.Telephony.Threads;
101 final Intent intent = new Intent(Intent.ACTION_MAIN, Threads.CONTENT_URI);
  /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/target/junit/
JUnitRunner.java 33 import vogar.util.Threads;
49 Threads.daemonThreadFactory("testrunner"));
  /external/vogar/src/vogar/tasks/
TaskQueue.java 28 import vogar.util.Threads;
67 ExecutorService runners = Threads.threadPerCpuExecutor(console, "TaskQueue");
  /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 46 /// threads.
48 /// The pool keeps a vector of threads alive, waiting on a condition variable
68 /// Construct a pool of \p ThreadCount threads
71 /// Blocking destructor: the pool will wait for all the threads to complete.
103 /// Blocking wait for all the threads to complete and the queue to be empty.
112 /// Threads in flight
113 std::vector<llvm::thread> Threads;
  /external/lzma/CPP/7zip/UI/Console/
makefile 66 $O\Threads.obj \
  /packages/apps/ContactsCommon/src/com/android/contacts/common/compat/
TelephonyThreadsCompat.java 51 return Telephony.Threads.getOrCreateThreadId(context, recipient);
78 * Copied from {@link Telephony.Threads#getOrCreateThreadId(Context, String)}

Completed in 1087 milliseconds

1 2 3