Lines Matching refs:next
101 const char *next = buf; in action_arg_word_end() local
103 while (next <= buf_end && *next != delim) in action_arg_word_end()
104 if (!isalnum(*next++)) in action_arg_word_end()
107 if (next == buf) in action_arg_word_end()
110 return next; in action_arg_word_end()
117 const char *next, *buf_end, *key; in kobject_action_args() local
140 next = buf + UUID_STRING_LEN; in kobject_action_args()
143 while (next <= buf_end) { in kobject_action_args()
144 if (*next != ' ') in kobject_action_args()
148 key = ++next; in kobject_action_args()
152 buf = next; in kobject_action_args()
153 next = action_arg_word_end(buf, buf_end, '='); in kobject_action_args()
154 if (!next || next > buf_end || *next != '=') in kobject_action_args()
156 key_len = next - buf; in kobject_action_args()
159 if (++next > buf_end) in kobject_action_args()
162 buf = next; in kobject_action_args()
163 next = action_arg_word_end(buf, buf_end, ' '); in kobject_action_args()
164 if (!next) in kobject_action_args()
168 key_len, key, (int) (next - buf), buf)) in kobject_action_args()