Lines Matching refs:iov

104 	struct iovec iov;
109 iov.iov_base = regs;
110 iov.iov_len = n * sizeof(unsigned long);
112 ret = ptrace(PTRACE_GETREGSET, child, type, &iov);
124 struct iovec iov;
129 iov.iov_base = regs;
130 iov.iov_len = n * sizeof(unsigned long);
132 ret = ptrace(PTRACE_SETREGSET, child, type, &iov);
142 struct iovec iov;
151 iov.iov_base = (u64 *) reg;
152 iov.iov_len = sizeof(unsigned long);
154 ret = ptrace(PTRACE_GETREGSET, child, NT_PPC_TAR, &iov);
162 ret = ptrace(PTRACE_GETREGSET, child, NT_PPC_PPR, &iov);
170 ret = ptrace(PTRACE_GETREGSET, child, NT_PPC_DSCR, &iov);
188 struct iovec iov;
198 iov.iov_base = (u64 *) reg;
199 iov.iov_len = sizeof(unsigned long);
202 ret = ptrace(PTRACE_SETREGSET, child, NT_PPC_TAR, &iov);
209 ret = ptrace(PTRACE_SETREGSET, child, NT_PPC_PPR, &iov);
216 ret = ptrace(PTRACE_SETREGSET, child, NT_PPC_DSCR, &iov);
231 struct iovec iov;
241 iov.iov_base = (u64 *) reg;
242 iov.iov_len = sizeof(unsigned long);
244 ret = ptrace(PTRACE_GETREGSET, child, NT_PPC_TM_CTAR, &iov);
252 ret = ptrace(PTRACE_GETREGSET, child, NT_PPC_TM_CPPR, &iov);
260 ret = ptrace(PTRACE_GETREGSET, child, NT_PPC_TM_CDSCR, &iov);
279 struct iovec iov;
289 iov.iov_base = (u64 *) reg;
290 iov.iov_len = sizeof(unsigned long);
293 ret = ptrace(PTRACE_SETREGSET, child, NT_PPC_TM_CTAR, &iov);
300 ret = ptrace(PTRACE_SETREGSET, child, NT_PPC_TM_CPPR, &iov);
307 ret = ptrace(PTRACE_SETREGSET, child, NT_PPC_TM_CDSCR, &iov);
366 struct iovec iov;
370 iov.iov_base = regs;
371 iov.iov_len = sizeof(struct fpr_regs);
373 ret = ptrace(PTRACE_GETREGSET, child, NT_PPC_TM_CFPR, &iov);
390 struct iovec iov;
394 iov.iov_base = regs;
395 iov.iov_len = sizeof(struct fpr_regs);
397 ret = ptrace(PTRACE_GETREGSET, child, NT_PPC_TM_CFPR, &iov);
406 ret = ptrace(PTRACE_SETREGSET, child, NT_PPC_TM_CFPR, &iov);
471 struct iovec iov;
480 iov.iov_base = (u64 *) regs;
481 iov.iov_len = sizeof(struct pt_regs);
483 ret = ptrace(PTRACE_GETREGSET, child, NT_PPC_TM_CGPR, &iov);
500 struct iovec iov;
508 iov.iov_base = (u64 *) regs;
509 iov.iov_len = sizeof(struct pt_regs);
511 ret = ptrace(PTRACE_GETREGSET, child, NT_PPC_TM_CGPR, &iov);
520 ret = ptrace(PTRACE_SETREGSET, child, NT_PPC_TM_CGPR, &iov);
544 struct iovec iov;
547 iov.iov_base = (u64 *) regs;
548 iov.iov_len = sizeof(regs);
549 ret = ptrace(PTRACE_GETREGSET, child, NT_PPC_TM_CVMX, &iov);
574 struct iovec iov;
578 iov.iov_base = (u64 *) regs;
579 iov.iov_len = sizeof(regs);
580 ret = ptrace(PTRACE_SETREGSET, child, NT_PPC_TM_CVMX, &iov);
604 struct iovec iov;
607 iov.iov_base = (u64 *) regs;
608 iov.iov_len = sizeof(regs);
609 ret = ptrace(PTRACE_GETREGSET, child, NT_PPC_TM_CVSX, &iov);
633 struct iovec iov;
637 iov.iov_base = (u64 *) regs;
638 iov.iov_len = sizeof(regs);
639 ret = ptrace(PTRACE_SETREGSET, child, NT_PPC_TM_CVSX, &iov);
651 struct iovec iov;
660 iov.iov_base = (u64 *) regs;
661 iov.iov_len = sizeof(struct tm_spr_regs);
663 ret = ptrace(PTRACE_GETREGSET, child, NT_PPC_TM_SPR, &iov);