Searched refs:touser (Results 1 – 2 of 2) sorted by relevance
| /sys/kern/ |
| D | copy.c | 70 Copy_Out(void *fromkernel, uintptr_t touser, uintptr_t len) in Copy_Out() argument 76 if (touser >= MEM_USERSPACE_TOP) { in Copy_Out() 82 if (len > (MEM_USERSPACE_TOP - touser)) { in Copy_Out() 87 return copy_unsafe((void *)touser, fromkernel, len); in Copy_Out() 142 Copy_StrOut(void *fromkernel, uintptr_t touser, uintptr_t len) in Copy_StrOut() argument 148 if (touser >= MEM_USERSPACE_TOP) { in Copy_StrOut() 154 if (len > (MEM_USERSPACE_TOP - touser)) { in Copy_StrOut() 159 return copystr_unsafe((void *)touser, fromkernel, len); in Copy_StrOut()
|
| /sys/include/ |
| D | thread.h | 144 int Copy_Out(void *fromkernel, uintptr_t touser, uintptr_t len); 146 int Copy_StrOut(void *fromkernel, uintptr_t touser, uintptr_t len);
|