Lines Matching full:iovec
37 struct iovec iovec;
38 iovec.iov_base = regs;
39 iovec.iov_len = sizeof *regs;
40 return ptrace(PTRACE_GETREGSET, proc->pid, NT_PRSTATUS, &iovec) < 0
47 struct iovec iovec;
48 iovec.iov_base = regs;
49 iovec.iov_len = sizeof *regs;
50 return ptrace(PTRACE_SETREGSET, proc->pid, NT_PRSTATUS, &iovec) < 0
58 struct iovec iovec;
59 iovec.iov_base = regs;
60 iovec.iov_len = sizeof *regs;
61 return ptrace(PTRACE_GETREGSET, proc->pid, NT_FPREGSET, &iovec) < 0