Lines Matching refs:mThread
136 explicit StreamWorker(Args&&... args) : LogicImpl(std::forward<Args>(args)...), mThread(this) {} in StreamWorker()
147 return mThread.start(name, priority);
149 void pause() { mThread.pause(); } in pause()
150 void resume() { mThread.resume(); } in resume()
151 bool hasError() { return mThread.hasError(); } in hasError()
152 std::string getError() { return mThread.getError(); } in getError()
153 pid_t getTid() { return mThread.getTid(); } in getTid()
154 void stop() { mThread.stop(); } in stop()
155 void join() { mThread.join(); } in join()
156 bool waitForAtLeastOneCycle() { return mThread.waitForAtLeastOneCycle(); } in waitForAtLeastOneCycle()
159 void testLockUnlockMutex(bool lock) { mThread.lockUnlockMutex(lock); } in testLockUnlockMutex()
161 return mThread.getThreadNativeHandle(); in testGetThreadNativeHandle()
169 internal::ThreadController mThread;