HomeSort by relevance Sort by last modified time
    Searched refs:threads (Results 201 - 225 of 546) sorted by null

1 2 3 4 5 6 7 891011>>

  /frameworks/base/include/media/stagefright/foundation/
ALooper.h 27 #include <utils/threads.h>
  /frameworks/base/include/private/media/
AudioTrackShared.h 23 #include <utils/threads.h>
  /frameworks/base/include/ui/
FramebufferNativeWindow.h 25 #include <utils/threads.h>
GraphicBufferAllocator.h 27 #include <utils/threads.h>
  /frameworks/base/libs/hwui/
PathCache.cpp 19 #include <utils/threads.h>
  /frameworks/base/media/libmediaplayerservice/
MetadataRetrieverClient.h 22 #include <utils/threads.h>
  /frameworks/base/media/libstagefright/include/
HTTPBase.h 24 #include <utils/threads.h>
MPEG2PSExtractor.h 23 #include <utils/threads.h>
MPEG2TSExtractor.h 23 #include <utils/threads.h>
TimedEventQueue.h 25 #include <utils/threads.h>
  /frameworks/base/media/libstagefright/matroska/
MatroskaExtractor.h 23 #include <utils/threads.h>
  /frameworks/base/media/libstagefright/mpeg2ts/
AnotherPacketSource.h 23 #include <utils/threads.h>
  /frameworks/base/tools/aapt/
Main.h 10 #include <utils/threads.h>
  /frameworks/media/libvideoeditor/lvpp/
DummyAudioSource.h 22 #include <utils/threads.h>
VideoEditorAudioPlayer.h 24 #include <utils/threads.h>
VideoEditorSRC.h 20 #include <utils/threads.h>
  /hardware/ti/omap4xxx/camera/
CameraProperties.cpp 25 #include <utils/threads.h>
  /libcore/luni/src/test/java/libcore/java/net/
ConcurrentCloseTest.java 127 // We want to test that we unblock *all* the threads blocked on a socket, not just one.
131 final ArrayList<Thread> threads = new ArrayList<Thread>(); local
149 threads.add(t);
151 for (Thread t : threads) {
155 for (Thread t : threads) {
  /packages/apps/Mms/tests/src/com/android/mms/
RecyclerTest.java 26 import android.provider.Telephony.Threads;
43 * Bang on the recycler and test it getting called simultaneously from two different threads
51 * Bang on the recycler and test it getting called simultaneously from two different threads
68 Threads.CONTENT_URI.buildUpon().appendQueryParameter("simple", "true").build();
70 Threads._ID, Threads.DATE, Threads.MESSAGE_COUNT, Threads.RECIPIENT_IDS,
71 Threads.SNIPPET, Threads.SNIPPET_CHARSET, Threads.READ, Threads.ERROR
241 ArrayList<Thread> threads = new ArrayList<Thread>(THREAD_COUNT); local
    [all...]
  /sdk/emulator/qtools/
dmtrace.h 57 std::vector<ThreadRecord*> *threads; member in class:DmTrace
  /system/core/libcutils/
threads.c 1 /* libs/cutils/threads.c
17 #include <cutils/threads.h>
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
ThreadGroupTest.java 273 assertTrue("Can't destroy a ThreadGroup that has threads", passed);
290 "Should be able to destroy a ThreadGroup that has no threads",
401 // wipeSideEffectThreads destroy all side effect of threads created in
405 fail("wipe threads in test_list() not successful");
840 // Give the threads a chance to die.
846 private Thread[] threads(ThreadGroup parent) { method in class:ThreadGroupTest
893 Thread[] threads = threads(aGroup); local
894 for (Thread t : threads) {
910 Thread[] threads = threads(aGroup) local
    [all...]
  /system/core/toolbox/
top.c 87 static int max_procs, delay, iterations, threads; variable
161 if (!strcmp(argv[i], "-t")) { threads = 1; continue; }
171 if (threads && proc_cmp == &proc_thr_cmp) {
172 fprintf(stderr, "Sorting by threads per thread makes no sense!\n");
236 new_procs = calloc(INIT_PROCS * (threads ? THREAD_MULT : 1), sizeof(struct proc_info *));
237 num_new_procs = INIT_PROCS * (threads ? THREAD_MULT : 1);
254 if (!threads) {
289 if (threads) {
313 if (!threads)
458 if (!threads)
    [all...]
  /external/bluetooth/glib/tests/
slice-test.c 275 GThread **threads; local
280 g_print ("Starting %d threads allocating random blocks <= %u bytes with seed=%s using %s%s\n", n_threads, prime_size, strseed, mode, emode);
282 threads = g_alloca (sizeof(GThread*) * n_threads);
285 threads[i] = g_thread_create_full (test_sliced_mem_thread, seedp, 0, TRUE, FALSE, 0, NULL);
290 threads[i] = g_thread_create_full (test_memchunk_thread, seedp, 0, TRUE, FALSE, 0, NULL);
293 g_thread_join (threads[i]);
  /frameworks/base/tests/CoreTests/android/core/
TestWebServer.java 41 /* Where worker threads stand idle */
42 Vector threads = new Vector(); field in class:TestWebServer
44 /* List of all active worker threads */
50 /* max # worker threads */
216 * The AcceptThread is responsible for initiating worker threads
264 synchronized (threads) {
265 if (threads.isEmpty()) {
271 w = (Worker) threads.elementAt(0);
272 threads.removeElementAt(0);
298 // Stop worker threads from continuin
    [all...]

Completed in 1188 milliseconds

1 2 3 4 5 6 7 891011>>