Lines Matching full:next
43 char *next = strchr(++partdef, ')'); in parse_subpart() local
45 if (!next) { in parse_subpart()
51 length = min_t(int, next - partdef, in parse_subpart()
56 partdef = ++next; in parse_subpart()
93 char *next; in parse_parts() local
105 next = strchr(bdevdef, ':'); in parse_parts()
106 if (!next) { in parse_parts()
111 length = min_t(int, next - bdevdef, sizeof(newparts->name) - 1); in parse_parts()
118 while (next && *(++next)) { in parse_parts()
119 bdevdef = next; in parse_parts()
120 next = strchr(bdevdef, ','); in parse_parts()
122 length = (!next) ? (sizeof(buf) - 1) : in parse_parts()
123 min_t(int, next - bdevdef, sizeof(buf) - 1); in parse_parts()
169 char *next; in cmdline_parts_parse() local
174 next = pbuf = buf = kstrdup(cmdline, GFP_KERNEL); in cmdline_parts_parse()
180 while (next && *pbuf) { in cmdline_parts_parse()
181 next = strchr(pbuf, ';'); in cmdline_parts_parse()
182 if (next) in cmdline_parts_parse()
183 *next = '\0'; in cmdline_parts_parse()
189 if (next) in cmdline_parts_parse()
190 pbuf = ++next; in cmdline_parts_parse()