Lines Matching refs:next
42 char *next = strchr(++partdef, ')'); in parse_subpart() local
44 if (!next) { in parse_subpart()
50 length = min_t(int, next - partdef, in parse_subpart()
55 partdef = ++next; in parse_subpart()
92 char *next; in parse_parts() local
104 next = strchr(bdevdef, ':'); in parse_parts()
105 if (!next) { in parse_parts()
110 length = min_t(int, next - bdevdef, sizeof(newparts->name) - 1); in parse_parts()
117 while (next && *(++next)) { in parse_parts()
118 bdevdef = next; in parse_parts()
119 next = strchr(bdevdef, ','); in parse_parts()
121 length = (!next) ? (sizeof(buf) - 1) : in parse_parts()
122 min_t(int, next - bdevdef, sizeof(buf) - 1); in parse_parts()
168 char *next; in cmdline_parts_parse() local
173 next = pbuf = buf = kstrdup(cmdline, GFP_KERNEL); in cmdline_parts_parse()
179 while (next && *pbuf) { in cmdline_parts_parse()
180 next = strchr(pbuf, ';'); in cmdline_parts_parse()
181 if (next) in cmdline_parts_parse()
182 *next = '\0'; in cmdline_parts_parse()
188 if (next) in cmdline_parts_parse()
189 pbuf = ++next; in cmdline_parts_parse()