Lines Matching refs:async_manager_
85 async_manager_.ExecAsync(std::chrono::milliseconds(0), in initialize()
109 return async_manager_.ExecAsync(delay, task); in initialize()
114 return async_manager_.ExecAsyncPeriodically(delay, period, task); in initialize()
117 …controller_->RegisterTaskCancel([this](AsyncTaskId task) { async_manager_.CancelAsyncTask(task); }… in initialize()
164 async_manager_.ExecAsync(std::chrono::milliseconds(0), [this, packet]() { in sendHciCommand()
173 async_manager_.ExecAsync(std::chrono::milliseconds(0), [this, packet]() { in sendAclData()
182 async_manager_.ExecAsync(std::chrono::milliseconds(0), [this, packet]() { in sendScoData()
201 async_manager_.WatchFdForNonBlockingReads(socket_fd, [this, connection_callback](int socket_fd) { in SetUpHciServer()
227 async_manager_.WatchFdForNonBlockingReads(socket_fd, [this, connection_callback](int socket_fd) { in SetUpLinkLayerServer()
286 async_manager_.WatchFdForNonBlockingReads(socket_fd, [this](int socket_fd) { in SetUpTestChannel()
296 async_manager_.WatchFdForNonBlockingReads(conn_fd, [this](int conn_fd) { in SetUpTestChannel()
298 … [this, conn_fd]() { async_manager_.StopWatchingFileDescriptor(conn_fd); }); in SetUpTestChannel()