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

  /external/chromium/base/threading/
platform_thread.h 30 // PlatformThreadHandle should not be assumed to be a numeric type, since the
36 typedef void* PlatformThreadHandle; // HANDLE
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/sfntly/cpp/src/test/
platform_thread.h 36 typedef HANDLE PlatformThreadHandle;
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/
platform_thread.h 32 class PlatformThreadHandle {
40 PlatformThreadHandle()
45 explicit PlatformThreadHandle(Handle handle)
50 PlatformThreadHandle(Handle handle,
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_handle)
    [all...]

Completed in 87 milliseconds