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

1 2 3 4 5 6

  /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 );
test_pthread_once.c 69 if (pthread_create( &threads[nn], NULL, thread_function, (void*)(long int)nn) < 0) {
test_pthread_cleanup_push.c 90 pthread_create( &t, NULL, thread1_func, (void*)do_exit );
test_pthread_getcpuclockid.c 79 pthread_create( &threads[nn], &attr, thread_func, (void*)nn );
test_sem_post.c 70 if ( pthread_create( &t[nn], NULL, thread_func, &semaphore ) < 0 ) {
test_semaphore.c 122 if ( pthread_create( &t[nn], NULL, thread_routines[nn], NULL ) < 0 ) {
  /system/core/debuggerd/
crasher.c 69 pthread_create(&thr, &attr, noisy, (void*) 'A');
70 pthread_create(&thr, &attr, noisy, (void*) 'B');
71 pthread_create(&thr, &attr, noisy, (void*) 'C');
92 pthread_create(&thr, &attr, test_thread, 0);
  /system/extras/tests/bionic/libc/bionic/
test_pthread_cond.c 73 pthread_create( &t[0], NULL, thread1_func, (void *)1 );
74 pthread_create( &t[1], NULL, thread2_func, (void *)2 );
75 pthread_create( &t[2], NULL, thread3_func, (void *)3 );
76 pthread_create( &t[3], NULL, thread4_func, (void *)4 );
test_pthread_create.c 24 pthread_create( &t1, NULL, thread1_func, (void *)1 );
test_cond.c 82 if (pthread_create( &t[nn], NULL, thread_routines[nn], NULL) < 0) {
  /system/bluetooth/tools/
pipetest.c 158 pthread_create(&t1, NULL, (void *)thread_poll, NULL);
159 pthread_create(&t2, NULL, (void *)thread_poll, NULL);
177 pthread_create(&t, NULL, (void *)thread_poll, (void *)fd[1]);
198 pthread_create(&t, NULL, (void *)thread_poll, (void *)fd[0]);
219 pthread_create(&t, NULL, (void *)thread_poll, (void *)fd[0]);
236 pthread_create(&t, NULL, (void *)thread_read, (void *)fd[0]);
276 pthread_create(&t1, NULL, (void *)thread_pollin, (void *)fd[0]);
277 pthread_create(&t2, NULL, (void *)thread_pollin, (void *)fd[0]);
300 pthread_create(&t[i], NULL, (void *)thread_pollin_rand_delay, (void *)fd[0]);
323 pthread_create(&t1, NULL, (void *)thread_poll, (void *)fd[0])
    [all...]
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...]
  /system/extras/tests/bionic/libc/other/
test_thread_max.c 53 if (pthread_create( &thread, &attr, thread_func, (void*)(long)count ) < 0) {
  /external/webkit/WebKitTools/DumpRenderTree/pthreads/
JavaScriptThreadingPthreads.cpp 90 pthread_create(&pthread, 0, &runJavaScriptThread, 0);
110 pthread_create(&pthread, 0, &runJavaScriptThread, 0);
  /external/webkit/WebCore/bindings/js/
GCController.cpp 81 pthread_create(&thread, NULL, collect, NULL);
  /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,
test-platform-nullos.cc 58 int thread_created = pthread_create(&other,
  /system/core/nexus/
WifiScanner.cpp 45 if (pthread_create(&mThread, NULL, WifiScanner::threadStart, this))
WifiStatusPoller.cpp 43 if (pthread_create(&mThread, NULL, WifiStatusPoller::threadStart, this))
  /system/media/opensles/libopensles/
CEngine.c 30 int err = pthread_create(&this->mSyncThread, (const pthread_attr_t *) NULL, sync_start, this);
  /device/samsung/crespo/sec_mm/sec_omx/sec_osal/
SEC_OSAL_Thread.c 78 result = pthread_create(&thread->pthread, &thread->attr, function_name, (void *)argument);
  /external/chromium/base/
platform_thread_posix.cc 96 success = !pthread_create(thread_handle, &attributes, ThreadFunc, delegate);

Completed in 257 milliseconds

1 2 3 4 5 6