Lines Matching defs:input
560 * @inputp: input string pointer
563 * from @input and get and return the matching gendisk. *@inputp is
571 char *input = *inputp;
576 if (sscanf(input, "%u:%u%n", &major, &minor, &key_len) != 2)
579 input += key_len;
580 if (!isspace(*input))
582 input = skip_spaces(input);
592 *inputp = input;
600 * @input: input string
603 * Parse per-blkg config update from @input and initialize @ctx with the
605 * part of @input following MAJ:MIN. This function returns with RCU read
609 char *input, struct blkg_conf_ctx *ctx)
617 disk = blkcg_conf_get_disk(&input);
703 ctx->body = input;