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);
539 struct iovec iov;
548 iov.iov_base = (u64 *) regs;
549 iov.iov_len = sizeof(struct pt_regs);
551 ret = ptrace(PTRACE_GETREGSET, child, NT_PPC_TM_CGPR, &iov);
568 struct iovec iov;
576 iov.iov_base = (u64 *) regs;
577 iov.iov_len = sizeof(struct pt_regs);
579 ret = ptrace(PTRACE_GETREGSET, child, NT_PPC_TM_CGPR, &iov);
588 ret = ptrace(PTRACE_SETREGSET, child, NT_PPC_TM_CGPR, &iov);
612 struct iovec iov;
615 iov.iov_base = (u64 *) regs;
616 iov.iov_len = sizeof(regs);
617 ret = ptrace(PTRACE_GETREGSET, child, NT_PPC_TM_CVMX, &iov);
642 struct iovec iov;
646 iov.iov_base = (u64 *) regs;
647 iov.iov_len = sizeof(regs);
648 ret = ptrace(PTRACE_SETREGSET, child, NT_PPC_TM_CVMX, &iov);
672 struct iovec iov;
675 iov.iov_base = (u64 *) regs;
676 iov.iov_len = sizeof(regs);
677 ret = ptrace(PTRACE_GETREGSET, child, NT_PPC_TM_CVSX, &iov);
701 struct iovec iov;
705 iov.iov_base = (u64 *) regs;
706 iov.iov_len = sizeof(regs);
707 ret = ptrace(PTRACE_SETREGSET, child, NT_PPC_TM_CVSX, &iov);
719 struct iovec iov;
728 iov.iov_base = (u64 *) regs;
729 iov.iov_len = sizeof(struct tm_spr_regs);
731 ret = ptrace(PTRACE_GETREGSET, child, NT_PPC_TM_SPR, &iov);