Home | History | Annotate | Download | only in nat

Lines Matching refs:iovec

90   struct iovec iovec;
92 iovec.iov_len = sizeof (header);
93 iovec.iov_base = &header;
95 if (ptrace (PTRACE_GETREGSET, tid, NT_ARM_SVE, &iovec) < 0)
108 struct iovec iovec;
110 iovec.iov_len = sizeof (header);
111 iovec.iov_base = (void *) &header;
113 if (ptrace (PTRACE_SETREGSET, tid, NT_ARM_SVE, &iovec) < 0)
126 struct iovec iovec;
128 iovec.iov_len = sizeof (header);
129 iovec.iov_base = &header;
131 if (ptrace (PTRACE_GETREGSET, tid, NT_ARM_SSVE, &iovec) < 0)
144 struct iovec iovec;
146 iovec.iov_len = sizeof (header);
147 iovec.iov_base = (void *) &header;
149 if (ptrace (PTRACE_SETREGSET, tid, NT_ARM_SSVE, &iovec) < 0)
162 struct iovec iovec;
164 iovec.iov_len = sizeof (header);
165 iovec.iov_base = &header;
167 if (ptrace (PTRACE_GETREGSET, tid, NT_ARM_ZA, &iovec) < 0)
180 struct iovec iovec;
182 iovec.iov_len = sizeof (header);
183 iovec.iov_base = (void *) &header;
185 if (ptrace (PTRACE_SETREGSET, tid, NT_ARM_ZA, &iovec) < 0)
222 struct iovec iovec;
224 iovec.iov_len = sizeof (header);
225 iovec.iov_base = &header;
231 &iovec) < 0)
256 struct iovec iovec;
259 iovec.iov_len = sizeof (header);
260 iovec.iov_base = &header;
266 &iovec) < 0)
275 &iovec) < 0)
338 struct iovec iovec;
362 iovec.iov_len = sizeof (header);
363 iovec.iov_base = &header;
365 if (ptrace (PTRACE_SETREGSET, tid, NT_ARM_ZA, &iovec) < 0)
425 struct iovec iovec;
426 iovec.iov_base = sve_state.data ();
427 iovec.iov_len = sve_state.size ();
431 &iovec) < 0)
442 struct iovec iovec;
444 iovec.iov_base = (void *) sve_state.data ();
445 iovec.iov_len = sve_state.size ();
449 &iovec) < 0)
465 struct iovec iovec;
466 iovec.iov_len = header.size;
468 iovec.iov_base = za_state.data ();
470 if (ptrace (PTRACE_GETREGSET, tid, NT_ARM_ZA, &iovec) < 0)
481 struct iovec iovec;
483 iovec.iov_base = (void *) za_state.data ();
484 iovec.iov_len = za_state.size ();
486 if (ptrace (PTRACE_SETREGSET, tid, NT_ARM_ZA, &iovec) < 0)
514 struct iovec iovec;
515 iovec.iov_len = za_new_state.size ();
516 iovec.iov_base = za_new_state.data ();
518 if (ptrace (PTRACE_SETREGSET, tid, NT_ARM_ZA, &iovec) < 0)
542 struct iovec iovec;
543 iovec.iov_len = AARCH64_SME2_ZT0_SIZE;
544 iovec.iov_base = zt_state.data ();
546 if (ptrace (PTRACE_GETREGSET, tid, NT_ARM_ZT, &iovec) < 0)
564 struct iovec iovec;
565 iovec.iov_len = zt_state.size ();
566 iovec.iov_base = (void *) zt_state.data ();
569 if (ptrace (PTRACE_SETREGSET, tid, NT_ARM_ZT, &iovec) < 0)
580 struct iovec iovec;
581 iovec.iov_len = AARCH64_SME2_ZT0_SIZE;
582 iovec.iov_base = (void *) zt_state;
584 if (ptrace (PTRACE_GETREGSET, tid, NT_ARM_ZT, &iovec) < 0)