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

1 2 34 5 6 7 8 91011>>

  /external/valgrind/main/none/tests/
pth_cancel1.c 43 if (pthread_create(&tid, NULL, thread_main, NULL) != 0)
45 perror("pthread_create");
pth_once.c 65 if (( rtn = pthread_create(&threads[thread_num],
70 fprintf(stderr, "pthread_create failed with %d",rtn);
thread-exits.c 72 ret = pthread_create(&t, NULL, thr, NULL);
74 printf("pthread_create failed: %s\n", strerror(ret));
120 pthread_create(&pth, NULL, maker, NULL);
tls.c 96 pthread_create(&threads[curthread++], NULL, tls_ptr, (void *)&tests[i]);
97 pthread_create(&threads[curthread++], NULL, tls_ptr, (void *)&tests[i]);
  /frameworks/base/libs/usb/tests/AccessoryChat/accessorychat/
accessorychat.c 139 pthread_create(&th, NULL, read_thread, (void *)ep1->bEndpointAddress);
140 pthread_create(&th, NULL, write_thread, (void *)ep2->bEndpointAddress);
142 pthread_create(&th, NULL, read_thread, (void *)ep2->bEndpointAddress);
143 pthread_create(&th, NULL, write_thread, (void *)ep1->bEndpointAddress);
  /ndk/tests/device/test-gabi++-guard/jni/
test_guard.cpp 44 pthread_create( &sThreads[nn], NULL, thread_run, reinterpret_cast<void*>(nn) );
  /sdk/emulator/opengl/shared/OpenglOsUtils/
osThreadUnix.cpp 38 int ret = pthread_create(&m_thread, NULL, Thread::thread_main, this);
  /system/extras/tests/bionic/libc/common/
test_pthread_once.c 69 if (pthread_create( &threads[nn], NULL, thread_function, (void*)(long int)nn) < 0) {
  /external/valgrind/main/helgrind/tests/
locked_vs_unlocked2.c 61 r= pthread_create(&child2, NULL, child_fn2, NULL); assert(!r);
62 r= pthread_create(&child1, NULL, child_fn1, NULL); assert(!r);
tc14_laog_dinphils.stderr.exp 7 by 0x........: pthread_create@* (hg_intercepts.c:...)
tc19_shadowmem.stderr.exp 13 by 0x........: pthread_create@* (hg_intercepts.c:...)
21 by 0x........: pthread_create@* (hg_intercepts.c:...)
50 by 0x........: pthread_create@* (hg_intercepts.c:...)
58 by 0x........: pthread_create@* (hg_intercepts.c:...)
87 by 0x........: pthread_create@* (hg_intercepts.c:...)
95 by 0x........: pthread_create@* (hg_intercepts.c:...)
124 by 0x........: pthread_create@* (hg_intercepts.c:...)
132 by 0x........: pthread_create@* (hg_intercepts.c:...)
161 by 0x........: pthread_create@* (hg_intercepts.c:...)
169 by 0x........: pthread_create@* (hg_intercepts.c:...
    [all...]
free_is_write.stderr.exp 8 by 0x........: pthread_create@* (hg_intercepts.c:...)
hg03_inherit.stderr.exp 7 by 0x........: pthread_create@* (hg_intercepts.c:...)
  /external/valgrind/main/memcheck/tests/
err_disable4.c 84 r = pthread_create(&child[i], &attr, child_fn_1, NULL);
107 r = pthread_create(&child[i], &attr, child_fn_2, NULL);
  /external/valgrind/unittest/
libstdc++_tests.cc 92 pthread_create(&t[i], 0, Thread, 0);
155 pthread_create(&t[i], 0, Thread, 0);
  /external/webkit/Tools/DumpRenderTree/pthreads/
JavaScriptThreadingPthreads.cpp 96 pthread_create(&pthread, 0, &runJavaScriptThread, 0);
122 pthread_create(&pthread, 0, &runJavaScriptThread, 0);
  /external/valgrind/main/gdbserver_tests/
sleepers.c 161 pthread_create(&ebbr, NULL, sleeper_or_burner, &b);
171 pthread_create(&egll, NULL, sleeper_or_burner, &l);
181 pthread_create(&zzzz, NULL, sleeper_or_burner, &p);
t.c 125 pthread_create(&ebbr, NULL, brussels_fn, NULL);
126 pthread_create(&egll, NULL, london_fn, NULL);
127 pthread_create(&zzzz, NULL, petaouchnok_fn, NULL);
  /system/bluetooth/tools/
asocket_test.c 431 pthread_create(&thread, NULL, (void *)thread_delay_close, (void *)&args);
456 pthread_create(&thread, NULL, (void *)thread_accept, (void *)&args);
480 pthread_create(&thread, NULL, (void *)thread_connect, (void *)&args);
509 pthread_create(&thread, NULL, (void *)thread_delay_close_write, (void *)&args);
530 pthread_create(&t[i], NULL, (void *)thread_poll, (void *)fd);
553 pthread_create(&t[i], NULL, (void *)thread_poll, (void *)fd);
574 pthread_create(&t[i], NULL, (void *)thread_read, (void *)fd);
595 pthread_create(&t[i], NULL, (void *)thread_read, (void *)fd);
624 pthread_create(&t1, NULL, (void *)thread_accept_write, (void *)&a1);
629 pthread_create(&t2, NULL, (void *)thread_shutdown, (void *)&fd2)
    [all...]
socktest.c 445 pthread_create(&thread, NULL, (void *)thread_delay_close, (void *)&args);
470 pthread_create(&thread, NULL, (void *)thread_accept, (void *)&args);
494 pthread_create(&thread, NULL, (void *)thread_connect, (void *)&args);
581 pthread_create(&thread, NULL, (void *)thread_delay_close_write, (void *)&args);
602 pthread_create(&t[i], NULL, (void *)thread_poll, (void *)fd);
625 pthread_create(&t[i], NULL, (void *)thread_poll, (void *)fd);
646 pthread_create(&t[i], NULL, (void *)thread_read, (void *)fd);
667 pthread_create(&t[i], NULL, (void *)thread_read, (void *)fd);
696 pthread_create(&t1, NULL, (void *)thread_accept_write, (void *)&a1);
701 pthread_create(&t2, NULL, (void *)thread_shutdown, (void *)&fd2)
    [all...]
  /external/valgrind/main/drd/tests/
pth_inconsistent_cond_wait.c 117 PTH_CALL(pthread_create(&tid1, 0, &thread_func, &s_mutex1));
118 PTH_CALL(pthread_create(&tid2, 0, &thread_func, &s_mutex2));
  /external/qemu/
compatfd.c 97 pthread_create(&tid, &attr, sigwait_compat, info);
  /external/qemu/distrib/sdl-1.2.12/src/thread/pthread/
SDL_systhread.c 64 if ( pthread_create(&thread->handle, &type, RunThread, args) != 0 ) {
  /external/qemu/distrib/sdl-1.2.12/src/thread/riscos/
SDL_systhread.c 91 if ( pthread_create(&thread->handle, &type, RunThread, args) != 0 ) {
  /external/v8/test/cctest/
test-platform-linux.cc 58 int thread_created = pthread_create(&other,

Completed in 702 milliseconds

1 2 34 5 6 7 8 91011>>