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