Lines Matching refs:guid
710 static int parse_unix_address(sd_bus *b, const char **p, char **guid) { in parse_unix_address() argument
718 assert(guid); in parse_unix_address()
721 r = parse_address_key(p, "guid", guid); in parse_unix_address()
780 static int parse_tcp_address(sd_bus *b, const char **p, char **guid) { in parse_tcp_address() argument
790 assert(guid); in parse_tcp_address()
793 r = parse_address_key(p, "guid", guid); in parse_tcp_address()
845 static int parse_exec_address(sd_bus *b, const char **p, char **guid) { in parse_exec_address() argument
854 assert(guid); in parse_exec_address()
857 r = parse_address_key(p, "guid", guid); in parse_exec_address()
937 static int parse_container_unix_address(sd_bus *b, const char **p, char **guid) { in parse_container_unix_address() argument
944 assert(guid); in parse_container_unix_address()
947 r = parse_address_key(p, "guid", guid); in parse_container_unix_address()
1010 _cleanup_free_ char *guid = NULL; in bus_parse_next_address() local
1035 r = parse_unix_address(b, &a, &guid); in bus_parse_next_address()
1043 r = parse_tcp_address(b, &a, &guid); in bus_parse_next_address()
1052 r = parse_exec_address(b, &a, &guid); in bus_parse_next_address()
1061 r = parse_container_unix_address(b, &a, &guid); in bus_parse_next_address()
1073 if (guid) { in bus_parse_next_address()
1074 r = sd_id128_from_string(guid, &b->server_id); in bus_parse_next_address()