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

  /external/chromium/base/threading/
platform_thread_win.cc 47 PlatformThreadHandle thread_handle; local
64 thread_handle = CreateThread(
66 if (!thread_handle) {
72 *out_thread_handle = thread_handle;
74 CloseHandle(thread_handle);
117 PlatformThreadHandle* thread_handle) {
118 DCHECK(thread_handle);
119 return CreateThreadInternal(stack_size, delegate, thread_handle);
128 void PlatformThread::Join(PlatformThreadHandle thread_handle) {
129 DCHECK(thread_handle);
    [all...]
platform_thread.h 75 // |*thread_handle| will be assigned a handle to the newly created thread,
82 PlatformThreadHandle* thread_handle);
91 // |thread_handle|.
92 static void Join(PlatformThreadHandle thread_handle);
platform_thread_posix.cc 57 PlatformThreadHandle* thread_handle) {
109 success = !pthread_create(thread_handle, &attributes, ThreadFunc, params);
202 PlatformThreadHandle* thread_handle) {
204 delegate, thread_handle);
217 void PlatformThread::Join(PlatformThreadHandle thread_handle) {
219 // the thread referred to by |thread_handle| may still be running long-lived /
222 pthread_join(thread_handle, NULL);
thread.h 123 PlatformThreadHandle thread_handle() { return thread_; } function in class:base::Thread
  /external/chromium/chrome/browser/printing/
print_job.cc 304 HANDLE thread_handle = worker_->thread_handle(); local
305 for (; thread_handle;) {
308 DWORD result = MsgWaitForMultipleObjects(1, &thread_handle,
  /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/chromium/chrome/browser/sync/syncable/
syncable_unittest.cc 1415 base::PlatformThreadHandle thread_handle; local
    [all...]
  /external/v8/src/
platform-win32.cc 1318 HANDLE thread_handle = GetCurrentThread(); local
    [all...]

Completed in 342 milliseconds