HomeSort by relevance Sort by last modified time
    Searched refs:Threads (Results 26 - 50 of 63) sorted by null

12 3

  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/i18n/
messages.properties 48 DeviceView_Threads=Update Threads
49 DeviceView_Threads_Tooltip=Update Threads
  /system/extras/memory_replay/
main.cpp 34 #include "Threads.h"
72 Threads threads(&pointers, max_threads);
74 printf("Maximum threads available: %zu\n", threads.max_threads());
103 Thread* thread = threads.FindThread(tid);
105 thread = threads.CreateThread(tid);
119 // Make sure that any other threads doing allocations are complete
122 threads.WaitForAllToQuiesce();
130 threads.Finish(thread)
    [all...]
  /cts/libs/vogar-expect/src/vogar/commands/
Command.java 41 import vogar.util.Threads;
188 ExecutorService executor = Threads.fixedThreadsExecutor("command", 1);
  /frameworks/av/services/audioflinger/
Android.mk 25 Threads.cpp \
  /external/lzma/CPP/7zip/Bundles/Format7zExtractR/
makefile 93 $O\Threads.obj \
  /external/lzma/CPP/7zip/Bundles/Format7zR/
makefile 112 $O\Threads.obj \
  /external/lzma/CPP/7zip/Bundles/SFXCon/
makefile 119 $O\Threads.obj \
  /external/lzma/CPP/7zip/Bundles/SFXSetup/
makefile 103 $O\Threads.obj \
  /system/core/libutils/
Android.mk 33 Threads.cpp \
  /packages/providers/TelephonyProvider/tests/src/com/android/providers/telephony/
TelephonyBackupAgentTest.java     [all...]
  /packages/providers/TelephonyProvider/src/com/android/providers/telephony/
MmsSmsProvider.java 40 import android.provider.Telephony.Threads;
115 * the name of the table that is used to store the conversation threads.
117 static final String TABLE_THREADS = "threads";
145 // These are all the columns that appear in the "threads" table.
255 // URI for deleting obsolete threads.
345 selection, Threads.TYPE + "=" + threadType);
644 values.put(Threads.TYPE, Threads.BROADCAST_THREAD);
657 "SELECT _id FROM threads " + "WHERE recipient_ids=?";
663 * Threads.getThreadId to access this information
    [all...]
MmsProvider.java 44 import android.provider.Telephony.Threads;
404 finalValues.put(Mms.THREAD_ID, Threads.getOrCreateThreadId(getContext(), address));
    [all...]
SmsProvider.java 40 import android.provider.Telephony.Threads;
560 values.put(Sms.THREAD_ID, Threads.getOrCreateThreadId(
658 // Don't update threads unless something changed.
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapContent.java 32 import android.provider.Telephony.Threads;
224 Threads._ID,
225 Threads.DATE,
226 Threads.SNIPPET,
227 Threads.SNIPPET_CHARSET,
228 Threads.READ,
229 Threads.RECIPIENT_IDS
253 MMS_SMS_THREAD_COL_ID = projection.indexOf(Threads._ID);
254 MMS_SMS_THREAD_COL_DATE = projection.indexOf(Threads.DATE);
255 MMS_SMS_THREAD_COL_SNIPPET = projection.indexOf(Threads.SNIPPET)
    [all...]
  /external/google-benchmark/include/benchmark/
benchmark_api.h 123 In a multithreaded test, it is guaranteed that none of the threads will start
139 BENCHMARK(BM_MultiThreaded)->Threads(4);
250 // function will block until all threads have made their ith call.
264 // function will block until all threads have made their ith call.
361 // Index of the executing thread. Values from [0, threads).
363 // Number of threads concurrently executing the benchmark.
364 const int threads; member in class:benchmark::State
416 // Threads, etc.
423 // If a particular benchmark is I/O bound, runs multiple threads internally or
431 // in multiple threads. This may be useful when measuring the scalin
    [all...]
  /external/google-benchmark/src/
benchmark.cc 58 "used by all threads that make up the test. For real-time "
61 "threads.");
211 // How many threads have called Finalize()
216 int entered_; // Number of threads that have entered this barrier
226 // Enter the barrier and wait until all other threads have also
233 // Wait for all threads to enter
266 int threads; // Number of concurrent threads to use member in struct:benchmark::internal::Benchmark::Instance
303 void Threads(int t);
377 instance.threads = num_threads
    [all...]
  /external/google-benchmark/test/
benchmark_test.cc 80 BENCHMARK(BM_CalculatePi)->Threads(8);
155 int thread_size = size / state.threads;
166 // do not overlap between threads.
  /external/lzma/CPP/7zip/Bundles/Alone7z/
makefile 142 $O\Threads.obj \
  /external/lzma/CPP/7zip/Bundles/SFXWin/
makefile 138 $O\Threads.obj \
  /packages/apps/Messaging/src/com/android/messaging/datamodel/action/
ReceiveSmsMessageAction.java 83 final long threadId = MmsSmsUtils.Threads.getOrCreateThreadId(context, address);
  /packages/services/Mms/src/com/android/mms/service/
MmsService.java 84 // The default number of threads allowed to run MMS requests in each queue
275 Telephony.Threads.CONTENT_URI, conversationId);
647 private static final String ARCHIVE_CONVERSATION_SELECTION = Telephony.Threads._ID + "=?";
650 values.put(Telephony.Threads.ARCHIVED, archived ? 1 : 0);
657 Telephony.Threads.CONTENT_URI,
    [all...]
  /external/protobuf/gtest/
CMakeLists.txt 28 # Language "C" is required for find_package(Threads).
59 find_package(Threads)
  /packages/apps/Bluetooth/tests/src/com/android/bluetooth/tests/
BluetoothMapContentTest.java 26 import android.provider.Telephony.Threads;
815 Uri uri = Threads.CONTENT_URI.buildUpon().appendQueryParameter("simple", "true").build();
817 if (D) Log.d(TAG, "**** Dump of Threads table ****\nUri: " + uri);
824 Log.d(TAG,"Threads:");
826 String ids = c.getString(c.getColumnIndex(Threads.RECIPIENT_IDS));
842 * in the Threads table, hence are to be used to map from an id to
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/sms/
MmsUtils.java 38 import android.provider.Telephony.Threads;
717 Threads.CONTENT_URI.buildUpon().appendQueryParameter("simple", "true").build();
720 Threads._ID,
721 Threads.RECIPIENT_IDS
    [all...]
  /frameworks/opt/telephony/src/java/android/provider/
Telephony.java     [all...]

Completed in 992 milliseconds

12 3