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

/seL4-refos-master/libs/libmuslc/src/stdio/
H A D__stdio_write.c12 int iovcnt = 2; local
15 cnt = syscall(SYS_writev, f->fd, iov, iovcnt);
24 return iovcnt == 2 ? 0 : len-iov[0].iov_len;
29 iov++; iovcnt--;
/seL4-refos-master/libs/librefossys/src/
H A Dsys_io.c92 _sys_writev(int fildes, struct iovec *iov, int iovcnt) argument
97 /* The iovcnt argument is valid if greater than 0 and less than or equal to IOV_MAX. */
98 if (iovcnt <= 0 || iovcnt > IOV_MAX)
103 for (int i = 0; i < iovcnt; i++) {
118 for (int i = 0; i < iovcnt; i++) {
126 for (int i = 0; i < iovcnt; i++) {
157 int iovcnt = va_arg(ap, int); local
158 return _sys_writev(fildes, iov, iovcnt);
176 _sys_readv(int fildes, struct iovec *iov, int iovcnt) argument
233 int iovcnt = va_arg(ap, int); local
[all...]
/seL4-refos-master/projects/refos/impl/libs/librefossys/src/
H A Dsys_io.c92 _sys_writev(int fildes, struct iovec *iov, int iovcnt) argument
97 /* The iovcnt argument is valid if greater than 0 and less than or equal to IOV_MAX. */
98 if (iovcnt <= 0 || iovcnt > IOV_MAX)
103 for (int i = 0; i < iovcnt; i++) {
118 for (int i = 0; i < iovcnt; i++) {
126 for (int i = 0; i < iovcnt; i++) {
157 int iovcnt = va_arg(ap, int); local
158 return _sys_writev(fildes, iov, iovcnt);
176 _sys_readv(int fildes, struct iovec *iov, int iovcnt) argument
233 int iovcnt = va_arg(ap, int); local
[all...]
/seL4-refos-master/libs/libsel4muslcsys/src/
H A Dsys_io.c285 int iovcnt = va_arg(ap, int); local
290 /* The iovcnt argument is valid if greater than 0 and less than or equal to IOV_MAX. */
291 if (iovcnt <= 0 || iovcnt > IOV_MAX) {
297 for (int i = 0; i < iovcnt; i++) {
314 for (int i = 0; i < iovcnt; i++) {
344 int iovcnt = va_arg(ap, int); local
366 for (i = 0; i < iovcnt && cpio_fd->current < cpio_fd->size; i++) {
H A Dvsyscall.c102 int iovcnt = va_arg(ap, int); local
106 for (int i = 0; i < iovcnt; i++) {
/seL4-refos-master/projects/seL4_libs/libsel4muslcsys/src/
H A Dsys_io.c285 int iovcnt = va_arg(ap, int); local
290 /* The iovcnt argument is valid if greater than 0 and less than or equal to IOV_MAX. */
291 if (iovcnt <= 0 || iovcnt > IOV_MAX) {
297 for (int i = 0; i < iovcnt; i++) {
314 for (int i = 0; i < iovcnt; i++) {
344 int iovcnt = va_arg(ap, int); local
366 for (i = 0; i < iovcnt && cpio_fd->current < cpio_fd->size; i++) {
H A Dvsyscall.c102 int iovcnt = va_arg(ap, int); local
106 for (int i = 0; i < iovcnt; i++) {

Completed in 41 milliseconds