Home | History | Annotate | Download | only in blkid

Lines Matching refs:token

56  * Locate a device name from a token (NAME=value string), or (name, value)
57 * pair. In the case of a token, value is ignored. If the "token" is not
61 char *blkid_get_devname(blkid_cache cache, const char *token,
69 if (!token)
78 printf("looking for %s%s%s %s\n", token, value ? "=" : "",
82 if (!strchr(token, '=')) {
83 ret = blkid_strdup(token);
86 blkid_parse_tag_string(token, &t, &v);
89 token = t;
93 dev = blkid_find_dev_with_tag(c, token, value);
118 "Find which device holds a given token or\n"