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

  /external/webrtc/webrtc/base/
platform_thread_types.h 25 typedef DWORD PlatformThreadRef;
28 typedef pthread_t PlatformThreadRef;
  /external/libchrome/base/threading/
platform_thread.h 49 // after a thread dies, so a PlatformThreadRef cannot be reliably used
51 class PlatformThreadRef {
58 constexpr PlatformThreadRef() : id_(0) {}
60 explicit constexpr PlatformThreadRef(RefType id) : id_(id) {}
62 bool operator==(PlatformThreadRef other) const {
66 bool operator!=(PlatformThreadRef other) const { return id_ != other.id_; }
137 static PlatformThreadRef CurrentRef();

Completed in 4124 milliseconds