Home | History | Annotate | Download | only in minijail

Lines Matching refs:stringp

220 char *tokenize(char **stringp, const char *delim)
225 if (stringp == NULL || *stringp == NULL || **stringp == '\0')
233 ret = *stringp;
234 *stringp = NULL;
239 while (**stringp != '\0') {
240 found = strstr(*stringp, delim);
247 ret = *stringp;
248 *stringp = NULL;
252 if (found != *stringp) {
255 ret = *stringp;
256 *stringp = found + strlen(delim);
264 *stringp += strlen(delim);