Searched refs:iov (Results 1 - 7 of 7) sorted by relevance

/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/
H A DWarray-bounds-3.c29 struct iovec iov[43]; local
31 iov[0].iov_base = (void *) "abc";
32 iov[0].iov_len = 3;
34 iov[1].iov_base = (void *) "def";
35 iov[1].iov_len = 3;
39 iov[2 + cnt].iov_base = (void *) (time->abday[cnt] ?: "");
40 iov[2 + cnt].iov_len = strlen (iov[2 + cnt].iov_base) + 1;
45 iov[2 + cnt].iov_base = (void *) (time->day[cnt - 7] ?: "");
46 iov[
[all...]
/haiku-buildtools/gcc/libgcc/
H A Dgeneric-morestack.c295 struct iovec iov[3]; local
299 iov[0].iov_base = const_cast.p;
300 iov[0].iov_len = len;
303 iov[1].iov_base = print_int (err, buf, sizeof buf, &iov[1].iov_len);
305 iov[2].iov_base = const_cast.p;
306 iov[2].iov_len = sizeof nl - 1;
310 writev (2, iov, 3);
/haiku-buildtools/binutils/gold/
H A Dfileread.cc643 iovec iov[File_read::max_readv_entries * 2]; local
658 iov[iov_index].iov_base = discard;
659 iov[iov_index].iov_len = skip;
665 iov[iov_index].iov_base = i_entry.buffer;
666 iov[iov_index].iov_len = i_entry.size;
676 gold_assert(iov_index < sizeof iov / sizeof iov[0]);
682 ssize_t got = ::readv(this->descriptor_, iov, iov_index);
/haiku-buildtools/gcc/libsanitizer/sanitizer_common/
H A Dsanitizer_common_interceptors.inc400 INTERCEPTOR_WITH_SUFFIX(SSIZE_T, readv, int fd, __sanitizer_iovec *iov,
403 COMMON_INTERCEPTOR_ENTER(ctx, readv, fd, iov, iovcnt);
405 SSIZE_T res = REAL(readv)(fd, iov, iovcnt);
406 if (res > 0) write_iovec(ctx, iov, iovcnt, res);
416 INTERCEPTOR(SSIZE_T, preadv, int fd, __sanitizer_iovec *iov, int iovcnt,
419 COMMON_INTERCEPTOR_ENTER(ctx, preadv, fd, iov, iovcnt, offset);
421 SSIZE_T res = REAL(preadv)(fd, iov, iovcnt, offset);
422 if (res > 0) write_iovec(ctx, iov, iovcnt, res);
432 INTERCEPTOR(SSIZE_T, preadv64, int fd, __sanitizer_iovec *iov, int iovcnt,
435 COMMON_INTERCEPTOR_ENTER(ctx, preadv64, fd, iov, iovcn
[all...]
/haiku-buildtools/gcc/gcc/
H A DMakefile.in902 GCOV_IO_H = gcov-io.h gcov-iov.h auto-host.h gcov-counter.def
1553 gcov-iov$(build_exeext) gcov$(exeext) gcov-dump$(exeext) \
1866 $(MACHMODE_H) gcov-iov.h
2412 $(ALL_GTFILES_H) gtype-desc.c gtype-desc.h gcov-iov.h \
2655 # gcov-iov.c is run on the build machine to generate gcov-iov.h from version.c
2656 build/gcov-iov.o: gcov-iov.c $(BCONFIG_H) coretypes.h $(GTM_H) \
2659 build/gcov-iov$(build_exeext): build/gcov-iov
[all...]
/haiku-buildtools/gcc/libsanitizer/include/sanitizer/
H A Dlinux_syscall_hooks.h1676 #define __sanitizer_syscall_pre_vmsplice(fd, iov, nr_segs, flags) \
1677 __sanitizer_syscall_pre_impl_vmsplice((long)(fd), (long)(iov), \
1679 #define __sanitizer_syscall_post_vmsplice(res, fd, iov, nr_segs, flags) \
1680 __sanitizer_syscall_post_impl_vmsplice(res, (long)(fd), (long)(iov), \
2956 void __sanitizer_syscall_pre_impl_vmsplice(long fd, long iov, long nr_segs,
2958 void __sanitizer_syscall_post_impl_vmsplice(long res, long fd, long iov,
/haiku-buildtools/gcc/libstdc++-v3/
H A Dconfigure18798 struct iovec iov[2];
18799 writev(0, iov, 0);
18820 struct iovec iov[2];
18821 writev(0, iov, 0);
[all...]

Completed in 409 milliseconds