Searched refs:FileSystemEventHandler (Results 1 – 14 of 14) sorted by relevance
/aosp_15_r20/external/python/watchdog/src/watchdog/observers/ |
D | api.py | 14 from watchdog.events import FileSystemEvent, FileSystemEventHandler 226 self._handlers: defaultdict[ObservedWatch, set[FileSystemEventHandler]] = defaultdict(set) 250 …def _add_handler_for_watch(self, event_handler: FileSystemEventHandler, watch: ObservedWatch) -> N… argument 272 event_handler: FileSystemEventHandler, argument 317 …def add_handler_for_watch(self, event_handler: FileSystemEventHandler, watch: ObservedWatch) -> No… argument 335 …def remove_handler_for_watch(self, event_handler: FileSystemEventHandler, watch: ObservedWatch) ->… argument
|
D | fsevents.py | 35 from watchdog.events import FileSystemEvent, FileSystemEventHandler 328 event_handler: FileSystemEventHandler, argument
|
/aosp_15_r20/external/python/watchdog/tests/ |
D | test_fsevents.py | 24 from watchdog.events import FileSystemEventHandler 83 h = FileSystemEventHandler() 225 w = observer.schedule(FileSystemEventHandler(), a, recursive=False) 299 from watchdog.events import FileSystemEventHandler 302 class Handler(FileSystemEventHandler):
|
D | test_observer.py | 10 from watchdog.events import FileModifiedEvent, FileSystemEventHandler 72 class EventHandler(FileSystemEventHandler):
|
D | test_events.py | 22 FileSystemEventHandler, 153 class TestableEventHandler(FileSystemEventHandler):
|
/aosp_15_r20/external/python/watchdog/docs/source/ |
D | quickstart.rst | 13 2. Implement a subclass of :class:`watchdog.events.FileSystemEventHandler`. 34 from watchdog.events import FileSystemEvent, FileSystemEventHandler 38 class MyEventHandler(FileSystemEventHandler):
|
/aosp_15_r20/external/python/watchdog/src/watchdog/ |
D | events.py | 205 class FileSystemEventHandler: class 292 class PatternMatchingEventHandler(FileSystemEventHandler): 368 class RegexMatchingEventHandler(FileSystemEventHandler): 451 class LoggingEventHandler(FileSystemEventHandler):
|
D | watchmedo.py | 27 from watchdog.events import FileSystemEventHandler 166 event_handler: FileSystemEventHandler, argument
|
/aosp_15_r20/external/pigweed/pw_docgen/py/pw_docgen/ |
H A D | docserver.py | 41 from watchdog.events import FileModifiedEvent, FileSystemEventHandler 228 class DocsFileChangeEventHandler(FileSystemEventHandler): 248 self, path: str, event_handler: FileSystemEventHandler, *args, **kwargs argument
|
/aosp_15_r20/external/google-cloud-java/owl-bot-postprocessor/synthtool/ |
H A D | metadata.py | 190 class FileSystemEventHandler(watchdog.events.FileSystemEventHandler): class 239 self.handler = FileSystemEventHandler(watch_dir)
|
/aosp_15_r20/external/python/watchdog/docs/source/examples/ |
D | simple.py | 13 class MyEventHandler(events.FileSystemEventHandler):
|
/aosp_15_r20/external/python/watchdog/ |
D | README.rst | 21 from watchdog.events import FileSystemEvent, FileSystemEventHandler 25 class MyEventHandler(FileSystemEventHandler):
|
D | changelog.rst | 367 - Refactored ``dispatch()`` method of ``FileSystemEventHandler``,
|
/aosp_15_r20/external/pigweed/pw_watch/py/pw_watch/ |
H A D | watch.py | 63 from watchdog.events import FileSystemEventHandler # type: ignore[import] 138 class PigweedBuildWatcher(FileSystemEventHandler, DebouncedFunction):
|