Lines Matching refs:next
48 char *cmdline_end, *next, *pend; in rkparm_param_parse() local
58 next = strchr(blkdev_parts, ':'); in rkparm_param_parse()
69 while (next) { in rkparm_param_parse()
71 next++; in rkparm_param_parse()
72 if (*next == '-') { in rkparm_param_parse()
74 next++; in rkparm_param_parse()
76 size = simple_strtoul(next, &next, 16); in rkparm_param_parse()
79 next++; in rkparm_param_parse()
80 start = simple_strtoul(next, &next, 16); in rkparm_param_parse()
81 next++; in rkparm_param_parse()
82 pend = strchr(next, ')'); in rkparm_param_parse()
85 len = min_t(int, pend - next, PART_NAME_LEN); in rkparm_param_parse()
100 strncpy(part->name, next, len); in rkparm_param_parse()
103 next = strchr(next, ','); in rkparm_param_parse()