HomeSort by relevance Sort by last modified time
    Searched defs:pthread_create (Results 1 - 17 of 17) sorted by null

  /external/jemalloc/src/
mutex.c 29 * We intercept pthread_create() calls in order to toggle isthreaded if the
41 pthread_create_fptr = dlsym(RTLD_NEXT, "pthread_create");
44 "\"pthread_create\")\n");
52 pthread_create(pthread_t *__restrict thread, function
  /bionic/libc/bionic/
pthread_create.cpp 122 "pthread_create sched_setscheduler call failed: %s", strerror(errno));
139 "pthread_create failed: couldn't allocate %zu-bytes mapped space: %s",
148 "pthread_create failed: couldn't mprotect PROT_NONE %zu-byte stack guard region: %s",
221 // A dummy start routine for pthread_create failures where we've created a thread but aren't
228 int pthread_create(pthread_t* thread_out, pthread_attr_t const* attr, function
284 __libc_format_log(ANDROID_LOG_WARN, "libc", "pthread_create failed: clone failed: %s", strerror(errno));
  /external/libcxx/src/
thread.cpp 32 #pragma weak pthread_create // Do not create libpthread dependency macro
  /prebuilts/go/darwin-x86/src/runtime/cgo/
gcc_openbsd_386.c 91 // Locate symbol for the system pthread_create function.
97 sys_pthread_create = dlsym(handle, "pthread_create");
99 fprintf(stderr, "runtime/cgo: dlsym failed to find pthread_create: %s\n", dlerror());
112 pthread_create(pthread_t *thread, const pthread_attr_t *attr, function
117 // we must initialize our wrapper in pthread_create, because it is valid to call
118 // pthread_create in a static constructor, and in fact, our test for issue 9456
121 fprintf(stderr, "runtime/cgo: failed to initialize pthread_create wrapper\n");
149 fprintf(stderr, "runtime/cgo: failed to initialize pthread_create wrapper\n");
179 fprintf(stderr, "runtime/cgo: pthread_create failed: %s\n", strerror(err));
gcc_openbsd_amd64.c 91 // Locate symbol for the system pthread_create function.
97 sys_pthread_create = dlsym(handle, "pthread_create");
99 fprintf(stderr, "runtime/cgo: dlsym failed to find pthread_create: %s\n", dlerror());
112 pthread_create(pthread_t *thread, const pthread_attr_t *attr, function
117 // we must initialize our wrapper in pthread_create, because it is valid to call
118 // pthread_create in a static constructor, and in fact, our test for issue 9456
121 fprintf(stderr, "runtime/cgo: failed to initialize pthread_create wrapper\n");
149 fprintf(stderr, "runtime/cgo: failed to initialize pthread_create wrapper\n");
179 fprintf(stderr, "runtime/cgo: pthread_create failed: %s\n", strerror(err));
  /prebuilts/go/linux-x86/src/runtime/cgo/
gcc_openbsd_386.c 91 // Locate symbol for the system pthread_create function.
97 sys_pthread_create = dlsym(handle, "pthread_create");
99 fprintf(stderr, "runtime/cgo: dlsym failed to find pthread_create: %s\n", dlerror());
112 pthread_create(pthread_t *thread, const pthread_attr_t *attr, function
117 // we must initialize our wrapper in pthread_create, because it is valid to call
118 // pthread_create in a static constructor, and in fact, our test for issue 9456
121 fprintf(stderr, "runtime/cgo: failed to initialize pthread_create wrapper\n");
149 fprintf(stderr, "runtime/cgo: failed to initialize pthread_create wrapper\n");
179 fprintf(stderr, "runtime/cgo: pthread_create failed: %s\n", strerror(err));
gcc_openbsd_amd64.c 91 // Locate symbol for the system pthread_create function.
97 sys_pthread_create = dlsym(handle, "pthread_create");
99 fprintf(stderr, "runtime/cgo: dlsym failed to find pthread_create: %s\n", dlerror());
112 pthread_create(pthread_t *thread, const pthread_attr_t *attr, function
117 // we must initialize our wrapper in pthread_create, because it is valid to call
118 // pthread_create in a static constructor, and in fact, our test for issue 9456
121 fprintf(stderr, "runtime/cgo: failed to initialize pthread_create wrapper\n");
149 fprintf(stderr, "runtime/cgo: failed to initialize pthread_create wrapper\n");
179 fprintf(stderr, "runtime/cgo: pthread_create failed: %s\n", strerror(err));
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/src/
thread.cpp 24 #pragma weak pthread_create // Do not create libpthread dependency macro
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/src/
thread.cpp 32 #pragma weak pthread_create // Do not create libpthread dependency macro
  /external/libvpx/libvpx/vpx_util/
vpx_thread.h 74 static INLINE int pthread_create(pthread_t *const thread, const void *attr, function
232 static INLINE int pthread_create(pthread_t *const thread, const void *attr, function
  /external/webp/src/utils/
thread_utils.c 75 static int pthread_create(pthread_t* const thread, const void* attr, function
283 ok = !pthread_create(&worker->impl_->thread_, NULL, ThreadLoop, worker);
  /external/dng_sdk/source/
dng_pthread.h 205 #define pthread_create dng_pthread_create macro
  /external/openssh/
auth-pam.c 178 pthread_create(sp_pthread_t *thread, const void *attr, function
701 if (pthread_create(&ctxt->pam_thread, NULL, sshpam_thread, ctxt) == -1) {
  /prebuilts/go/darwin-x86/src/runtime/
os3_solaris.go 31 //go:cgo_import_dynamic libc_pthread_create pthread_create "libc.so"
173 ret = pthread_create(&tid, &attr, funcPC(tstart_sysvicall), unsafe.Pointer(mp))
454 func pthread_create(thread *pthread, attr *pthreadattr, fn uintptr, arg unsafe.Pointer) int32 { func
  /prebuilts/go/linux-x86/src/runtime/
os3_solaris.go 31 //go:cgo_import_dynamic libc_pthread_create pthread_create "libc.so"
173 ret = pthread_create(&tid, &attr, funcPC(tstart_sysvicall), unsafe.Pointer(mp))
454 func pthread_create(thread *pthread, attr *pthreadattr, fn uintptr, arg unsafe.Pointer) int32 { func
  /external/ImageMagick/MagickCore/
vms.h 799 #define pthread_create macro
    [all...]
  /external/mesa3d/include/GL/
vms_x_fix.h 1016 #define pthread_create macro
    [all...]

Completed in 390 milliseconds