Home
last modified time | relevance | path

Searched refs:pthread_create (Results 1 – 11 of 11) sorted by relevance

/ndk/sources/cxx-stl/gabi++/tests/
Dtest_guard.cpp44 pthread_create( &sThreads[nn], NULL, thread_run, reinterpret_cast<void*>(nn) ); in main()
Dmalloc_lockup.cpp120 int ret = pthread_create(&g_threads[n], &attr, my_thread, (void*)n); in main()
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/test/
Dtest_exception_storage.cpp69 pthread_create( threads + i, NULL, thread_code, (void *) (thread_globals + i)); in main()
/ndk/tests/device/test-gnustl-full/unit/
Dallocator_test.cpp161 pthread_create(&t[i], 0, f, &datas); in per_thread_alloc()
Dstring_test.cpp218 pthread_create( &t[i], 0, f, 0 ); in mt()
/ndk/tests/device/test-stlport/unit/
Dallocator_test.cpp161 pthread_create(&t[i], 0, f, &datas); in per_thread_alloc()
Dstring_test.cpp218 pthread_create( &t[i], 0, f, 0 ); in mt()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
Dthread.cpp24 #pragma weak pthread_create // Do not create libpthread dependency macro
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
Dthread356 int __ec = pthread_create(&__t_, 0, &__thread_proxy<_Gp>, __p.get());
379 int __ec = pthread_create(&__t_, 0, &__thread_proxy<_Fp>, __p.get());
/ndk/sources/third_party/googletest/googletest/include/gtest/internal/
Dgtest-port.h1288 pthread_create(&thread_, 0, &ThreadFuncWithCLinkage, base));
/ndk/sources/third_party/googletest/googletest/test/
Dgtest-port_test.cc328 const int status = pthread_create(&thread_id, &attr, &ThreadFunc, &mutex); in TEST()