Lines Matching refs:slot
213 _cleanup_(sd_netlink_slot_unrefp) sd_netlink_slot *slot = NULL; in test_async()
227 …assert_se(sd_netlink_call_async(rtnl, &slot, m, link_handler, test_async_destroy, ifname, 0, "hoge… in test_async()
229 assert_se(sd_netlink_slot_get_netlink(slot) == rtnl); in test_async()
230 assert_se(sd_netlink_slot_get_userdata(slot) == ifname); in test_async()
231 assert_se(sd_netlink_slot_get_destroy_callback(slot, &destroy_callback) == 1); in test_async()
233 assert_se(sd_netlink_slot_get_floating(slot) == 0); in test_async()
234 assert_se(sd_netlink_slot_get_description(slot, &description) == 1); in test_async()
246 _cleanup_(sd_netlink_slot_unrefp) sd_netlink_slot *slot = NULL; in test_slot_set()
260 assert_se(sd_netlink_call_async(rtnl, &slot, m, link_handler, NULL, NULL, 0, NULL) >= 0); in test_slot_set()
262 assert_se(sd_netlink_slot_get_netlink(slot) == rtnl); in test_slot_set()
263 assert_se(!sd_netlink_slot_get_userdata(slot)); in test_slot_set()
264 assert_se(!sd_netlink_slot_set_userdata(slot, ifname)); in test_slot_set()
265 assert_se(sd_netlink_slot_get_userdata(slot) == ifname); in test_slot_set()
266 assert_se(sd_netlink_slot_get_destroy_callback(slot, NULL) == 0); in test_slot_set()
267 assert_se(sd_netlink_slot_set_destroy_callback(slot, test_async_destroy) >= 0); in test_slot_set()
268 assert_se(sd_netlink_slot_get_destroy_callback(slot, &destroy_callback) == 1); in test_slot_set()
270 assert_se(sd_netlink_slot_get_floating(slot) == 0); in test_slot_set()
271 assert_se(sd_netlink_slot_set_floating(slot, 1) == 1); in test_slot_set()
272 assert_se(sd_netlink_slot_get_floating(slot) == 1); in test_slot_set()
273 assert_se(sd_netlink_slot_get_description(slot, NULL) == 0); in test_slot_set()
274 assert_se(sd_netlink_slot_set_description(slot, "hogehoge") >= 0); in test_slot_set()
275 assert_se(sd_netlink_slot_get_description(slot, &description) == 1); in test_slot_set()
328 _cleanup_(sd_netlink_slot_unrefp) sd_netlink_slot *slot = NULL; in test_async_destroy_callback()
358 …assert_se(sd_netlink_call_async(rtnl, &slot, m, link_handler2, test_async_object_destroy, t, 0, NU… in test_async_destroy_callback()
364 assert_se(!(slot = sd_netlink_slot_unref(slot))); in test_async_destroy_callback()