HomeSort by relevance Sort by last modified time
    Searched refs:thread_handle (Results 1 - 6 of 6) sorted by null

  /external/chromium/base/
platform_thread_win.cc 69 PlatformThreadHandle* thread_handle) {
82 *thread_handle = CreateThread(
84 return *thread_handle != NULL;
89 PlatformThreadHandle thread_handle; local
90 bool result = Create(stack_size, delegate, &thread_handle);
91 CloseHandle(thread_handle);
96 void PlatformThread::Join(PlatformThreadHandle thread_handle) {
97 DCHECK(thread_handle);
101 DWORD result = WaitForSingleObject(thread_handle, INFINITE);
104 CloseHandle(thread_handle);
    [all...]
platform_thread_posix.cc 78 PlatformThreadHandle* thread_handle) {
96 success = !pthread_create(thread_handle, &attributes, ThreadFunc, delegate);
106 PlatformThreadHandle* thread_handle) {
108 delegate, thread_handle);
121 void PlatformThread::Join(PlatformThreadHandle thread_handle) {
122 pthread_join(thread_handle, NULL);
platform_thread.h 61 // |*thread_handle| will be assigned a handle to the newly created thread,
68 PlatformThreadHandle* thread_handle);
77 // |thread_handle|.
78 static void Join(PlatformThreadHandle thread_handle);
thread.h 104 PlatformThreadHandle thread_handle() { return thread_; } function in class:base::Thread
  /external/openssl/crypto/threads/
mttest.c 767 HANDLE thread_handle[MAX_THREAD_NUMBER]; local
777 thread_handle[i]=CreateThread(NULL,
793 (CONST HANDLE *)&(thread_handle[i]),TRUE,INFINITE)
  /external/v8/src/
platform-win32.cc 1204 HANDLE thread_handle = GetCurrentThread(); local
    [all...]

Completed in 91 milliseconds