Lines Matching refs:PlatformThread
39 class PlatformThread final {
51 PlatformThread() = default;
56 PlatformThread(PlatformThread&& rhs);
59 PlatformThread(const PlatformThread&) = delete;
60 PlatformThread& operator=(const PlatformThread&) = delete;
65 PlatformThread& operator=(PlatformThread&& rhs);
70 virtual ~PlatformThread();
84 static PlatformThread SpawnJoinable(
91 static PlatformThread SpawnDetached(
105 PlatformThread(Handle handle, bool joinable);
106 static PlatformThread SpawnThread(std::function<void()> thread_function,