Lines Matching refs:buf
203 long vread(char *buf, char *addr, unsigned long count) in vread() argument
206 if ((unsigned long) buf + count < count) in vread()
207 count = -(unsigned long) buf; in vread()
209 memcpy(buf, addr, count); in vread()
213 long vwrite(char *buf, char *addr, unsigned long count) in vwrite() argument
219 memcpy(addr, buf, count); in vwrite()
1688 unsigned long addr, void *buf, int len, unsigned int gup_flags) in __access_remote_vm() argument
1706 (void *) addr, buf, len); in __access_remote_vm()
1709 buf, (void *) addr, len); in __access_remote_vm()
1732 void *buf, int len, unsigned int gup_flags) in access_remote_vm() argument
1734 return __access_remote_vm(NULL, mm, addr, buf, len, gup_flags); in access_remote_vm()
1741 int access_process_vm(struct task_struct *tsk, unsigned long addr, void *buf, int len, in access_process_vm() argument
1753 len = __access_remote_vm(tsk, mm, addr, buf, len, gup_flags); in access_process_vm()