HomeSort by relevance Sort by last modified time
    Searched full:pthread_create (Results 76 - 100 of 1067) sorted by null

1 2 34 5 6 7 8 91011>>

  /bionic/tests/
pthread_test.cpp 84 ASSERT_EQ(0, pthread_create(&t, NULL, IdFn, NULL));
89 TEST(pthread, pthread_create) {
93 ASSERT_EQ(0, pthread_create(&t, NULL, IdFn, expected_result));
106 ASSERT_EQ(EAGAIN, pthread_create(&t, &attributes, IdFn, NULL));
111 ASSERT_EQ(0, pthread_create(&t1, NULL, SleepFn, reinterpret_cast<void*>(5)));
126 ASSERT_EQ(0, pthread_create(&t1, NULL, SpinFn, &done));
130 ASSERT_EQ(0, pthread_create(&t2, NULL, JoinFn, reinterpret_cast<void*>(t1)));
155 ASSERT_EQ(0, pthread_create(&t1, NULL, JoinFn, reinterpret_cast<void*>(pthread_self())));
184 ASSERT_EQ(0, pthread_create(&signal_thread, NULL, SignalHandlerFn, &received_signal));
229 ASSERT_EQ(0, pthread_create(&t1, NULL, SleepFn, reinterpret_cast<void*>(5)))
    [all...]
  /external/valgrind/main/none/tests/
pth_cvsimple.c 67 pthread_create(&threads[0], NULL, watch_count, NULL);
69 pthread_create(&threads[1], NULL, inc_count, NULL);
70 pthread_create(&threads[2], NULL, inc_count, NULL);
  /system/extras/tests/bionic/libc/common/
test_pthread_join.c 67 pthread_create( &t1, NULL, thread1_func, NULL );
68 pthread_create( &t2, NULL, thread2_func, (void*)t1 );
69 pthread_create( &t3, NULL, thread3_func, (void*)t1 );
  /external/compiler-rt/lib/tsan/lit_tests/
fd_close_norace2.cc 21 pthread_create(&t, 0, Thread, 0);
java_race.cc 16 pthread_create(&th, 0, Thread, jheap);
malloc_stack.cc 16 pthread_create(&th, 0, thr, p);
oob_race.cc 17 pthread_create(&th, 0, Thread, p);
race_on_barrier.c 24 pthread_create(&t, NULL, Thread1, NULL);
race_on_barrier2.c 25 pthread_create(&t, NULL, Thread1, NULL);
race_on_mutex2.c 17 pthread_create(&t, 0, Thread, &Mtx);
sleep_sync.cc 19 pthread_create(&t, 0, Thread, 0);
load_shared_lib.cc 24 pthread_create(&t1, NULL, access_callback, NULL);
25 pthread_create(&t2, NULL, access_callback, NULL);
memcpy_race.cc 28 pthread_create(&t[0], NULL, Thread1, NULL);
29 pthread_create(&t[1], NULL, Thread2, NULL);
mop_with_offset.cc 25 pthread_create(&t[0], NULL, Thread1, data);
26 pthread_create(&t[1], NULL, Thread2, data);
mop_with_offset2.cc 25 pthread_create(&t[0], NULL, Thread1, data);
26 pthread_create(&t[1], NULL, Thread2, data);
mutexset1.cc 32 pthread_create(&t[0], NULL, Thread1, NULL);
33 pthread_create(&t[1], NULL, Thread2, NULL);
mutexset2.cc 32 pthread_create(&t[0], NULL, Thread1, NULL);
33 pthread_create(&t[1], NULL, Thread2, NULL);
mutexset3.cc 39 pthread_create(&t[0], NULL, Thread1, NULL);
40 pthread_create(&t[1], NULL, Thread2, NULL);
mutexset4.cc 39 pthread_create(&t[0], NULL, Thread1, NULL);
40 pthread_create(&t[1], NULL, Thread2, NULL);
mutexset5.cc 40 pthread_create(&t[0], NULL, Thread1, NULL);
41 pthread_create(&t[1], NULL, Thread2, NULL);
mutexset7.cc 27 pthread_create(&t[0], NULL, Thread1, NULL);
28 pthread_create(&t[1], NULL, Thread2, NULL);
mutexset8.cc 33 pthread_create(&t[0], NULL, Thread1, NULL);
34 pthread_create(&t[1], NULL, Thread2, NULL);
  /external/valgrind/main/drd/tests/
filter_annotate_barrier_xml 14 if ($0 == " <file>pthread_create.c</file>") {
linuxthreads_det.c 32 pthread_create(&threadid, 0, thread_func, 0);
  /external/chromium_org/ppapi/native_client/src/untrusted/irt_stub/
thread_creator.c 24 return pthread_create((pthread_t *) tid, NULL,
43 * small overhead of pulling in pthread_create() even if the

Completed in 625 milliseconds

1 2 34 5 6 7 8 91011>>