Lines Matching refs:next
74 char *next = strchr(++partdef, ')'); in parse_subpart() local
76 if (!next) { in parse_subpart()
82 length = min_t(int, next - partdef, in parse_subpart()
87 partdef = ++next; in parse_subpart()
124 char *next; in parse_parts() local
136 next = strchr(bdevdef, ':'); in parse_parts()
137 if (!next) { in parse_parts()
142 length = min_t(int, next - bdevdef, sizeof(newparts->name) - 1); in parse_parts()
149 while (next && *(++next)) { in parse_parts()
150 bdevdef = next; in parse_parts()
151 next = strchr(bdevdef, ','); in parse_parts()
153 length = (!next) ? (sizeof(buf) - 1) : in parse_parts()
154 min_t(int, next - bdevdef, sizeof(buf) - 1); in parse_parts()
200 char *next; in cmdline_parts_parse() local
205 next = pbuf = buf = kstrdup(cmdline, GFP_KERNEL); in cmdline_parts_parse()
211 while (next && *pbuf) { in cmdline_parts_parse()
212 next = strchr(pbuf, ';'); in cmdline_parts_parse()
213 if (next) in cmdline_parts_parse()
214 *next = '\0'; in cmdline_parts_parse()
220 if (next) in cmdline_parts_parse()
221 pbuf = ++next; in cmdline_parts_parse()