HomeSort by relevance Sort by last modified time
    Searched full:watches (Results 1 - 25 of 61) sorted by null

1 2 3

  /external/webkit/LayoutTests/fast/dom/Geolocation/
permission-denied-stops-watches-expected.txt 1 Tests that when Geolocation permission is denied, watches are stopped, as well as one-shots.
permission-denied-stops-watches.html 10 <script src="resources/permission-denied-stops-watches.js"></script>
  /external/dbus/dbus/
dbus-watch.c 174 * Opaque data type representing a list of watches
176 * Automatically handles removing/re-adding watches
192 DBusList *watches; /**< Watch objects. */ member in struct:DBusWatchList
227 /* free watch_data and removes watches as a side effect */
230 _dbus_list_foreach (&watch_list->watches,
233 _dbus_list_clear (&watch_list->watches);
260 /* Add watches with the new watch function, failing on OOM */
265 link = _dbus_list_get_first_link (&watch_list->watches);
268 DBusList *next = _dbus_list_get_next_link (&watch_list->watches,
298 link2 = _dbus_list_get_first_link (&watch_list->watches);
    [all...]
dbus-server.c 104 server->watches = NULL;
124 server->watches = _dbus_watch_list_new ();
125 if (server->watches == NULL)
141 if (server->watches)
143 _dbus_watch_list_free (server->watches);
144 server->watches = NULL;
183 _dbus_watch_list_free (server->watches);
215 DBusWatchList *watches; local
225 watches = server->watches;
870 DBusWatchList *watches; local
    [all...]
dbus-server-protected.h 66 DBusWatchList *watches; /**< Our watches */ member in struct:DBusServer
dbus-spawn.c 196 DBusWatchList *watches; /**< Watches */ member in struct:DBusBabysitter
225 sitter->watches = _dbus_watch_list_new ();
226 if (sitter->watches == NULL)
352 if (sitter->watches)
353 _dbus_watch_list_free (sitter->watches);
698 return _dbus_watch_list_set_functions (sitter->watches,
1086 if (!_dbus_watch_list_add_watch (sitter->watches, sitter->error_watch))
1101 if (!_dbus_watch_list_add_watch (sitter->watches, sitter->sitter_watch))
    [all...]
dbus-mainloop.c 575 /* fill our array of fds and watches */
776 /* FIXME I think this "restart if we change the watches"
777 * approach could result in starving watches
dbus-connection.c 255 DBusWatchList *watches; /**< Stores active watches. */ member in struct:DBusConnection
652 DBusWatchList *watches; local
661 watches = connection->watches;
662 if (watches)
664 connection->watches = NULL;
669 retval = (* add_function) (watches, watch);
673 (* remove_function) (watches, watch);
678 (* toggle_function) (watches, watch, enabled)
4590 DBusWatchList *watches; local
    [all...]
  /external/chromium/base/
directory_watcher_inotify.cc 36 // Singleton to manage all inotify watches.
60 // We keep track of which delegates want to be notified on which watches.
93 // Called for each event coming from one of watches.
101 // Returns true if watch for |path| has been added successfully. Watches
126 // Keep track of registered watches.
139 // watches for recursive watch.
338 // without holding the lock. DirectoryWatcherImpl's dtor removes its watches,
339 // and to do that obtains the lock. After it finishes removing watches,
message_pump_libevent.h 107 // Libevent dispatcher. Watches all sockets registered with it, and sends
  /external/dbus/bus/
dir-watch.h 32 /* drop all the watches previously set up by bus_config_watch_directory (OS dependent, may be a NOP) */
dir-watch-dnotify.c 79 _dbus_verbose ("Dropping all watches on config directories\n");
dir-watch-kqueue.c 166 _dbus_verbose ("Dropping all watches on config directories\n");
  /external/webkit/LayoutTests/fast/dom/Geolocation/resources/
permission-denied-stops-watches.js 1 description("Tests that when Geolocation permission is denied, watches are stopped, as well as one-shots.");
  /external/dnsmasq/src/
dbus.c 69 for (w = daemon->watches; w; w = w->next)
77 w->next = daemon->watches;
78 daemon->watches = w;
88 for (up = &(daemon->watches), w = daemon->watches; w; w = w->next)
343 for (w = daemon->watches; w; w = w->next)
366 for (w = daemon->watches; w; w = w->next)
  /external/bluetooth/glib/gio/
gfilemonitor.h 47 * Watches for changes to a file.
gunixmounts.h 49 * Watches #GUnixMount<!-- -->s for changes.
gvolumemonitor.h 56 * A Volume Monitor that watches for volume events.
  /development/simulator/app/
MainFrame.h 106 /* watches for connection from runtime */
  /frameworks/base/telephony/java/android/telephony/
PhoneNumberFormattingTextWatcher.java 27 * Watches a {@link TextView} and if a phone number is entered will format it using
  /dalvik/tests/079-phantom/src/
Bitmap.java 123 * Thread that watches for un-referenced bitmap data.
  /frameworks/base/docs/html/guide/developing/tools/
monkey.jd 28 <p>When the Monkey runs, it generates events and sends them to the system. It also <i>watches</i>
33 watches for attempts to navigate to any other packages, and blocks them.</li>
225 <td>Watches for and reports crashes occurring in the Android system native code. If --kill-process-after-error is set, the system will stop.</td>
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
audit.h 61 #define AUDIT_WATCH_LIST 1009 /* List all file/dir watches */
139 #define AUDIT_FILTER_WATCH 0x03 /* Apply rule to file system watches */
  /external/webkit/WebCore/platform/android/
GeolocationServiceAndroid.cpp 107 // Called when the Geolocation object has no watches or one shots in
  /system/extras/tests/sdcard/
stopwatch.h 48 // watches on different threads. For processes, use different files

Completed in 626 milliseconds

1 2 3