HomeSort by: relevance | last modified time | path
    Searched defs:iovec (Results 1 - 25 of 209) sorted by relevancy

1 2 3 4 5 6 7 8 9

  /src/external/gpl3/gdb/dist/gnulib/import/
sys_uio.in.h 48 of struct iovec in any other header. */
49 struct iovec { struct
  /src/external/gpl3/gdb.old/dist/gnulib/import/
sys_uio.in.h 48 of struct iovec in any other header. */
49 struct iovec { struct
  /src/external/gpl3/gdb/dist/gdb/nat/
aarch64-linux.c 224 struct iovec iovec; local
230 iovec.iov_base = &reg64;
231 iovec.iov_len = sizeof (reg64);
235 iovec.iov_base = &reg32;
236 iovec.iov_len = sizeof (reg32);
239 if (ptrace (PTRACE_GETREGSET, lwpid, NT_ARM_TLS, &iovec) != 0)
259 struct iovec iovec; local
260 iovec.iov_base = tls_regs
    [all...]
aarch64-mte-linux-ptrace.c 124 struct iovec iovec; local
125 iovec.iov_base = tagbuf.data ();
126 iovec.iov_len = ntags;
136 if (ptrace (PTRACE_PEEKMTETAGS, tid, address, &iovec) < 0)
140 if (iovec.iov_len <= 0)
147 for (size_t i = 0; i < iovec.iov_len; i++)
155 address += iovec.iov_len * AARCH64_MTE_GRANULE_SIZE;
156 iovec.iov_len = ntags - iovec.iov_len
189 struct iovec iovec; local
    [all...]
aarch64-scalable-linux-ptrace.c 90 struct iovec iovec; local
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; local
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; local
144 struct iovec iovec; local
162 struct iovec iovec; local
180 struct iovec iovec; local
222 struct iovec iovec; local
256 struct iovec iovec; local
338 struct iovec iovec; local
425 struct iovec iovec; local
442 struct iovec iovec; local
465 struct iovec iovec; local
481 struct iovec iovec; local
514 struct iovec iovec; local
542 struct iovec iovec; local
564 struct iovec iovec; local
580 struct iovec iovec; local
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/nat/
aarch64-linux.c 224 struct iovec iovec; local
230 iovec.iov_base = &reg64;
231 iovec.iov_len = sizeof (reg64);
235 iovec.iov_base = &reg32;
236 iovec.iov_len = sizeof (reg32);
239 if (ptrace (PTRACE_GETREGSET, lwpid, NT_ARM_TLS, &iovec) != 0)
259 struct iovec iovec; local
260 iovec.iov_base = tls_regs
    [all...]
aarch64-mte-linux-ptrace.c 123 struct iovec iovec; local
124 iovec.iov_base = tagbuf;
125 iovec.iov_len = ntags;
135 if (ptrace (PTRACE_PEEKMTETAGS, tid, address, &iovec) < 0)
139 if (iovec.iov_len <= 0)
146 for (size_t i = 0; i < iovec.iov_len; i++)
154 address += iovec.iov_len * AARCH64_MTE_GRANULE_SIZE;
155 iovec.iov_len = ntags - iovec.iov_len
188 struct iovec iovec; local
    [all...]
aarch64-scalable-linux-ptrace.c 90 struct iovec iovec; local
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; local
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; local
144 struct iovec iovec; local
162 struct iovec iovec; local
180 struct iovec iovec; local
222 struct iovec iovec; local
256 struct iovec iovec; local
338 struct iovec iovec; local
425 struct iovec iovec; local
442 struct iovec iovec; local
465 struct iovec iovec; local
481 struct iovec iovec; local
514 struct iovec iovec; local
542 struct iovec iovec; local
564 struct iovec iovec; local
580 struct iovec iovec; local
    [all...]
  /src/libexec/talkd/
announce.c 99 struct iovec iovec; local
155 iovec.iov_base = big_buf;
156 iovec.iov_len = bptr - big_buf;
162 if (ttymsg(&iovec, 1, tty, RING_WAIT - 5) != NULL)
  /src/sys/sys/
uio.h 56 struct iovec { struct
82 struct iovec *uio_iov; /* pointer to array of iovecs */
113 ssize_t preadv(int, const struct iovec *, int, off_t);
114 ssize_t pwritev(int, const struct iovec *, int, off_t);
116 ssize_t readv(int, const struct iovec *, int);
117 ssize_t writev(int, const struct iovec *, int);
  /src/crypto/external/apache2/openssl/dist/include/internal/
quic_record_tx.h 168 const OSSL_QTX_IOVEC *iovec; member in struct:ossl_qtx_pkt_st
  /src/external/gpl3/gdb.old/dist/gdb/
loongarch-linux-nat.c 59 struct iovec iov;
85 struct iovec iov;
113 struct iovec iovec = { .iov_base = &regset, .iov_len = sizeof (regset) }; local
115 if (ptrace (PTRACE_GETREGSET, tid, NT_FPREGSET, (long) &iovec) < 0)
134 struct iovec iovec = { .iov_base = &regset, .iov_len = sizeof (regset) }; local
136 if (ptrace (PTRACE_GETREGSET, tid, NT_FPREGSET, (long) &iovec) < 0)
142 if (ptrace (PTRACE_SETREGSET, tid, NT_FPREGSET, (long) &iovec) < 0)
159 struct iovec iovec = { .iov_base = &regset, .iov_len = sizeof (regset) } local
186 struct iovec iovec = { .iov_base = &regset, .iov_len = sizeof (regset) }; local
218 struct iovec iovec = { .iov_base = &regset, .iov_len = sizeof (regset) }; local
246 struct iovec iovec = { .iov_base = &regset, .iov_len = sizeof (regset) }; local
    [all...]
aarch64-linux-nat.c 132 struct iovec iovec; local
140 iovec.iov_base = &regs;
142 iovec.iov_len = 18 * 4;
144 iovec.iov_len = sizeof (regs);
146 ret = ptrace (PTRACE_GETREGSET, tid, NT_PRSTATUS, &iovec);
169 struct iovec iovec; local
177 iovec.iov_base = &regs;
179 iovec.iov_len = 18 * 4
211 struct iovec iovec; local
258 struct iovec iovec; local
415 struct iovec iovec; local
445 struct iovec iovec; local
476 struct iovec iovec; local
502 struct iovec iovec; local
538 struct iovec iovec; local
863 struct iovec iovec; local
    [all...]
  /src/external/gpl3/gdb/dist/gdb/
loongarch-linux-nat.c 99 struct iovec iov;
125 struct iovec iov;
153 struct iovec iovec = { .iov_base = &regset, .iov_len = sizeof (regset) }; local
155 if (ptrace (PTRACE_GETREGSET, tid, NT_FPREGSET, (long) &iovec) < 0)
174 struct iovec iovec = { .iov_base = &regset, .iov_len = sizeof (regset) }; local
176 if (ptrace (PTRACE_GETREGSET, tid, NT_FPREGSET, (long) &iovec) < 0)
182 if (ptrace (PTRACE_SETREGSET, tid, NT_FPREGSET, (long) &iovec) < 0)
199 struct iovec iovec = { .iov_base = &regset, .iov_len = sizeof (regset) } local
226 struct iovec iovec = { .iov_base = &regset, .iov_len = sizeof (regset) }; local
258 struct iovec iovec = { .iov_base = &regset, .iov_len = sizeof (regset) }; local
286 struct iovec iovec = { .iov_base = &regset, .iov_len = sizeof (regset) }; local
    [all...]
aarch64-linux-nat.c 132 struct iovec iovec; local
140 iovec.iov_base = &regs;
142 iovec.iov_len = 18 * 4;
144 iovec.iov_len = sizeof (regs);
146 ret = ptrace (PTRACE_GETREGSET, tid, NT_PRSTATUS, &iovec);
169 struct iovec iovec; local
177 iovec.iov_base = &regs;
179 iovec.iov_len = 18 * 4
211 struct iovec iovec; local
258 struct iovec iovec; local
415 struct iovec iovec; local
445 struct iovec iovec; local
476 struct iovec iovec; local
501 struct iovec iovec; local
536 struct iovec iovec; local
861 struct iovec iovec; local
    [all...]
  /src/external/gpl3/gdb.old/dist/bfd/
format.c 109 const struct bfd_iovec *iovec; member in struct:bfd_preserve
140 preserve->iovec = abfd->iovec;
170 if (abfd->iovec != preserve->iovec)
173 won't do anything unless abfd->iovec is the cache_iovec.
174 Don't be tempted to call iovec->bclose here. We don't want
180 abfd->iovec = preserve->iovec;
  /src/sys/arch/vax/include/
rpb.h 51 long iovec; /* 4 Address of bootstrap driver */ member in struct:rpb
  /src/sys/arch/xen/xenbus/
xenbus_xs.c 186 const struct iovec *iovec,
201 msg.len += iovec[i].iov_len;
215 err = xb_write(iovec[i].iov_base, iovec[i].iov_len);
251 struct iovec iovec; local
253 /* xs_talkv only reads iovec */
254 iovec.iov_base = __UNCONST(string);
255 iovec.iov_len = strlen(string) + 1
441 struct iovec iovec[2]; local
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_platform_limits_openbsd.cc 172 CHECK_TYPE_SIZE(iovec); variable
173 CHECK_SIZE_AND_OFFSET(iovec, iov_base);
174 CHECK_SIZE_AND_OFFSET(iovec, iov_len);
sanitizer_platform_limits_solaris.cc 227 CHECK_TYPE_SIZE(iovec); variable
228 CHECK_SIZE_AND_OFFSET(iovec, iov_base);
229 CHECK_SIZE_AND_OFFSET(iovec, iov_len);
  /src/external/gpl3/binutils/dist/bfd/
format.c 111 const struct bfd_iovec *iovec; member in struct:bfd_preserve
142 preserve->iovec = abfd->iovec;
172 if (abfd->iovec != preserve->iovec)
175 won't do anything unless abfd->iovec is the cache_iovec.
176 Don't be tempted to call iovec->bclose here. We don't want
182 abfd->iovec = preserve->iovec;
  /src/external/gpl3/binutils.old/dist/bfd/
format.c 137 const struct bfd_iovec *iovec; member in struct:bfd_preserve
168 preserve->iovec = abfd->iovec;
198 if (abfd->iovec != preserve->iovec)
201 won't do anything unless abfd->iovec is the cache_iovec.
202 Don't be tempted to call iovec->bclose here. We don't want
208 abfd->iovec = preserve->iovec;
  /src/external/gpl3/gdb/dist/bfd/
format.c 109 const struct bfd_iovec *iovec; member in struct:bfd_preserve
140 preserve->iovec = abfd->iovec;
170 if (abfd->iovec != preserve->iovec)
173 won't do anything unless abfd->iovec is the cache_iovec.
174 Don't be tempted to call iovec->bclose here. We don't want
180 abfd->iovec = preserve->iovec;
  /src/external/mpl/dhcp/bind/dist/lib/isc/unix/
net.c 457 struct iovec iovec; local
477 iovec.iov_base = buf;
478 iovec.iov_len = sizeof(buf);
483 msg.msg_iov = &iovec;
553 iovec.iov_base = buf;
554 iovec.iov_len = sizeof(buf);
559 msg.msg_iov = &iovec;
  /src/sys/opencrypto/
cryptodev.c 125 struct iovec iovec[1]; /* user requests never have more */ member in struct:csession
491 cse->uio.uio_iov = cse->iovec;
493 memset(&cse->iovec, 0, sizeof(cse->iovec));
1147 crp->uio.uio_iov = crp->iovec;
1149 memset(&crp->iovec, 0, sizeof(crp->iovec));

Completed in 45 milliseconds

1 2 3 4 5 6 7 8 9