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

1 2 3

  /art/test/144-static-field-sigquit/src/
Main.java 20 Thread thread1 = new Thread(new SigQuit()); local
24 thread1.start();
28 thread1.join();
  /external/ltrace/testsuite/ltrace.main/
main-threaded.c 18 pthread_t thread1; local
21 pthread_create (&thread1, NULL, th_main, "aaa");
24 pthread_join (thread1, NULL);
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
MonitorTestCase.java 55 private TestThread<Monitor> thread1; field in class:MonitorTestCase
65 tearDownStack.addTearDown(thread1 = new TestThread<Monitor>(monitor, "TestThread #1"));
102 thread1.callAndAssertReturns(enter());
104 thread1.callAndAssertReturns(leave());
109 thread1.callAndAssertReturns(true, tryEnter());
111 thread1.callAndAssertReturns(true, tryEnter());
113 thread1.callAndAssertReturns(leave());
115 thread1.callAndAssertReturns(leave());
121 thread1.callAndAssertReturns(enter());
123 thread1.callAndAssertReturns(enter())
    [all...]
ExecutionListTest.java 87 Thread thread1 = new Thread(execute); local
89 thread1.start();
93 thread1.join();
  /external/valgrind/drd/tests/
rwlock_race.c 37 pthread_t thread1; local
47 pthread_create(&thread1, 0, thread_func, 0);
49 pthread_join(thread1, 0);
std_atomic.cpp 33 pthread_t thread1; local
41 err = pthread_create(&thread1, NULL, &func1, NULL);
48 err = pthread_join(thread1, NULL);
std_list.cpp 80 pthread_t thread1; local
86 err = pthread_create(&thread1, NULL, &func1, &instance1);
93 err = pthread_join(thread1, NULL);
  /art/test/033-class-init-deadlock/src/
Main.java 27 Thread thread1, thread2; local
30 thread1 = new Thread() { public void run() { new A(); } };
32 thread1.start();
33 // Give thread1 a chance to start before starting thread2.
40 thread1.interrupt();
  /external/v8/test/unittests/libplatform/
task-queue-unittest.cc 50 TaskQueueThread thread1(&queue);
52 thread1.Start();
55 thread1.Join();
worker-thread-unittest.cc 40 WorkerThread thread1(&queue);
  /external/libcap-ng/libcap-ng-0.7/src/test/
thread_test.c 9 pthread_t thread1, thread2; variable
15 printf("thread1 filled capabilities\n");
49 pthread_create(&thread1, NULL, thread1_main, NULL);
  /art/test/123-compiler-regressions-mt/src/
Main.java 33 test.thread1();
47 test.thread1();
62 void thread1() { method in class:B17689750TestVolatile
84 void thread1() { method in class:B17689750TestMonitor
  /system/extras/memory_replay/tests/
ThreadsTest.cpp 48 Thread* thread1 = threads.CreateThread(900); local
49 ASSERT_TRUE(thread1 != nullptr);
61 ASSERT_EQ(thread1, found_thread1);
69 thread1->CreateAction(0x1234, "thread_done", "");
73 thread1->SetPending();
74 threads.Finish(thread1);
  /external/libchrome/sandbox/linux/services/
thread_helpers_unittests.cc 116 base::Thread thread1("sandbox_tests");
121 ThreadHelpers::StartThreadAndWatchProcFS(proc_fd.fd(), &thread1));
126 thread1.Stop();
143 base::Thread thread1("sandbox_tests");
144 SANDBOX_ASSERT(thread1.Start());
  /toolchain/binutils/binutils-2.25/gold/testsuite/
tls_test_main.cc 137 pthread_t thread1; local
138 int err = pthread_create(&thread1, NULL, thread_routine, &sems1);
159 err = pthread_join(thread1, &thread_val);
  /external/elfutils/tests/
dwfl-proc-attach.c 44 static pthread_t thread1; variable
80 if ((err = pthread_create (&thread1, NULL, sleeper, NULL)) != 0)
81 error (-1, err, "Couldn't create thread1");
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_gs_state.c 61 gs->thread1.floating_point_mode = BRW_FLOATING_POINT_NON_IEEE_754;
62 gs->thread1.single_program_flow = 1;
brw_vs_state.c 59 vs->thread1.floating_point_mode = BRW_FLOATING_POINT_NON_IEEE_754;
72 vs->thread1.single_program_flow = (intel->gen == 5);
74 vs->thread1.binding_table_entry_count = 0;
brw_clip_state.c 57 clip->thread1.floating_point_mode = BRW_FLOATING_POINT_NON_IEEE_754;
58 clip->thread1.single_program_flow = 1;
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
InetAddressThreadTest.java 138 threadsafeTestThread thread1 = new threadsafeTestThread("1", local
150 thread1.start();
155 thread1.join();
  /external/valgrind/exp-bbv/tests/amd64-linux/
clone_test.S 56 # thread1 #
59 thread1: label
  /external/valgrind/exp-bbv/tests/x86-linux/
clone_test.S 56 # thread1 #
59 thread1: label
  /external/libchrome/base/process/
process_metrics_unittest.cc 310 Thread thread1("thread1");
314 thread1.StartAndWaitForTesting();
318 ASSERT_TRUE(thread1.IsRunning());
326 thread1.task_runner()->PostTask(FROM_HERE, Bind(&BusyWork, &vec1));
332 thread1.Stop();
  /external/libchrome/base/synchronization/
lock_unittest.cc 195 MutexLockTestThread thread1(&lock, &value);
202 ASSERT_TRUE(PlatformThread::Create(0, &thread1, &handle1));
  /external/sfntly/cpp/src/test/
lock_test.cc 210 MutexLockTestThread thread1(&lock, &value);
217 EXPECT_TRUE(PlatformThread::Create(&thread1, &handle1));

Completed in 532 milliseconds

1 2 3