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

  /external/chromium_org/base/win/
scoped_process_information.h 57 HANDLE thread_handle() const { function in class:base::win::ScopedProcessInformation
  /external/chromium_org/base/threading/
platform_thread_win.cc 111 void* thread_handle = CreateThread( local
113 if (!thread_handle) {
119 *out_thread_handle = PlatformThreadHandle(thread_handle);
121 CloseHandle(thread_handle);
188 PlatformThreadHandle* thread_handle) {
189 DCHECK(thread_handle);
190 return CreateThreadInternal(stack_size, delegate, thread_handle);
195 PlatformThreadHandle* thread_handle,
197 bool result = Create(stack_size, delegate, thread_handle);
199 SetThreadPriority(*thread_handle, priority)
    [all...]
thread.h 166 PlatformThreadHandle thread_handle() { return thread_; } function in class:base::Thread
  /external/chromium_org/net/test/embedded_test_server/
embedded_test_server_unittest.cc 316 base::PlatformThreadHandle thread_handle; local
320 ASSERT_TRUE(base::PlatformThread::Create(0, &delegate, &thread_handle));
321 base::PlatformThread::Join(thread_handle);
  /external/chromium_org/testing/gtest/src/
gtest-port.cc 292 HANDLE thread_handle = ::CreateThread( local
299 GTEST_CHECK_(thread_handle != NULL) << "CreateThread failed with error "
301 if (thread_handle == NULL) {
304 return thread_handle;
    [all...]
  /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)

Completed in 236 milliseconds