/external/dbus/dbus/ |
dbus-server-protected.h | 66 DBusWatchList *watches; /**< Our watches */ member in struct:DBusServer
|
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-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-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-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/bluetooth/bluez/src/ |
device.c | 117 GSList *watches; /* List of disconnect_data */ member in struct:btd_device 814 l = device->watches; 826 g_slist_foreach(device->watches, (GFunc) g_free, NULL); 827 g_slist_free(device->watches); 828 device->watches = NULL; 1023 device->watches = g_slist_append(device->watches, data); 1032 for (l = device->watches; l; l = l->next) { 1036 device->watches = g_slist_remove(device->watches, [all...] |
/external/dnsmasq/src/ |
dnsmasq.h | 681 struct watch *watches; member in struct:daemon
|