Home | History | Annotate | Download | only in ptrace

Lines Matching refs:iov

108 	struct iovec iov;
113 iov.iov_base = regs;
114 iov.iov_len = n * sizeof(unsigned long);
116 ret = ptrace(PTRACE_GETREGSET, child, type, &iov);
128 struct iovec iov;
133 iov.iov_base = regs;
134 iov.iov_len = n * sizeof(unsigned long);
136 ret = ptrace(PTRACE_SETREGSET, child, type, &iov);
146 struct iovec iov;
155 iov.iov_base = (u64 *) reg;
156 iov.iov_len = sizeof(unsigned long);
158 ret = ptrace(PTRACE_GETREGSET, child, NT_PPC_TAR, &iov);
166 ret = ptrace(PTRACE_GETREGSET, child, NT_PPC_PPR, &iov);
174 ret = ptrace(PTRACE_GETREGSET, child, NT_PPC_DSCR, &iov);
192 struct iovec iov;
202 iov.iov_base = (u64 *) reg;
203 iov.iov_len = sizeof(unsigned long);
206 ret = ptrace(PTRACE_SETREGSET, child, NT_PPC_TAR, &iov);
213 ret = ptrace(PTRACE_SETREGSET, child, NT_PPC_PPR, &iov);
220 ret = ptrace(PTRACE_SETREGSET, child, NT_PPC_DSCR, &iov);
235 struct iovec iov;
245 iov.iov_base = (u64 *) reg;
246 iov.iov_len = sizeof(unsigned long);
248 ret = ptrace(PTRACE_GETREGSET, child, NT_PPC_TM_CTAR, &iov);
256 ret = ptrace(PTRACE_GETREGSET, child, NT_PPC_TM_CPPR, &iov);
264 ret = ptrace(PTRACE_GETREGSET, child, NT_PPC_TM_CDSCR, &iov);
283 struct iovec iov;
293 iov.iov_base = (u64 *) reg;
294 iov.iov_len = sizeof(unsigned long);
297 ret = ptrace(PTRACE_SETREGSET, child, NT_PPC_TM_CTAR, &iov);
304 ret = ptrace(PTRACE_SETREGSET, child, NT_PPC_TM_CPPR, &iov);
311 ret = ptrace(PTRACE_SETREGSET, child, NT_PPC_TM_CDSCR, &iov);
370 struct iovec iov;
374 iov.iov_base = regs;
375 iov.iov_len = sizeof(struct fpr_regs);
377 ret = ptrace(PTRACE_GETREGSET, child, NT_PPC_TM_CFPR, &iov);
394 struct iovec iov;
398 iov.iov_base = regs;
399 iov.iov_len = sizeof(struct fpr_regs);
401 ret = ptrace(PTRACE_GETREGSET, child, NT_PPC_TM_CFPR, &iov);
410 ret = ptrace(PTRACE_SETREGSET, child, NT_PPC_TM_CFPR, &iov);
475 struct iovec iov;
484 iov.iov_base = (u64 *) regs;
485 iov.iov_len = sizeof(struct pt_regs);
487 ret = ptrace(PTRACE_GETREGSET, child, NT_PPC_TM_CGPR, &iov);
504 struct iovec iov;
512 iov.iov_base = (u64 *) regs;
513 iov.iov_len = sizeof(struct pt_regs);
515 ret = ptrace(PTRACE_GETREGSET, child, NT_PPC_TM_CGPR, &iov);
524 ret = ptrace(PTRACE_SETREGSET, child, NT_PPC_TM_CGPR, &iov);
548 struct iovec iov;
551 iov.iov_base = (u64 *) regs;
552 iov.iov_len = sizeof(regs);
553 ret = ptrace(PTRACE_GETREGSET, child, NT_PPC_TM_CVMX, &iov);
578 struct iovec iov;
582 iov.iov_base = (u64 *) regs;
583 iov.iov_len = sizeof(regs);
584 ret = ptrace(PTRACE_SETREGSET, child, NT_PPC_TM_CVMX, &iov);
608 struct iovec iov;
611 iov.iov_base = (u64 *) regs;
612 iov.iov_len = sizeof(regs);
613 ret = ptrace(PTRACE_GETREGSET, child, NT_PPC_TM_CVSX, &iov);
637 struct iovec iov;
641 iov.iov_base = (u64 *) regs;
642 iov.iov_len = sizeof(regs);
643 ret = ptrace(PTRACE_SETREGSET, child, NT_PPC_TM_CVSX, &iov);
655 struct iovec iov;
664 iov.iov_base = (u64 *) regs;
665 iov.iov_len = sizeof(struct tm_spr_regs);
667 ret = ptrace(PTRACE_GETREGSET, child, NT_PPC_TM_SPR, &iov);