Searched refs:sender_id (Results 1 - 2 of 2) sorted by relevance
/systemd/src/shared/ |
H A D | bus-util.h | 190 int bus_path_encode_unique(sd_bus *b, const char *prefix, const char *sender_id, const char *external_id, char **ret_path);
|
H A D | bus-util.c | 2213 * @sender_id: unique-name of client, or NULL 2237 * template '/prefix/sender_id/external_id' and returns the new path in 2239 * If @sender_id is NULL, the unique-name of @b is used. If @external_id is 2241 * cookie). If both @sender_id and @external_id are given, @b can be passed as 2246 int bus_path_encode_unique(sd_bus *b, const char *prefix, const char *sender_id, const char *external_id, char **ret_path) { argument 2251 assert_return(b || (sender_id && external_id), -EINVAL); 2255 if (!sender_id) { 2256 r = sd_bus_get_unique_name(b, &sender_id); 2266 sender_label = bus_label_escape(sender_id);
|
Completed in 1207 milliseconds