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

1 2 3

  /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/144-static-field-sigquit/src/
Main.java 20 Thread thread1 = new Thread(new SigQuit()); local
24 thread1.start();
28 thread1.join();
  /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/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/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);
  /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
  /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);
  /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
  /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/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();
  /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);
  /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/webrtc/webrtc/base/
logging_unittest.cc 105 LogThread thread1, thread2, thread3; local
106 thread1.Start();
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_thread.py 231 def thread1(): function in function:TestForkInThread.test_forkinthread
244 thread.start_new_thread(thread1, ())
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_thread.py 231 def thread1(): function in function:TestForkInThread.test_forkinthread
244 thread.start_new_thread(thread1, ())
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_thread.py 231 def thread1(): function in function:TestForkInThread.test_forkinthread
244 thread.start_new_thread(thread1, ())
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_thread.py 231 def thread1(): function in function:TestForkInThread.test_forkinthread
244 thread.start_new_thread(thread1, ())
  /external/v8/test/cctest/
test-lockers.cc 103 v8::base::SmartPointer<KangarooThread> thread1; local
112 thread1.Reset(new KangarooThread(isolate, context));
114 thread1->Start();
115 thread1->Join();
  /hardware/intel/common/libva/test/putsurface/
putsurface_common.c 419 printf("Enter into thread1\n\n");
517 pthread_t thread1; local
657 ret = pthread_create(&thread1, NULL, putsurface_thread, (void*)drawable_thread1);
662 pthread_join(thread1, (void **)&ret);
663 printf("thread1 is free\n");
  /frameworks/av/services/audioflinger/
AudioFlinger.cpp 1949 MixerThread *thread1 = checkMixerThread_l(output1); local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_structs.h 106 struct thread1 struct
163 } thread1; member in struct:brw_clip_unit_state
404 struct thread1 thread1; member in struct:brw_sf_unit_state
471 struct thread1 thread1; member in struct:brw_gs_unit_state
515 struct thread1 thread1; member in struct:brw_vs_unit_state
550 struct thread1 thread1; member in struct:brw_wm_unit_state
    [all...]

Completed in 614 milliseconds

1 2 3