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

  /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-connection.c 255 DBusWatchList *watches; /**< Stores active watches. */ member in struct:DBusConnection
646 DBusWatchList *watches; local
655 watches = connection->watches;
656 if (watches)
658 connection->watches = NULL;
663 retval = (* add_function) (watches, watch);
667 (* remove_function) (watches, watch);
672 (* toggle_function) (watches, watch, enabled)
4531 DBusWatchList *watches; local
    [all...]
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...]
  /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)
dnsmasq.c 203 daemon->watches = NULL;
    [all...]
dnsmasq.h 681 struct watch *watches; member in struct:daemon
  /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/bluetooth/bluez/src/
device.c 116 GSList *watches; /* List of disconnect_data */ member in struct:btd_device
674 l = device->watches;
686 g_slist_foreach(device->watches, (GFunc) g_free, NULL);
687 g_slist_free(device->watches);
688 device->watches = NULL;
878 device->watches = g_slist_append(device->watches, data);
887 for (l = device->watches; l; l = l->next) {
891 device->watches = g_slist_remove(device->watches,
    [all...]

Completed in 308 milliseconds