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

1 2 3

  /external/compiler-rt/test/asan/TestCases/Windows/
thread_stack_reuse.cc 24 thr = CreateThread(NULL, 0, thread_proc_1, NULL, 0, NULL);
30 thr = CreateThread(NULL, 0, thread_proc_2, NULL, 0, NULL);
dll_thread_stack_array_left_oob.cc 26 HANDLE thr = CreateThread(NULL, 0, thread_proc, NULL, 0, NULL);
thread_stack_array_left_oob.cc 19 HANDLE thr = CreateThread(NULL, 0, thread_proc, NULL, 0, NULL);
thread_stack_array_right_oob.cc 19 HANDLE thr = CreateThread(NULL, 0, thread_proc, NULL, 0, NULL);
thread_simple.cc 15 HANDLE thr = CreateThread(NULL, 0, thread_proc, NULL, 0, NULL);
thread_suspended.cc 15 HANDLE thr = CreateThread(NULL, 0, thread_proc, NULL, CREATE_SUSPENDED, NULL);
thread_stress.cc 18 thr[i] = CreateThread(NULL, 0, thread_proc, NULL, 0, NULL);
  /prebuilts/go/darwin-x86/misc/cgo/test/
issue8517_windows.c 21 h = CreateThread(NULL, 0, &testHandleLeaksFunc, 0, 0, NULL);
  /prebuilts/go/linux-x86/misc/cgo/test/
issue8517_windows.c 21 h = CreateThread(NULL, 0, &testHandleLeaksFunc, 0, 0, NULL);
  /system/extras/memory_replay/tests/
ThreadsTest.cpp 28 Thread* thread = threads.CreateThread(900);
48 Thread* thread1 = threads.CreateThread(900);
52 Thread* thread2 = threads.CreateThread(901);
56 Thread* thread3 = threads.CreateThread(902);
90 Thread* thread = threads.CreateThread(900);
117 Thread* thread = threads.CreateThread(900+i);
  /external/jemalloc/test/src/
thd.c 8 *thd = CreateThread(NULL, 0, routine, arg, 0, NULL);
10 test_fail("Error in CreateThread()\n");
  /external/google-breakpad/src/client/solaris/handler/
exception_handler_test.cc 85 static void CreateThread(int num) {
112 CreateThread(10);
  /system/extras/memory_replay/
Threads.h 31 Thread* CreateThread(pid_t tid);
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_thread_registry_test.cc 69 EXPECT_EQ(0U, registry->CreateThread(get_uid(0), true, -1, 0));
73 EXPECT_EQ(i, registry->CreateThread(get_uid(i), is_detached(i), 0, 0));
93 registry->CreateThread(get_uid(i), is_detached(i), 0, 0));
190 args->registry->CreateThread(0, false, 0, (void*)args->shard));
202 EXPECT_EQ(0U, registry->CreateThread(0, true, -1, 0));
sanitizer_pthread_wrappers.h 50 *thread = CreateThread(0, 0, PthreadHelperThreadProc, data, 0, 0);
  /external/compiler-rt/lib/asan/
asan_win.cc 86 INTERCEPTOR_WINAPI(DWORD, CreateThread,
94 // FIXME: The CreateThread interceptor is not the same as a pthread_create
100 return REAL(CreateThread)(security, stack_size,
129 // without using CreateThread, so we wrap NtWaitForWorkViaWorkerFactory
140 ASAN_INTERCEPT_FUNC(CreateThread);
  /external/sfntly/cpp/src/test/
platform_thread.cc 34 *thread_handle = CreateThread(NULL, 0, ThreadFunc, delegate, 0, NULL);
  /external/skia/src/utils/
SkThreadUtils_win.cpp 52 winData->fHandle = CreateThread(
  /external/boringssl/src/crypto/
thread_test.c 43 *out_thread = CreateThread(NULL /* security attributes */,
  /external/curl/lib/
curl_threads.c 107 return CreateThread(NULL, 0, func, arg, 0, NULL);
  /external/opencv3/modules/cudacodec/src/
thread.cpp 78 thread_ = CreateThread(
  /external/libchrome/base/threading/
platform_thread_posix.cc 77 bool CreateThread(size_t stack_size,
187 return CreateThread(stack_size, true, // joinable thread
195 bool result = CreateThread(stack_size, false /* non-joinable thread */,
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_thread_registry.h 96 u32 CreateThread(uptr user_id, bool detached, u32 parent_tid, void *arg);
  /external/libxml2/
testThreadsWin32.c 107 tid[i] = CreateThread(NULL, 0,
111 perror("CreateThread");
  /external/lzma/C/
Threads.c 34 /* Windows Me/98/95: threadId parameter may not be NULL in _beginthreadex/CreateThread functions */
39 *p = CreateThread(0, 0, func, param, 0, &threadId);

Completed in 538 milliseconds

1 2 3