| H A D | vmsystm.h | 50 #define xcopyin(from, to, size) copy_from_user(to, from, size) argument 51 #define xcopyout(from, to, size) copy_to_user(to, from, size) argument 54 copyin(const void *from, void *to, size_t len) in copyin() argument 57 if (xcopyin(from, to, len)) in copyin() 64 copyout(const void *from, void *to, size_t len) in copyout() argument 67 if (xcopyout(from, to, len)) in copyout() 74 copyinstr(const void *from, void *to, size_t len, size_t *done) in copyinstr() argument 83 memset(to, 0, len); in copyinstr() 84 rc = copyin(from, to, len - 1); in copyinstr()
|