Home
last modified time | relevance | path

Searched refs:file_watcher (Results 1 – 25 of 33) sorted by relevance

12

/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/browser/chromeos/file_manager/
H A Dfile_watcher_unittest.cc57 FileWatcher file_watcher(kVirtualPath); in TEST_F() local
58 file_watcher.AddExtension(kExtensionId); in TEST_F()
75 FileWatcher file_watcher(kVirtualPath); in TEST_F() local
102 FileWatcher file_watcher(kVirtualPath); in TEST_F() local
104 file_watcher.AddExtension(kExtensionId); in TEST_F()
105 file_watcher.AddExtension(kExtensionId); in TEST_F()
106 file_watcher.AddExtension(kExtensionId); in TEST_F()
158 FileWatcher file_watcher(kVirtualPath); in TEST_F() local
159 file_watcher.AddExtension(kExtensionId); in TEST_F()
210 FileWatcher file_watcher(kVirtualPath); in TEST_F() local
[all …]
H A Dfile_watcher.cc179 base::FilePathWatcher* file_watcher) { in OnWatcherStarted() argument
184 if (file_watcher) { in OnWatcherStarted()
185 local_file_watcher_ = file_watcher; in OnWatcherStarted()
/dports/devel/desed/desed-1.2.0/src/file_watcher/
H A Dmod.rs6 pub type FileWatcher = crate::file_watcher::inotify::FileWatcherImpl;
7 pub type FileWatch = crate::file_watcher::inotify::FileWatchImpl;
10 pub type FileWatcher = crate::file_watcher::kqueue::FileWatcherImpl;
11 pub type FileWatch = crate::file_watcher::kqueue::FileWatchImpl;
14 pub type FileWatcher = crate::file_watcher::mock::FileWatcherImpl;
15 pub type FileWatch = crate::file_watcher::mock::FileWatchImpl;
/dports/lang/mono/mono-5.10.1.57/mcs/class/System/System.Diagnostics/
H A DLocalFileEventLog.cs48 FileSystemWatcher file_watcher; field in System.Diagnostics.LocalFileEventLog
71 if (file_watcher != null) { in Close()
72 file_watcher.EnableRaisingEvents = false; in Close()
73 file_watcher = null; // force creation of new FileSystemWatcher in Close()
139 if (file_watcher == null) in DisableNotification()
141 file_watcher.EnableRaisingEvents = false; in DisableNotification()
146 if (file_watcher == null) { in EnableNotification()
151 file_watcher = new FileSystemWatcher (); in EnableNotification()
152 file_watcher.Path = logDir; in EnableNotification()
153 file_watcher.Created += delegate (object o, FileSystemEventArgs e) { in EnableNotification()
[all …]
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/lib/feature/
H A Ddefinition.rb150 file_watcher = Rails.configuration.file_watcher.new(reload_files, reload_directories) do
154 Rails.application.reloaders << file_watcher
155 Rails.application.reloader.to_run { file_watcher.execute_if_updated }
157 file_watcher
/dports/math/rkward-kde/rkward-0.7.1/rkward/misc/
H A Drkxmlguisyncer_p.h47 file_watcher = KDirWatch::self (); in RKXMLGUISyncerPrivate()
48 connect (file_watcher, &KDirWatch::dirty, this, &RKXMLGUISyncerPrivate::uiRcFileChanged); in RKXMLGUISyncerPrivate()
62 KDirWatch *file_watcher; variable
H A Drkxmlguisyncer.cpp54 d->file_watcher->addFile (local_xml_file); in watchXMLGUIClientUIrc()
151 file_watcher->removeFile (path_key); in actionCollectionDestroyed()
/dports/dns/gdnsd2/gdnsd-2.4.3/plugins/
H A Dextfile.c57 ev_stat* file_watcher; // only used in "direct" case member
268 svc->file_watcher = xmalloc(sizeof(ev_stat)); in start_svc()
269 memset(&svc->file_watcher->attr, 0, sizeof(svc->file_watcher->attr)); in start_svc()
270 ev_stat_init(svc->file_watcher, file_cb, svc->path, delay); in start_svc()
271 svc->file_watcher->data = svc; in start_svc()
272 ev_stat_start(mon_loop, svc->file_watcher); in start_svc()
/dports/devel/desed/desed-1.2.0/src/ui/
H A Dtui.rs1 use crate::file_watcher::FileWatcher;
23 file_watcher: FileWatcher, field
51 …pub fn new(debugger: &'a Debugger, file_watcher: FileWatcher, current_state: usize) -> Result<Self… in new()
62 file_watcher, in new()
333 let mut file_watcher = self.file_watcher; in start() localVariable
357 if file_watcher.any_events().ok().unwrap_or(false) { in start()
/dports/editors/wxhexeditor/wxHexEditor/src/
H A DHexEditorApp.cpp91 if(frame->file_watcher == NULL ){ in OnEventLoopEnter()
92 frame->file_watcher = new wxFileSystemWatcher(); in OnEventLoopEnter()
93 frame->file_watcher->SetOwner(frame); in OnEventLoopEnter()
H A DHexEditorFrame.h74 wxFileSystemWatcher *file_watcher; variable
H A DHexEditorFrame.cpp101 file_watcher=NULL; in HexEditorFrame()
252 delete file_watcher; in ~HexEditorFrame()
486 if(file_watcher!=NULL){ in OpenFile()
487 file_watcher->Add( filename.GetFullPath() ); in OpenFile()
1130 if(file_watcher!=NULL){ in OnNotebookTabClose()
1131 file_watcher->Remove( FileNameProxy ); in OnNotebookTabClose()
/dports/devel/desed/desed-1.2.0/src/
H A Dmain.rs6 mod file_watcher; module
7 use file_watcher::FileWatcher;
/dports/devel/py-doit/doit-0.31.1/doit/
H A Dcmd_auto.py129 file_watcher = DoitAutoRun(watch_files)
131 file_watcher.loop()
/dports/math/rkward-kde/rkward-0.7.1/rkward/windows/
H A Drkhtmlwindow.cpp1034 file_watcher = new KDirWatch (this); in RKOutputWindowManager()
1035 connect (file_watcher, &KDirWatch::dirty, this, &RKOutputWindowManager::fileChanged); in RKOutputWindowManager()
1036 connect (file_watcher, &KDirWatch::created, this, &RKOutputWindowManager::fileChanged); in RKOutputWindowManager()
1042 file_watcher->removeFile (current_default_path); in ~RKOutputWindowManager()
1043 delete (file_watcher); in ~RKOutputWindowManager()
1074 file_watcher->addFile (file); in registerWindow()
1104 file_watcher->addFile (path); in setCurrentOutputPath()
1109 file_watcher->removeFile (current_default_path); in setCurrentOutputPath()
1119 file_watcher->removeFile (current_default_path); in rewatchOutput()
1120 file_watcher->addFile (current_default_path); in rewatchOutput()
[all …]
H A Drkhtmlwindow.h234 KDirWatch *file_watcher; variable
/dports/sysutils/glogg/glogg-1.1.4/tests/
H A DfilewatcherTest.cpp11 shared_ptr<FileWatcher> file_watcher; member in FileWatcherBehaviour
/dports/misc/py-powerline-status/powerline-2.8.2/powerline/lib/vcs/
H A D__init__.py31 def file_watcher(create_watcher): function
135 file_changed = file_watcher(create_watcher)
/dports/sysutils/vector/vector-0.10.0/lib/file-source/src/
H A Dlib.rs7 mod file_watcher; module
18 use self::file_watcher::FileWatcher;
/dports/print/ttfautohint/ttfautohint-1.8.4/frontend/
H A Dmaingui.cpp182 file_watcher = new QFileSystemWatcher(this); in Main_GUI()
912 file_watcher->removePath(fileinfo_input_file.fileName()); in stop_watching()
914 file_watcher->removePath(fileinfo_control_file.fileName()); in stop_watching()
916 file_watcher->removePath(fileinfo_reference_file.fileName()); in stop_watching()
1430 file_watcher->addPath(input_name); in run()
1431 file_watcher->addPath(control_name); in run()
1432 file_watcher->addPath(reference_name); in run()
2271 connect(file_watcher, SIGNAL(fileChanged(const QString&)), in create_connections()
H A Dmaingui.h148 QFileSystemWatcher* file_watcher; variable
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/base/files/
H A Dfile_path_watcher_unittest.cc450 FilePathWatcher file_watcher; in TEST_F() local
457 ASSERT_TRUE(SetupWatch(file, &file_watcher, file_delegate.get(), false)); in TEST_F()
596 FilePathWatcher file_watcher; in TEST_F() local
610 ASSERT_TRUE(SetupWatch(dest_file, &file_watcher, file_delegate.get(), false)); in TEST_F()
/dports/www/chromium-legacy/chromium-88.0.4324.182/base/files/
H A Dfile_path_watcher_unittest.cc465 FilePathWatcher file_watcher; in TEST_F() local
472 ASSERT_TRUE(SetupWatch(file, &file_watcher, file_delegate.get(), in TEST_F()
614 FilePathWatcher file_watcher; in TEST_F() local
628 ASSERT_TRUE(SetupWatch(dest_file, &file_watcher, file_delegate.get(), in TEST_F()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/ui/file_manager/file_manager/foreground/js/
H A DBUILD.gn47 ":file_watcher",
270 ":file_watcher",
451 js_library("file_watcher") {
/dports/www/py-pelican/pelican-4.7.1/pelican/
H A Dutils.py757 'settings': FileSystemWatcher.file_watcher(settings_file)
858 return self.file_watcher(path)
897 def file_watcher(path): member in FileSystemWatcher

12