Lines Matching defs:next
102 const char *next = buf;
104 while (next <= buf_end && *next != delim)
105 if (!isalnum(*next++))
108 if (next == buf)
111 return next;
118 const char *next, *buf_end, *key;
141 next = buf + UUID_STRING_LEN;
144 while (next <= buf_end) {
145 if (*next != ' ')
149 key = ++next;
153 buf = next;
154 next = action_arg_word_end(buf, buf_end, '=');
155 if (!next || next > buf_end || *next != '=')
157 key_len = next - buf;
160 if (++next > buf_end)
163 buf = next;
164 next = action_arg_word_end(buf, buf_end, ' ');
165 if (!next)
169 key_len, key, (int) (next - buf), buf))