Searched defs:PlatformThreadHandle (Results 1 - 4 of 4) sorted by relevance

/external/chromium/base/threading/
H A Dplatform_thread.h30 // PlatformThreadHandle should not be assumed to be a numeric type, since the
36 typedef void* PlatformThreadHandle; // HANDLE typedef in namespace:base
37 const PlatformThreadHandle kNullThreadHandle = NULL;
39 typedef pthread_t PlatformThreadHandle;
40 const PlatformThreadHandle kNullThreadHandle = 0;
82 PlatformThreadHandle* thread_handle);
86 // PlatformThreadHandle.
92 static void Join(PlatformThreadHandle thread_handle);
/external/chromium_org/third_party/sfntly/cpp/src/test/
H A Dplatform_thread.h36 typedef HANDLE PlatformThreadHandle; typedef in namespace:sfntly
37 const PlatformThreadHandle kNullThreadHandle = NULL;
39 typedef pthread_t PlatformThreadHandle;
40 const PlatformThreadHandle kNullThreadHandle = 0;
61 static bool Create(Delegate* delegate, PlatformThreadHandle* thread_handle);
66 static void Join(PlatformThreadHandle thread_handle);
/external/sfntly/cpp/src/test/
H A Dplatform_thread.h36 typedef HANDLE PlatformThreadHandle; typedef in namespace:sfntly
37 const PlatformThreadHandle kNullThreadHandle = NULL;
39 typedef pthread_t PlatformThreadHandle;
40 const PlatformThreadHandle kNullThreadHandle = 0;
61 static bool Create(Delegate* delegate, PlatformThreadHandle* thread_handle);
66 static void Join(PlatformThreadHandle thread_handle);
/external/chromium_org/base/threading/
H A Dplatform_thread.h32 class PlatformThreadHandle { class in namespace:base
40 PlatformThreadHandle() function in class:base::PlatformThreadHandle
45 explicit PlatformThreadHandle(Handle handle) function in class:base::PlatformThreadHandle
50 PlatformThreadHandle(Handle handle, function in class:base::PlatformThreadHandle
56 bool is_equal(const PlatformThreadHandle& other) {
105 static PlatformThreadHandle CurrentHandle();
130 PlatformThreadHandle* thread_handle);
138 PlatformThreadHandle* thread_handle,
143 // PlatformThreadHandle.
149 static void Join(PlatformThreadHandle thread_handl
[all...]

Completed in 194 milliseconds