Searched refs:mTasks (Results 1 – 2 of 2) sorted by relevance
354 mTasks.emplace(std::move(task)); in queueCommand()385 if (mTasks.empty()) in processTasksImpl()390 mWorkAvailableCondition.wait(lock, [this] { return !mTasks.empty(); }); in processTasksImpl()393 CommandProcessorTask task(std::move(mTasks.front())); in processTasksImpl()394 mTasks.pop(); in processTasksImpl()521 mWorkerIdleCondition.wait(lock, [this] { return (mTasks.empty() && mWorkerThreadIdle); }); in waitForWorkComplete()598 mWorkerIdleCondition.wait(lock, [this] { return (mTasks.empty() && mWorkerThreadIdle); }); in handleDeviceLost()
538 std::queue<CommandProcessorTask> mTasks; variable