Home | History | Annotate | Download | only in coregrind

Lines Matching full:rsrc

91 /* Read len bytes from target's rsrc to local ldst.  Returns True if
94 Bool ptrace_READ_BLOCK ( Child* ch, Int len, void* ldst, Addr64 rsrc )
98 r = ptrace64( PT_READ_BLOCK, (ULong)ch->pid, rsrc, len, ldst );
259 static Bool ptrace_read_page ( Child* child, UChar* ldst, Addr64 rsrc )
264 assert(IS_PAGE_ALIGNED(rsrc));
267 err = ptrace_READ_BLOCK(child, 1024, ldst + off, rsrc + off);
271 err = ptrace_READ_BLOCK(child, 1024, ldst + off, rsrc + off);
275 err = ptrace_READ_BLOCK(child, 1024, ldst + off, rsrc + off);
279 err = ptrace_READ_BLOCK(child, 1024, ldst + off, rsrc + off);