context            50 common/libc/string/strtok_r.c strtok_r(char *string, const char *seps, char **context)
context            57 common/libc/string/strtok_r.c 		*context = string;
context            61 common/libc/string/strtok_r.c 	head = *context;
context            74 common/libc/string/strtok_r.c 		*context = NULL;
context            86 common/libc/string/strtok_r.c 		*context = NULL;
context            91 common/libc/string/strtok_r.c 		*context = tail;
context           143 kern/include/lib.h char *strtok_r(char *buf, const char *seps, char **context);
context           606 kern/startup/menu.c 	char *context;
context           609 kern/startup/menu.c 	for (word = strtok_r(cmd, " \t", &context);
context           611 kern/startup/menu.c 	     word = strtok_r(NULL, " \t", &context)) {
context           661 kern/startup/menu.c 	char *context;
context           664 kern/startup/menu.c 	for (command = strtok_r(line, ";", &context);
context           666 kern/startup/menu.c 	     command = strtok_r(NULL, ";", &context)) {