Searched refs:ios (Results 1 - 2 of 2) sorted by relevance

/bionic/tests/
H A Dsys_uio_test.cpp28 iovec ios[] = { { buf1, 5 }, { buf2, 5 } }; local
30 ASSERT_EQ(10, writev(tf.fd, ios, 2));
37 ASSERT_EQ(10, readv(tf.fd, ios, 2));
48 iovec ios[] = { { buf, 5 } }; local
50 ASSERT_EQ(5, write_fn(tf.fd, ios, 1, 5));
54 ASSERT_EQ(5, write_fn(tf.fd, ios, 1, 0));
57 ASSERT_EQ(5, read_fn(tf.fd, ios, 1, 5));
59 ASSERT_EQ(5, read_fn(tf.fd, ios, 1, 0));
/bionic/libc/bionic/
H A Dlegacy_32_bit_support.cpp87 ssize_t preadv(int fd, const struct iovec* ios, int count, off_t offset) { argument
88 return __preadv64(fd, ios, count, offset, 0);
90 ssize_t preadv64(int fd, const struct iovec* ios, int count, off64_t offset) { argument
91 return __preadv64(fd, ios, count, offset, offset >> 32);
93 ssize_t pwritev(int fd, const struct iovec* ios, int count, off_t offset) { argument
94 return __pwritev64(fd, ios, count, offset, 0);
96 ssize_t pwritev64(int fd, const struct iovec* ios, int count, off64_t offset) { argument
97 return __pwritev64(fd, ios, count, offset, offset >> 32);

Completed in 14 milliseconds