HomeSort by relevance Sort by last modified time
    Searched full:createthread (Results 1 - 25 of 196) sorted by null

1 2 3 4 5 6 7 8

  /external/jemalloc/test/src/
thd.c 8 *thd = CreateThread(NULL, 0, routine, arg, 0, NULL);
10 test_fail("Error in CreateThread()\n");
  /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);
thread_simple.cc 15 HANDLE thr = CreateThread(NULL, 0, thread_proc, NULL, 0, NULL);
thread_stress.cc 18 thr[i] = CreateThread(NULL, 0, thread_proc, 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);
  /external/chromium_org/third_party/webrtc/system_wrappers/source/
thread_unittest.cc 24 ThreadWrapper* thread = ThreadWrapper::CreateThread(&NullRunFunction, NULL);
40 ThreadWrapper* thread = ThreadWrapper::CreateThread(&SetFlagRunFunction,
thread.cc 21 ThreadWrapper* ThreadWrapper::CreateThread(ThreadRunFunction func,
critical_section_unittest.cc 88 ThreadWrapper* thread = ThreadWrapper::CreateThread(
117 ThreadWrapper* thread = ThreadWrapper::CreateThread(&LockUnlockRunFunction,
  /external/chromium_org/third_party/WebKit/Source/wtf/
Threading.h 49 WTF_EXPORT ThreadIdentifier createThread(ThreadFunction, void*, const char* threadName);
51 // Internal platform-specific createThread implementation.
70 using WTF::createThread;
  /external/webrtc/src/system_wrappers/source/
thread.cc 20 ThreadWrapper* ThreadWrapper::CreateThread(ThreadRunFunction func,
thread_unittest.cc 69 ThreadWrapper* thread = ThreadWrapper::CreateThread(&NullRunFunction);
85 ThreadWrapper* thread = ThreadWrapper::CreateThread(&SetFlagRunFunction,
  /external/lzma/C/
Threads.c 32 unsigned threadId; /* Windows Me/98/95: threadId parameter may not be NULL in _beginthreadex/CreateThread functions */
35 CreateThread(0, 0, func, param, 0, &threadId);
  /external/chromium_org/third_party/webrtc/modules/video_coding/main/test/
video_rtp_play_mt.cc 94 webrtc::ThreadWrapper::CreateThread(PlayerThread, rtp_player.get(),
102 webrtc::ThreadWrapper::CreateThread(ProcessingThread, &factory,
110 webrtc::ThreadWrapper::CreateThread(DecodeThread, &factory,
  /external/chromium_org/third_party/libxml/src/
testThreadsWin32.c 107 tid[i] = CreateThread(NULL, 0,
111 perror("CreateThread");
  /external/chromium_org/third_party/webrtc/test/
direct_transport.cc 23 thread_(ThreadWrapper::CreateThread(NetworkProcess, this)),
35 thread_(ThreadWrapper::CreateThread(NetworkProcess, this)),
  /external/chromium_org/base/threading/
platform_thread_posix.cc 90 bool CreateThread(size_t stack_size, bool joinable,
206 return CreateThread(stack_size, true /* joinable thread */,
215 return CreateThread(stack_size, true, // joinable thread
224 bool result = CreateThread(stack_size, false /* non-joinable thread */,
  /external/chromium_org/third_party/angle/tests/standalone_tests/
EGLThreadTest.cpp 71 HANDLE threadHandle = CreateThread(NULL, 0, EGLThreadTest::ThreadingTestEntryPoint, this, 0, &threadId);
  /sdk/emulator/opengl/shared/emugl/common/testing/
test_thread.h 38 mThread = CreateThread(NULL,
  /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));
  /external/chromium_org/third_party/WebKit/Source/web/tests/
SpinLockTest.cpp 83 OwnPtr<blink::WebThread> thread1 = adoptPtr(blink::Platform::current()->createThread("thread1"));
84 OwnPtr<blink::WebThread> thread2 = adoptPtr(blink::Platform::current()->createThread("thread2"));
  /external/chromium_org/third_party/webrtc/system_wrappers/interface/
thread_wrapper.h 55 static ThreadWrapper* CreateThread(ThreadRunFunction func,
69 // from when CreateThread was called. However, failure to set priority will
  /external/chromium_org/mojo/examples/html_viewer/
blink_platform_impl.h 44 virtual blink::WebThread* createThread(const char* name);
  /external/chromium_org/ppapi/utility/threading/
simple_thread.cc 102 thread_ = CreateThread(NULL, stacksize_, &RunThread, data, 0, NULL);

Completed in 2374 milliseconds

1 2 3 4 5 6 7 8