Searched defs:token (Results 1 - 5 of 5) sorted by relevance
/systemd/src/libsystemd/sd-bus/ |
H A D | bus-socket.c | 271 _cleanup_free_ char *token = NULL; local 287 r = unhexmem(p, l, (void **) &token, &len); 291 if (memchr(token, 0, len)) 294 return !!utf8_is_valid(token); 298 _cleanup_free_ char *token = NULL; local 319 r = unhexmem(p, l, (void**) &token, &len); 323 if (memchr(token, 0, len)) 326 r = parse_uid(token, &u);
|
/systemd/src/network/ |
H A D | networkd-network.c | 518 /* If the root domain appears as is, or the special token "*" is found, we'll consider this as 706 struct in6_addr *token = data; local 712 assert(token); 716 log_syntax(unit, LOG_ERR, filename, line, r, "Failed to parse IPv6 token, ignoring: %s", rvalue); 722 log_syntax(unit, LOG_ERR, filename, line, r, "IPv6 token can not be the ANY address, ignoring: %s", rvalue); 727 log_syntax(unit, LOG_ERR, filename, line, 0, "IPv6 token can not be longer than 64 bits, ignoring: %s", rvalue); 731 *token = buffer.in6;
|
/systemd/src/shared/linux/ |
H A D | auto_dev-ioctl.h | 47 __u32 token; member in struct:args_ready 51 __u32 token; member in struct:args_fail
|
/systemd/src/core/ |
H A D | automount.c | 402 static int autofs_send_ready(int dev_autofs_fd, int ioctl_fd, uint32_t token, int status) { argument 412 param.fail.token = token; 415 param.ready.token = token; 425 unsigned token; local 445 /* Autofs thankfully does not hand out 0 as a token */ 446 while ((token = PTR_TO_UINT(set_steal_first(tokens)))) { 456 token, 799 unit_serialize_item_format(u, f, "token", " 842 unsigned token; local 858 unsigned token; local [all...] |
/systemd/src/udev/ |
H A D | udev-rules.c | 69 /* every key in the rules file becomes a token */ 70 struct token *tokens; 187 /* we try to pack stuff in a way that we take only 12 bytes per token */ 188 struct token { struct 225 struct token rule; 226 struct token token[MAX_TK]; member in struct:rule_tmp 326 static void dump_token(struct udev_rules *rules, struct token *token) { argument 327 enum token_type type = token 449 dump_token(struct udev_rules *rules, struct token *token) argument 453 add_token(struct udev_rules *rules, struct token *token) argument 837 struct token *token = &rule_tmp->token[rule_tmp->token_cur]; local 1725 match_key(struct udev_rules *rules, struct token *token, const char *val) argument [all...] |
Completed in 1297 milliseconds