Searched refs:reply_callbacks (Results 1 – 6 of 6) sorted by relevance
/systemd-251/src/libsystemd/sd-netlink/ |
D | sd-netlink.c | 190 hashmap_free(nl->reply_callbacks); in netlink_free() 223 } while (hashmap_contains(nl->reply_callbacks, UINT32_TO_PTR(picked))); in netlink_seal_message() 367 hashmap_remove(nl->reply_callbacks, UINT32_TO_PTR(c->serial)); in process_timeout() 395 c = hashmap_remove(nl->reply_callbacks, UINT32_TO_PTR(serial)); in process_reply() 615 if (hashmap_size(nl->reply_callbacks) >= REPLY_CALLBACKS_MAX) in sd_netlink_call_async() 618 r = hashmap_ensure_allocated(&nl->reply_callbacks, &trivial_hash_ops); in sd_netlink_call_async() 639 …r = hashmap_put(nl->reply_callbacks, UINT32_TO_PTR(slot->reply_callback.serial), &slot->reply_call… in sd_netlink_call_async() 646 … (void) hashmap_remove(nl->reply_callbacks, UINT32_TO_PTR(slot->reply_callback.serial)); in sd_netlink_call_async()
|
D | netlink-internal.h | 88 Hashmap *reply_callbacks; member
|
D | netlink-slot.c | 64 (void) hashmap_remove(nl->reply_callbacks, &slot->reply_callback.serial); in netlink_slot_disconnect()
|
/systemd-251/src/libsystemd/sd-bus/ |
D | sd-bus.c | 210 ordered_hashmap_free_free(b->reply_callbacks); in bus_free() 611 ORDERED_HASHMAP_FOREACH(c, bus->reply_callbacks) { in bus_start_running() 1887 if (!ordered_hashmap_contains(b->reply_callbacks, &new_cookie)) in next_cookie() 2266 r = ordered_hashmap_ensure_allocated(&bus->reply_callbacks, &uint64_hash_ops); in sd_bus_call_async() 2290 … r = ordered_hashmap_put(bus->reply_callbacks, &s->reply_callback.cookie, &s->reply_callback); in sd_bus_call_async() 2648 ordered_hashmap_remove(bus->reply_callbacks, &c->cookie); in process_timeout() 2718 c = ordered_hashmap_remove(bus->reply_callbacks, &m->reply_cookie); in process_reply() 3095 ordered_hashmap_remove(bus->reply_callbacks, &c->cookie); in process_closing_reply_callback() 3129 c = ordered_hashmap_first(bus->reply_callbacks); in process_closing()
|
D | bus-internal.h | 238 OrderedHashmap *reply_callbacks; member
|
D | bus-slot.c | 53 … ordered_hashmap_remove(slot->bus->reply_callbacks, &slot->reply_callback.cookie); in bus_slot_disconnect()
|