Searched refs:map_id_to_client (Results 1 – 2 of 2) sorted by relevance
/third_party/glib/gio/ |
D | gdbusnamewatching.c | 84 static GHashTable *map_id_to_client = NULL; variable 266 g_assert (map_id_to_client != NULL); in dup_client() 268 client = g_hash_table_lookup (map_id_to_client, GUINT_TO_POINTER (watcher_id)); in dup_client() 619 if (map_id_to_client == NULL) in g_bus_watch_name() 621 map_id_to_client = g_hash_table_new (g_direct_hash, g_direct_equal); in g_bus_watch_name() 623 g_hash_table_insert (map_id_to_client, in g_bus_watch_name() 681 if (map_id_to_client == NULL) in g_bus_watch_name_on_connection() 682 map_id_to_client = g_hash_table_new (g_direct_hash, g_direct_equal); in g_bus_watch_name_on_connection() 684 g_hash_table_insert (map_id_to_client, in g_bus_watch_name_on_connection() 881 map_id_to_client == NULL || in g_bus_unwatch_name() [all …]
|
D | gdbusnameowning.c | 82 static GHashTable *map_id_to_client = NULL; variable 564 if (map_id_to_client == NULL) in g_bus_own_name_on_connection() 566 map_id_to_client = g_hash_table_new (g_direct_hash, g_direct_equal); in g_bus_own_name_on_connection() 568 g_hash_table_insert (map_id_to_client, in g_bus_own_name_on_connection() 673 if (map_id_to_client == NULL) in g_bus_own_name() 675 map_id_to_client = g_hash_table_new (g_direct_hash, g_direct_equal); in g_bus_own_name() 677 g_hash_table_insert (map_id_to_client, in g_bus_own_name() 911 if (owner_id == 0 || map_id_to_client == NULL || in g_bus_unown_name() 912 (client = g_hash_table_lookup (map_id_to_client, GUINT_TO_POINTER (owner_id))) == NULL) in g_bus_unown_name() 919 g_warn_if_fail (g_hash_table_remove (map_id_to_client, GUINT_TO_POINTER (owner_id))); in g_bus_unown_name()
|