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

1 2 3

  /art/test/144-static-field-sigquit/src/
Main.java 21 Thread thread2 = new Thread(new SynchronizedUse()); local
26 thread2.start();
29 thread2.join();
  /external/ltrace/testsuite/ltrace.main/
main-threaded.c 19 pthread_t thread2; local
22 pthread_create (&thread2, NULL, th_main, "bbb");
25 pthread_join (thread2, NULL);
  /external/valgrind/drd/tests/
rwlock_race.c 38 pthread_t thread2; local
48 pthread_create(&thread2, 0, thread_func, 0);
50 pthread_join(thread2, 0);
std_atomic.cpp 34 pthread_t thread2; local
44 err = pthread_create(&thread2, NULL, &func2, NULL);
51 err = pthread_join(thread2, NULL);
std_list.cpp 81 pthread_t thread2; local
89 err = pthread_create(&thread2, NULL, &func2, &instance2);
96 err = pthread_join(thread2, NULL);
  /art/test/033-class-init-deadlock/src/
Main.java 27 Thread thread1, thread2; local
31 thread2 = new Thread() { public void run() { new B(); } };
33 // Give thread1 a chance to start before starting thread2.
35 thread2.start();
41 thread2.interrupt();
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
MonitorTestCase.java 56 private TestThread<Monitor> thread2; field in class:MonitorTestCase
66 tearDownStack.addTearDown(thread2 = new TestThread<Monitor>(monitor, "TestThread #2"));
103 thread2.callAndAssertBlocks(enter());
105 thread2.assertPriorCallReturns(enter());
110 thread2.callAndAssertReturns(false, tryEnter());
112 thread2.callAndAssertReturns(false, tryEnter());
114 thread2.callAndAssertReturns(false, tryEnter());
116 thread2.callAndAssertReturns(true, tryEnter());
136 thread2.callAndAssertReturns(enterCount != 0, "isOccupied");
137 thread2.callAndAssertReturns(false, "isOccupiedByCurrentThread")
    [all...]
ExecutionListTest.java 88 Thread thread2 = new Thread(execute); local
90 thread2.start();
94 thread2.join();
ThreadFactoryBuilderTest.java 76 Thread thread2 = threadFactory.newThread(monitoredRunnable); local
77 checkThreadPoolName(thread2, 2);
80 thread2.getName().substring(0, thread.getName().lastIndexOf('-')));
87 thread2.getName().substring(0, thread.getName().lastIndexOf('-')))
  /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/ltrace/testsuite/ltrace.torture/
vfork-thread.c 45 pthread_t thread2; local
46 pthread_create (&thread2, NULL, &routine2, NULL);
47 pthread_join (thread2, NULL);
  /external/v8/test/unittests/libplatform/
task-queue-unittest.cc 51 TaskQueueThread thread2(&queue);
53 thread2.Start();
56 thread2.Join();
worker-thread-unittest.cc 41 WorkerThread thread2(&queue);
  /external/libcap-ng/libcap-ng-0.7/src/test/
thread_test.c 9 pthread_t thread1, thread2; variable
32 printf("thread2 getting capabilities\n");
50 pthread_create(&thread2, NULL, thread2_main, NULL);
  /art/test/123-compiler-regressions-mt/src/
Main.java 37 test.thread2();
51 test.thread2();
68 void thread2() { method in class:B17689750TestVolatile
98 void thread2() { method in class:B17689750TestMonitor
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_vs_state.c 77 vs->thread2.scratch_space_base_pointer =
79 vs->thread2.per_thread_scratch_space =
82 vs->thread2.scratch_space_base_pointer = 0;
83 vs->thread2.per_thread_scratch_space = 0;
160 offsetof(struct brw_vs_unit_state, thread2),
162 vs->thread2.per_thread_scratch_space,
brw_wm_state.c 119 wm->thread2.scratch_space_base_pointer =
121 wm->thread2.per_thread_scratch_space =
124 wm->thread2.scratch_space_base_pointer = 0;
125 wm->thread2.per_thread_scratch_space = 0;
229 offsetof(struct brw_wm_unit_state, thread2),
231 wm->thread2.per_thread_scratch_space,
  /system/extras/memory_replay/tests/
ThreadsTest.cpp 52 Thread* thread2 = threads.CreateThread(901); local
53 ASSERT_TRUE(thread2 != nullptr);
64 ASSERT_EQ(thread2, found_thread2);
70 thread2->CreateAction(0x1235, "thread_done", "");
81 thread2->SetPending();
82 threads.Finish(thread2);
  /toolchain/binutils/binutils-2.25/gold/testsuite/
tls_test_main.cc 141 pthread_t thread2; local
142 err = pthread_create(&thread2, NULL, thread_routine, &sems2);
167 err = pthread_join(thread2, &thread_val);
  /external/elfutils/tests/
dwfl-proc-attach.c 45 static pthread_t thread2; variable
82 if ((err = pthread_create (&thread2, NULL, sleeper, NULL)) != 0)
83 error (-1, err, "Couldn't create thread2");
  /external/libchrome/sandbox/linux/services/
thread_helpers_unittests.cc 117 base::Thread thread2("sandbox_tests");
123 ThreadHelpers::StartThreadAndWatchProcFS(proc_fd.fd(), &thread2));
127 thread2.Stop();
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
InetAddressThreadTest.java 140 threadsafeTestThread thread2 = new threadsafeTestThread("2", local
151 thread2.start();
156 thread2.join();
  /external/valgrind/exp-bbv/tests/amd64-linux/
clone_test.S 52 jz thread2 # if so, jump to thrad2
69 thread2: label
  /external/valgrind/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 95 Thread thread2 = new Thread(r2); local
96 thread2.start();

Completed in 603 milliseconds

1 2 3