stoplen           118 kern/vm/copyinout.c copycheck(const_userptr_t userptr, size_t len, size_t *stoplen)
stoplen           122 kern/vm/copyinout.c 	*stoplen = len;
stoplen           139 kern/vm/copyinout.c 		*stoplen = USERSPACETOP - bot;
stoplen           156 kern/vm/copyinout.c 	size_t stoplen;
stoplen           158 kern/vm/copyinout.c 	result = copycheck(usersrc, len, &stoplen);
stoplen           162 kern/vm/copyinout.c 	if (stoplen != len) {
stoplen           192 kern/vm/copyinout.c 	size_t stoplen;
stoplen           194 kern/vm/copyinout.c 	result = copycheck(userdest, len, &stoplen);
stoplen           198 kern/vm/copyinout.c 	if (stoplen != len) {
stoplen           235 kern/vm/copyinout.c copystr(char *dest, const char *src, size_t maxlen, size_t stoplen,
stoplen           240 kern/vm/copyinout.c 	for (i=0; i<maxlen && i<stoplen; i++) {
stoplen           249 kern/vm/copyinout.c 	if (stoplen < maxlen) {
stoplen           269 kern/vm/copyinout.c 	size_t stoplen;
stoplen           271 kern/vm/copyinout.c 	result = copycheck(usersrc, len, &stoplen);
stoplen           284 kern/vm/copyinout.c 	result = copystr(dest, (const char *)usersrc, len, stoplen, actual);
stoplen           302 kern/vm/copyinout.c 	size_t stoplen;
stoplen           304 kern/vm/copyinout.c 	result = copycheck(userdest, len, &stoplen);
stoplen           317 kern/vm/copyinout.c 	result = copystr((char *)userdest, src, len, stoplen, actual);