Home
last modified time | relevance | path

Searched refs:vecs (Results 1 – 2 of 2) sorted by relevance

/system/core/liblog/
Duio.c25 LIBLOG_ABI_PUBLIC int readv(int fd, struct iovec* vecs, int count) { in readv() argument
28 for (; count > 0; count--, vecs++) { in readv()
29 char* buf = vecs->iov_base; in readv()
30 int len = vecs->iov_len; in readv()
49 LIBLOG_ABI_PUBLIC int writev(int fd, const struct iovec* vecs, int count) { in writev() argument
52 for (; count > 0; count--, vecs++) { in writev()
53 const char* buf = vecs->iov_base; in writev()
54 int len = vecs->iov_len; in writev()
/system/core/liblog/include/log/
Duio.h41 extern int readv(int fd, struct iovec* vecs, int count);
42 extern int writev(int fd, const struct iovec* vecs, int count);