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

/system/core/liblog/
H A Duio.c25 LIBLOG_ABI_PUBLIC int readv(int fd, struct iovec *vecs, int count) argument
29 for ( ; count > 0; count--, vecs++ ) {
30 char* buf = vecs->iov_base;
31 int len = vecs->iov_len;
52 LIBLOG_ABI_PUBLIC int writev(int fd, const struct iovec *vecs, int count) argument
56 for ( ; count > 0; count--, vecs++ ) {
57 const char* buf = vecs->iov_base;
58 int len = vecs->iov_len;

Completed in 57 milliseconds