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

  /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/libchrome/base/threading/
platform_thread.h 70 class PlatformThreadHandle {
78 PlatformThreadHandle() : handle_(0) {}
80 explicit PlatformThreadHandle(Handle handle) : handle_(handle) {}
82 bool is_equal(const PlatformThreadHandle& other) const {
137 static PlatformThreadHandle CurrentHandle();
162 PlatformThreadHandle* thread_handle) {
170 PlatformThreadHandle* thread_handle,
175 // PlatformThreadHandle.
181 static void Join(PlatformThreadHandle thread_handle);

Completed in 112 milliseconds