Lines Matching refs:buf
189 long vread(char *buf, char *addr, unsigned long count) in vread() argument
192 if ((unsigned long) buf + count < count) in vread()
193 count = -(unsigned long) buf; in vread()
195 memcpy(buf, addr, count); in vread()
199 long vwrite(char *buf, char *addr, unsigned long count) in vwrite() argument
205 memcpy(addr, buf, count); in vwrite()
1704 unsigned long addr, void *buf, int len, unsigned int gup_flags) in __access_remote_vm() argument
1722 (void *) addr, buf, len); in __access_remote_vm()
1725 buf, (void *) addr, len); in __access_remote_vm()
1748 void *buf, int len, unsigned int gup_flags) in access_remote_vm() argument
1750 return __access_remote_vm(NULL, mm, addr, buf, len, gup_flags); in access_remote_vm()
1757 int access_process_vm(struct task_struct *tsk, unsigned long addr, void *buf, int len, in access_process_vm() argument
1769 len = __access_remote_vm(tsk, mm, addr, buf, len, gup_flags); in access_process_vm()