Searched defs:tokens (Results 1 - 4 of 4) sorted by relevance

/systemd/src/core/
H A Dautomount.h46 Set *tokens; member in struct:Automount
H A Dautomount.c90 static int automount_send_ready(Automount *a, Set *tokens, int status);
100 automount_send_ready(a, a->tokens, -EHOSTDOWN);
126 a->tokens = set_free(a->tokens);
423 static int automount_send_ready(Automount *a, Set *tokens, int status) { argument
431 if (set_isempty(tokens))
446 while ((token = PTR_TO_UINT(set_steal_first(tokens)))) {
475 automount_send_ready(a, a->tokens, 0);
490 automount_send_ready(a, a->tokens, -ENODEV);
534 set_clear(a->tokens);
[all...]
/systemd/src/basic/
H A Djson.c622 static int json_scoped_parse(JsonVariant **tokens, size_t *i, size_t n, JsonVariant *scope) { argument
634 assert(tokens);
638 while((var = *i < n ? tokens[(*i)++] : NULL) != NULL) {
682 r = json_scoped_parse(tokens, i, n, v);
736 static int json_parse_tokens(JsonVariant **tokens, size_t ntokens, JsonVariant **rv) { argument
742 assert(tokens);
745 e = tokens[it++];
753 r = json_scoped_parse(tokens, &it, ntokens, p);
763 static int json_tokens(const char *string, size_t size, JsonVariant ***tokens, size_t *n) { argument
846 *tokens
[all...]
/systemd/src/udev/
H A Dudev-rules.c70 struct token *tokens; member in struct:udev_rules
124 /* tokens of a rule are sorted/handled in this order */
336 const char *tks_ptr = (char *)rules->tokens;
440 log_debug("dumping %u (%zu bytes) tokens, %u (%zu bytes) strings",
446 dump_token(rules, &rules->tokens[i]);
456 struct token *tokens; local
464 tokens = realloc(rules->tokens, (rules->token_max + add ) * sizeof(struct token));
465 if (tokens == NULL)
467 rules->tokens
[all...]

Completed in 588 milliseconds