Searched defs:iovec (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/net/base/
H A Diovec.h12 struct iovec { struct
/external/kernel-headers/original/linux/
H A Duio.h20 struct iovec struct
42 #define UIO_MAXIOV 16 /* Maximum iovec's in one operation
48 * Total number of bytes covered by an iovec.
50 * NOTE that it is not safe to use this function until all the iovec's
54 static inline size_t iov_length(const struct iovec *iov, unsigned long nr_segs)
64 unsigned long iov_shorten(struct iovec *iov, unsigned long nr_segs, size_t to);
/external/chromium_org/net/quic/
H A Dquic_stream_sequencer_test.cc95 iovec iovecs[5];
101 bool VerifyIovecs(iovec* iovecs,
118 bool VerifyIovec(const iovec& iovec, StringPiece expected) { argument
119 if (iovec.iov_len != expected.length()) {
120 LOG(ERROR) << "Invalid length: " << iovec.iov_len
124 if (memcmp(iovec.iov_base, expected.data(), expected.length()) != 0) {
125 LOG(ERROR) << "Invalid data: " << static_cast<char*>(iovec.iov_base)
280 iovec iov[2];
341 iovec read_io
[all...]
H A Dreliable_quic_stream.cc103 size_t ReliableQuicStream::Readv(const struct iovec* iov, size_t iov_len) {
123 int ReliableQuicStream::GetReadableRegions(iovec* iov, size_t iov_len) {
370 struct iovec iovec; local
371 if (sequencer_.GetReadableRegions(&iovec, 1) == 0) {
376 StringPiece(static_cast<char*>(iovec.iov_base),
377 iovec.iov_len),
379 DCHECK_LE(bytes_consumed, iovec.iov_len);
/external/qemu/
H A Dqemu-common.h71 struct iovec { struct
326 struct iovec *iov;
333 void qemu_iovec_init_external(QEMUIOVector *qiov, struct iovec *iov, int niov);
/external/chromium_org/third_party/usrsctp/overrides/usrsctplib/netinet/
H A Dsctp_os_userspace.h286 struct iovec { struct
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_platform_limits_posix.cc780 CHECK_TYPE_SIZE(iovec); variable
781 CHECK_SIZE_AND_OFFSET(iovec, iov_base);
782 CHECK_SIZE_AND_OFFSET(iovec, iov_len);

Completed in 277 milliseconds