Searched refs:watch (Results 1 - 25 of 33) sorted by relevance

12

/external/libmojo/mojo/public/js/
H A Dsupport.js12 /* @deprecated Please use watch()/cancelWatch() instead of
28 /* @deprecated Please use watch()/cancelWatch() instead of
39 * @param {MojoHandle} handle The handle to watch.
40 * @param {MojoHandleSignals} signals The signals to watch.
45 * watch.
47 function watch(handle, signals, callback) { [native code] } function
49 /* Cancels a handle watch initiated by watch().
51 * @param {MojoWatchId} watchId The watch identifier returned by watch()
[all...]
H A Dconnector.js23 this.readWatcher_ = support.watch(handle,
/external/wpa_supplicant_8/wpa_supplicant/dbus/
H A Ddbus_common.c60 DBusWatch *watch, eloop_event_type type)
67 dbus_watch_handle(watch, DBUS_WATCH_READABLE);
69 dbus_watch_handle(watch, DBUS_WATCH_WRITABLE);
71 dbus_watch_handle(watch, DBUS_WATCH_ERROR);
100 static dbus_bool_t add_watch(DBusWatch *watch, void *data) argument
106 if (!dbus_watch_get_enabled(watch))
109 flags = dbus_watch_get_flags(watch);
110 fd = dbus_watch_get_unix_fd(watch);
113 priv, watch);
117 priv, watch);
59 process_watch(struct wpas_dbus_priv *priv, DBusWatch *watch, eloop_event_type type) argument
130 remove_watch(DBusWatch *watch, void *data) argument
149 watch_toggled(DBusWatch *watch, void *data) argument
[all...]
/external/dnsmasq/src/
H A Ddbus.c59 struct watch { struct
60 DBusWatch *watch; member in struct:watch
61 struct watch *next;
65 static dbus_bool_t add_watch(DBusWatch *watch, void *data) argument
67 struct watch *w;
70 if (w->watch == watch)
73 if (!(w = whine_malloc(sizeof(struct watch))))
76 w->watch = watch;
84 remove_watch(DBusWatch *watch, void *data) argument
[all...]
H A Ddnsmasq.h684 struct watch *watches;
/external/selinux/restorecond/
H A Drestorecond.h39 extern int watch(int fd, const char *watch_file);
H A DMakefile33 restorecond.o utmpwatcher.o stringslist.o user.o watch.o: restorecond.h
35 restorecond: restore.o restorecond.o utmpwatcher.o stringslist.o user.o watch.o
H A Drestorecond.c117 /* trigger a failure in the watch */
133 Add a file to the watch list. We are watching for file creation, so we actually
134 put the watch on the directory and then examine all files created in that directory
212 while (watch(master_fd, watch_file) == 0) {
H A Dwatch.c88 syslog(LOG_ERR, "Unable to watch (%s) %s\n",
168 Inotify watch loop
170 int watch(int fd, const char *watch_file) function
/external/libchrome/base/files/
H A Dfile_path_watcher_linux.cc57 // Remove |watch| if it's valid.
58 void RemoveWatch(Watch watch, FilePathWatcherImpl* watcher);
97 // Called for each event coming from the watch. |fired_watch| identifies the
98 // watch that fired, |child| indicates what has changed, and is relative to
115 // Returns true if watch for |path| has been added successfully.
120 // Cancel the watch. This unregisters the instance with InotifyReader.
133 // - |watch|: the watch descriptor for a component.
140 : watch(InotifyReader::kInvalidWatch),
143 InotifyReader::Watch watch; member in struct:base::__anon9857::FilePathWatcherImpl::WatchEntry
300 Watch watch = inotify_add_watch(inotify_fd_, path.value().c_str(), local
313 RemoveWatch(Watch watch, FilePathWatcherImpl* watcher) argument
598 InotifyReader::Watch watch = local
605 InotifyReader::Watch watch = local
617 TrackWatchForRecursion(InotifyReader::Watch watch, const FilePath& path) argument
660 InotifyReader::Watch watch = local
[all...]
/external/libmojo/mojo/edk/system/
H A Drequest_context.cc47 // From the application's perspective the watch has already been cancelled,
53 for (const WatchNotifyFinalizer& watch :
59 watch.watcher->MaybeInvokeCallback(watch.result, watch.state, flags);
/external/ltp/testcases/kernel/syscalls/utils/
H A Dinotify.h19 __s32 wd; /* watch descriptor */
20 __u32 mask; /* watch mask */
26 /* the following are legal, implemented events that user-space can watch for */
40 /* the following are legal events. they are sent as needed to any watch */
50 #define IN_ONLYDIR 0x01000000 /* only watch the path if it is a directory */
52 #define IN_MASK_ADD 0x20000000 /* add to the mask of an already existing watch */
72 * struct inotify_watch - represents a watch request on a specific inode
76 * ih, inode, and wd are never written to once the watch is created.
88 __s32 wd; /* watch descriptor */
89 __u32 mask; /* event mask for this watch */
172 inotify_init_watch(struct inotify_watch *watch) argument
192 inotify_add_watch(struct inotify_handle *ih, struct inotify_watch *watch, struct inode *inode, __u32 mask) argument
199 inotify_rm_watch(struct inotify_handle *ih, struct inotify_watch *watch) argument
210 inotify_remove_watch_locked(struct inotify_handle *ih, struct inotify_watch *watch) argument
215 get_inotify_watch(struct inotify_watch *watch) argument
219 put_inotify_watch(struct inotify_watch *watch) argument
[all...]
/external/dhcpcd-6.8.2/dbus/
H A Drpc-dbus.c554 dbus_handle_event(DBusWatch *watch, int flags) argument
556 dbus_watch_handle((DBusWatch *)watch, flags);
568 dbus_read_event(void *watch) argument
570 dbus_handle_event((DBusWatch *)watch, DBUS_WATCH_READABLE);
574 dbus_write_event(void *watch) argument
576 dbus_handle_event((DBusWatch *)watch, DBUS_WATCH_WRITABLE);
580 add_watch(DBusWatch *watch, __unused void *data) argument
588 fd = dbus_watch_get_unix_fd(watch);
589 flags = dbus_watch_get_flags(watch);
592 read_arg = watch;
606 remove_watch(DBusWatch *watch, __unused void *data) argument
[all...]
/external/libchrome/dbus/
H A Dbus.cc42 explicit Watch(DBusWatch* watch) argument
43 : raw_watch_(watch) {
1024 // watch will be deleted when raw_watch is removed in OnRemoveWatch().
1025 Watch* watch = new Watch(raw_watch); local
1026 if (watch->IsReadyToBeWatched()) {
1027 watch->StartWatching();
1036 Watch* watch = static_cast<Watch*>(dbus_watch_get_data(raw_watch)); local
1037 delete watch;
1044 Watch* watch = static_cast<Watch*>(dbus_watch_get_data(raw_watch)); local
1045 if (watch
[all...]
/external/autotest/client/cros/tendo/n_faced_peerd/
H A Dmanager.py22 SenderWatch = collections.namedtuple('SenderWatch', ['sender', 'watch'])
158 watch = dbus.bus.NameOwnerWatch(self._bus, sender, cb)
159 self._watches[service_id] = SenderWatch(sender, watch)
/external/libvorbis/doc/
H A DVorbis_I_spec.tex87 % NOTE: Things to watch out for: Some chars are reserved in LaTeX. You need to translate them...
/external/autotest/client/bin/
H A Djob.py531 @disk_usage_monitor.watch(log_warning, "/", self._max_disk_usage_rate)
1139 def watch(cls, *monitor_args, **monitor_dargs): member in class:disk_usage_monitor
/external/googletest/googlemock/
H A DREADME.md61 You can also watch Zhanyong's [talk](http://www.youtube.com/watch?v=sYpCyLI47rM) on Google Mock's usage and implementation.
/external/toybox/generated/
H A Dglobals.h951 // toys/pending/watch.c
1483 struct watch_data watch; member in union:global_union
H A Dnewtoys.h273 USE_WATCH(NEWTOY(watch, "^<1n#<0=2te", TOYFLAG_USR|TOYFLAG_BIN))
/external/ImageMagick/scripts/
H A Dxsnap262 . configure -cursor watch
335 . configure -cursor watch
503 . configure -cursor watch
/external/libcups/cups/
H A Dhttp-support.c33 # include <avahi-common/simple-watch.h>
H A Ddest.c38 # include <avahi-common/simple-watch.h>
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.sat4j.core_2.2.0.v20100429.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/blktrace/doc/
H A Dblktrace.tex138 Now to simply watch what is going on for a specific disk (to stop the

Completed in 516 milliseconds

12