Home
last modified time | relevance | path

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

/sys/kern/
Dcopy.c34 Copy_In(uintptr_t fromuser, void *tokernel, uintptr_t len) in Copy_In() argument
40 if (fromuser >= MEM_USERSPACE_TOP) { in Copy_In()
46 if (len > (MEM_USERSPACE_TOP - fromuser)) { in Copy_In()
51 return copy_unsafe(tokernel, (void *)fromuser, len); in Copy_In()
106 Copy_StrIn(uintptr_t fromuser, void *tokernel, uintptr_t len) in Copy_StrIn() argument
112 if (fromuser >= MEM_USERSPACE_TOP) { in Copy_StrIn()
118 if (len > (MEM_USERSPACE_TOP - fromuser)) { in Copy_StrIn()
123 return copystr_unsafe(tokernel, (void *)fromuser, len); in Copy_StrIn()
/sys/include/
Dthread.h143 int Copy_In(uintptr_t fromuser, void *tokernel, uintptr_t len);
145 int Copy_StrIn(uintptr_t fromuser, void *tokernel, uintptr_t len);