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