HomeSort by relevance Sort by last modified time
    Searched refs:thread2 (Results 1 - 21 of 21) sorted by null

  /external/bluetooth/glib/glib/
gthreadprivate.h 30 # define g_system_thread_equal_simple(thread1, thread2) \
31 ((thread1).dummy_pointer == (thread2).dummy_pointer)
35 # define g_system_thread_equal_simple(thread1, thread2) \
36 (memcmp (&(thread1), &(thread2), GLIB_SIZEOF_SYSTEM_THREAD) == 0)
41 #define g_system_thread_equal(thread1, thread2) \
43 g_thread_functions_for_glib_use.thread_equal (&(thread1), &(thread2)) :\
44 g_system_thread_equal_simple((thread1), (thread2)))
gthread.h 113 gpointer thread2);
  /external/valgrind/main/drd/tests/
rwlock_race.c 38 pthread_t thread2; local
48 pthread_create(&thread2, 0, thread_func, 0);
50 pthread_join(thread2, 0);
  /dalvik/tests/033-class-init-deadlock/src/
Main.java 13 Thread thread1, thread2; local
17 thread2 = new Thread() { public void run() { new B(); } };
19 thread2.start();
25 thread2.interrupt();
  /libcore/luni/src/test/java/libcore/java/util/logging/
OldLogRecordTest.java 60 // Create and start the thread2
61 MockThread thread2 = new MockThread(); local
62 thread2.start();
64 thread2.join();
71 assertTrue(lr.getThreadID() != thread2.lr.getThreadID());
72 assertTrue(thread.lr.getThreadID() != thread2.lr.getThreadID());
  /external/chromium/base/
tools_sanity_unittest.cc 122 PlatformThread::Delegate *thread2 = local
126 PlatformThread::Create(0, thread2, &b);
131 delete thread2;
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
InetAddressThreadTest.java 140 threadsafeTestThread thread2 = new threadsafeTestThread("2", local
151 thread2.start();
156 thread2.join();
DatagramSocketTest.java 610 Thread thread2 = new Thread(runnable2, "DatagramSocket.receive2"); local
611 thread2.start();
615 } while (!thread2.isAlive());
631 } while (thread2.isAlive());
    [all...]
  /external/qemu/
qemu-thread.h 41 int qemu_thread_equal(QemuThread *thread1, QemuThread *thread2);
qemu-thread.c 184 int qemu_thread_equal(QemuThread *thread1, QemuThread *thread2)
186 return pthread_equal(thread1->thread, thread2->thread);
  /external/valgrind/main/exp-bbv/tests/amd64-linux/
clone_test.S 52 jz thread2 # if so, jump to thrad2
69 thread2: label
  /external/valgrind/main/exp-bbv/tests/x86-linux/
clone_test.S 52 jz thread2 # if so, jump to thrad2
69 thread2: label
  /frameworks/base/core/tests/coretests/src/android/content/pm/
PackageHelperTests.java 92 Thread thread2 = new Thread(r2); local
93 thread2.start();
  /external/chromium/base/synchronization/
lock_unittest.cc 195 MutexLockTestThread thread2(&lock, &value);
202 ASSERT_TRUE(PlatformThread::Create(0, &thread2, &handle2));
  /external/bluetooth/glib/tests/refcount/
closures.c 239 GThread *thread1, *thread2; local
258 thread2 = g_thread_create (thread2_main, closure, TRUE, NULL);
276 g_thread_join (thread2);
  /external/v8/test/cctest/
test-thread-termination.cc 235 LoopingThread thread2(i::Isolate::Current());
236 thread2.Start();
243 v8::V8::TerminateExecution(thread2.GetV8ThreadId());
246 thread2.Join();
test-api.cc     [all...]
  /external/bluetooth/glib/gthread/
gthread-posix.c 424 g_thread_equal_posix_impl (gpointer thread1, gpointer thread2)
426 return (pthread_equal (*(pthread_t*)thread1, *(pthread_t*)thread2) != 0);
  /libcore/luni/src/test/java/libcore/java/net/
OldDatagramSocketTest.java 901 Thread thread2 = new Thread(runnable2, "DatagramSocket.receive2"); local
    [all...]
  /dalvik/tools/dmtracedump/
TraceDump.c 898 static int compareThreads(const void* thread1, const void* thread2)
901 ((const ThreadEntry*) thread2)->threadId;
    [all...]
  /frameworks/base/services/audioflinger/
AudioFlinger.cpp 4953 MixerThread *thread2 = checkMixerThread_l(output2); local
    [all...]

Completed in 1349 milliseconds