Home
last modified time | relevance | path

Searched refs:nextArg (Results 1 – 2 of 2) sorted by relevance

/bin/shell/
Dshell.c107 char *nextArg; in DispatchCommand() local
118 nextArg = strtok(buf, " \t\r\n"); in DispatchCommand()
120 if (nextArg == NULL) in DispatchCommand()
123 argv[argc] = nextArg; in DispatchCommand()
124 nextArg = strtok(NULL, " \t\r\n"); in DispatchCommand()
/sys/kern/
Ddebug.c252 char *nextArg, *last; in Debug_Prompt() local
269 nextArg = strtok_r(buf, " \t\r\n", &last); in Debug_Prompt()
271 if (nextArg == NULL) in Debug_Prompt()
274 argv[argc] = nextArg; in Debug_Prompt()
275 nextArg = strtok_r(NULL, " \t\r\n", &last); in Debug_Prompt()