Lines Matching refs:PlatformThread
109 PlatformThread::PlatformThread(Handle handle, bool joinable) in PlatformThread() function in rtc::PlatformThread
112 PlatformThread::PlatformThread(PlatformThread&& rhs) in PlatformThread() function in rtc::PlatformThread
117 PlatformThread& PlatformThread::operator=(PlatformThread&& rhs) { in operator =()
125 PlatformThread::~PlatformThread() { in ~PlatformThread()
129 PlatformThread PlatformThread::SpawnJoinable( in SpawnJoinable()
137 PlatformThread PlatformThread::SpawnDetached( in SpawnDetached()
145 absl::optional<PlatformThread::Handle> PlatformThread::GetHandle() const { in GetHandle()
150 bool PlatformThread::QueueAPC(PAPCFUNC function, ULONG_PTR data) { in QueueAPC()
157 void PlatformThread::Finalize() { in Finalize()
171 PlatformThread PlatformThread::SpawnThread( in SpawnThread()
192 PlatformThread::Handle handle = ::CreateThread( in SpawnThread()
203 PlatformThread::Handle handle; in SpawnThread()
208 return PlatformThread(handle, joinable); in SpawnThread()