Searched refs:watcher (Results 1 – 3 of 3) sorted by relevance
46 brillo::BinderWatcher watcher(message_loop_.get()); in Run() local47 CHECK(watcher.Init()) << "failed to initialize the binder file descriptor " in Run()
383 for (auto& watcher : watchers_) { in DoWork() local384 int fd = watcher->GetFileDescriptor(); in DoWork()386 watcher->Watch(FD_ISSET(fd, &rs), FD_ISSET(fd, &ws)); in DoWork()390 watcher.reset(); in DoWork()404 std::unique_ptr<Watcher> watcher{new Watcher{this, fd}}; in DoWork() local405 watcher->Watch(FD_ISSET(fd, &rs), FD_ISSET(fd, &ws)); in DoWork()406 watchers_.push_back(std::move(watcher)); in DoWork()
61 watcher(std::move(in_watcher)) {} in ServiceOwnerWatcherContext()63 std::unique_ptr<DBusServiceWatcher> watcher; member