/external/libchrome/base/files/ |
file_path_watcher.cc | 50 bool FilePathWatcher::Watch(const FilePath& path, 54 return impl_->Watch(path, recursive, callback);
|
file_path_watcher_fsevents.cc | 85 bool FilePathWatcherFSEvents::Watch(const FilePath& path,
|
file_path_watcher_kqueue.cc | 314 bool FilePathWatcherKQueue::Watch(const FilePath& path, 318 DCHECK(target_.value().empty()); // Can only watch one path. 323 // Recursive watch is not supported using kqueue.
|
file_path_watcher_linux.cc | 50 typedef int Watch; // Watch descriptor used by AddWatch and RemoveWatch. 51 static const Watch kInvalidWatch = -1; 53 // Watch directory |path| for changes. |watcher| will be notified on each 55 Watch AddWatch(const FilePath& path, FilePathWatcherImpl* watcher); 57 // Remove |watch| if it's valid. 58 void RemoveWatch(Watch watch, FilePathWatcherImpl* watcher); 72 hash_map<Watch, WatcherSet> watchers_; 97 // Called for each event coming from the watch. |fired_watch| identifies th 143 InotifyReader::Watch watch; member in struct:base::__anon15702::FilePathWatcherImpl::WatchEntry 300 Watch watch = inotify_add_watch(inotify_fd_, path.value().c_str(), local 598 InotifyReader::Watch watch = local 605 InotifyReader::Watch watch = local 660 InotifyReader::Watch watch = local [all...] |
/system/tpm/attestation/server/ |
database_impl.cc | 62 io_->Watch(base::Bind(base::IgnoreResult(&DatabaseImpl::Reload), 151 void DatabaseImpl::Watch(const base::Closure& callback) { 154 file_watcher_->Watch(FilePath(kDatabasePath), false,
|
/system/webservd/webservd/ |
protocol_handler.cc | 311 void Watch(bool read, bool write) { 372 // Get all the file descriptors from libmicrohttpd and watch for I/O 386 watcher->Watch(FD_ISSET(fd, &rs), FD_ISSET(fd, &ws)); 405 watcher->Watch(FD_ISSET(fd, &rs), FD_ISSET(fd, &ws));
|
/external/libchrome/dbus/ |
bus.cc | 39 class Watch : public base::MessagePumpLibevent::Watcher { 41 explicit Watch(DBusWatch* watch) 42 : raw_watch_(watch) { 46 ~Watch() override { dbus_watch_set_data(raw_watch_, NULL, NULL); } 68 const bool persistent = true; // Watch persistently. 99 // Unlike Watch, Timeout is a ref counted object, to ensure that |this| of 1022 Watch* watch = new Watch(raw_watch); local 1033 Watch* watch = static_cast<Watch*>(dbus_watch_get_data(raw_watch)); local 1041 Watch* watch = static_cast<Watch*>(dbus_watch_get_data(raw_watch)); local [all...] |