HomeSort by relevance Sort by last modified time
    Searched refs:pthread_create (Results 526 - 550 of 709) sorted by null

<<212223242526272829

  /external/chromium_org/tools/cygprofile/
cygprofile.cc 284 CHECK(!pthread_create(&tid, NULL, &CygTlsLog::FlushLogThread, NULL));
  /external/libusb/examples/
dpfp_threaded.c 485 r = pthread_create(&poll_thread, NULL, poll_thread_main, NULL);
  /external/mesa3d/src/gallium/auxiliary/os/
os_thread.h 65 ret = pthread_create( &thread, NULL, routine, param );
  /external/valgrind/main/drd/tests/
matinv.c 249 pthread_create(&t[i].tid, &attr, (void*(*)(void*))gj_threadfunc, &t[i]);
tsan_thread_wrappers_pthread.h 341 /// Wrapper for pthread_create()/pthread_join().
354 void Start() { CHECK(0 == pthread_create(&t_, NULL, (worker_t)ThreadBody, this));}
  /external/valgrind/unittest/
thread_wrappers_pthread.h 333 /// Wrapper for pthread_create()/pthread_join().
346 void Start() { CHECK(0 == pthread_create(&t_, NULL, (worker_t)ThreadBody, this));}
  /frameworks/av/media/libstagefright/
AACWriter.cpp 148 pthread_create(&mThread, &attr, ThreadWrapper, this);
  /external/compiler-rt/lib/msan/
msan_interceptors.cc 980 INTERCEPTOR(int, pthread_create, void *th, void *attr, void *(*callback)(void*),
991 int res = REAL(pthread_create)(th, attr, callback, param);
    [all...]
  /bionic/libc/bionic/
pthread-timers.c 394 int rc = pthread_create(&timer->thread, &timer->attributes, timer_thread_start, timer);
  /bootable/recovery/minadbd/
sysdeps.h 424 return pthread_create( pthread, &attr, start, arg );
  /development/ndk/sources/android/libportable/arch-mips/
pthread.c 122 PTHREAD_WRAPPER(pthread_create, (pthread_t *thread, const pthread_attr_t *attr,
  /development/ndk/sources/android/native_app_glue/
android_native_app_glue.c 268 pthread_create(&android_app->thread, &attr, android_app_entry, android_app);
  /device/lge/mako/camera/mm-camera-interface/
mm_camera_poll_thread.c 309 pthread_create(&poll_cb->data.pid, NULL, mm_camera_poll_thread, (void *)poll_cb);
  /external/bluetooth/bluedroid/hci/src/
btsnoop.c 589 if (pthread_create(&thread_id, NULL,
591 perror("pthread_create");
  /external/bluetooth/bluedroid/test/bluedroidtest/
bluedroidtest.c 387 if (pthread_create(&thread_id, NULL,
389 perror("pthread_create");
  /external/chromium/third_party/libjingle/source/talk/base/
thread.cc 285 int error_code = pthread_create(&thread_, &attr, PreRun, init);
  /external/chromium_org/ppapi/native_client/tests/nacl_browser/manifest_file/
pm_manifest_file_test.cc 639 if (0 != pthread_create(&thread,
648 fprintf(stderr, "pthread_create failed\n"); fflush(NULL);
  /external/chromium_org/third_party/libjingle/source/talk/base/
thread.cc 282 int error_code = pthread_create(&thread_, &attr, PreRun, init);
  /external/iputils/ninfod/
ninfod_core.c 682 if (pthread_create(&thread, &pattr, ni_send_thread, p)) {
  /external/protobuf/gtest/test/
gtest_output_test_.cc 858 pthread_create(&tid,
  /external/qemu/distrib/sdl-1.2.15/src/video/ps3/
SDL_ps3video.c 457 if (pthread_create
  /frameworks/av/libvideoeditor/osal/src/
M4OSA_Thread.c 287 if ( 0 == pthread_create( &threadContext->threadID,
  /frameworks/wilhelm/src/
ThreadPool.c 149 int err = pthread_create(&tp->mThreadArray[i], (const pthread_attr_t *) NULL,
  /hardware/ti/omap4xxx/
heaptracker.c 563 pthread_create(&scanner_thread,
  /sdk/emulator/opengl/tests/ut_renderer/
RenderingThread.cpp 267 if (pthread_create(&m_thread, NULL, s_thread, this) < 0) {
268 perror("pthread_create");

Completed in 1862 milliseconds

<<212223242526272829