HomeSort by relevance Sort by last modified time
    Searched refs:FilePathWatcher (Results 1 - 11 of 11) sorted by null

  /external/libchrome/base/files/
file_path_watcher.cc 5 // Cross platform methods for FilePathWatcher. See the various platform
16 FilePathWatcher::~FilePathWatcher() {
21 void FilePathWatcher::CancelWatch(
27 bool FilePathWatcher::RecursiveWatchAvailable() {
37 FilePathWatcher::PlatformDelegate::PlatformDelegate(): cancelled_(false) {
40 FilePathWatcher::PlatformDelegate::~PlatformDelegate() {
44 bool FilePathWatcher::Watch(const FilePath& path,
file_path_watcher_mac.cc 17 class FilePathWatcherImpl : public FilePathWatcher::PlatformDelegate {
21 const FilePathWatcher::Callback& callback) override {
25 if (!FilePathWatcher::RecursiveWatchAvailable())
57 FilePathWatcher::FilePathWatcher() {
file_path_watcher.h 22 // underlying OS APIs, FilePathWatcher has slightly different semantics on OS X
23 // than on Windows or Linux. FilePathWatcher on Linux and Windows will detect
24 // modifications to files in a watched directory. FilePathWatcher on Mac will
28 class BASE_EXPORT FilePathWatcher {
45 // Stop watching. This is called from FilePathWatcher's dtor in order to
52 friend class FilePathWatcher;
83 FilePathWatcher();
84 virtual ~FilePathWatcher();
106 DISALLOW_COPY_AND_ASSIGN(FilePathWatcher);
file_path_watcher_fsevents.h 26 class FilePathWatcherFSEvents : public FilePathWatcher::PlatformDelegate {
30 // FilePathWatcher::PlatformDelegate overrides.
33 const FilePathWatcher::Callback& callback) override;
78 FilePathWatcher::Callback callback_;
file_path_watcher_unittest.cc 111 // Instead, TestDelegate gets the notifications from FilePathWatcher and uses
135 FilePathWatcher* watcher,
193 FilePathWatcher* watcher,
219 FilePathWatcher* watcher,
234 FilePathWatcher watcher;
247 FilePathWatcher watcher;
262 FilePathWatcher watcher;
275 FilePathWatcher watcher;
286 // Deletes the FilePathWatcher when it's notified.
289 Deleter(FilePathWatcher* watcher, MessageLoop* loop
    [all...]
file_path_watcher_kqueue.h 30 class FilePathWatcherKQueue : public FilePathWatcher::PlatformDelegate,
43 // FilePathWatcher::PlatformDelegate overrides.
46 const FilePathWatcher::Callback& callback) override;
124 FilePathWatcher::Callback callback_;
file_path_watcher_linux.cc 92 class FilePathWatcherImpl : public FilePathWatcher::PlatformDelegate,
118 const FilePathWatcher::Callback& callback) override;
126 // Deletion of the FilePathWatcher will call Cancel() to dispose of this
179 FilePathWatcher::Callback callback_;
452 const FilePathWatcher::Callback& callback) {
481 task_runner()->PostTask(FROM_HERE, Bind(&FilePathWatcher::CancelWatch,
685 FilePathWatcher::FilePathWatcher() {
file_path_watcher_fsevents.cc 74 "org.chromium.base.FilePathWatcher.%p", this).c_str(),
81 const FilePathWatcher::Callback& callback) {
161 << "Cancel() must be called before FilePathWatcher is destroyed.";
file_path_watcher_kqueue.cc 316 const FilePathWatcher::Callback& callback) {
  /system/tpm/attestation/server/
database_impl.h 82 std::unique_ptr<base::FilePathWatcher> file_watcher_;
database_impl.cc 41 // A base::FilePathWatcher::Callback that just relays to |callback|.
153 file_watcher_.reset(new base::FilePathWatcher());

Completed in 1865 milliseconds