HomeSort by relevance Sort by last modified time
    Searched refs:iovcnt (Results 1 - 22 of 22) sorted by null

  /external/openssh/
atomicio.c 97 const struct iovec *_iov, int iovcnt,
105 if (iovcnt > IOV_MAX) {
110 memcpy(iov, _iov, iovcnt * sizeof(*_iov));
116 for (; iovcnt > 0 && iov[0].iov_len > 0;) {
117 res = (f) (fd, iov, iovcnt);
136 while (iovcnt > 0 && rem >= iov[0].iov_len) {
139 iovcnt--;
142 if (rem > 0 && (iovcnt <= 0 || rem > iov[0].iov_len)) {
146 if (iovcnt == 0)
162 const struct iovec *_iov, int iovcnt)
    [all...]
atomicio.h 47 const struct iovec *_iov, int iovcnt, int (*cb)(void *, size_t), void *);
  /device/samsung/manta/libsensors/
InputEventReader.cpp 64 int iovcnt = 1; local
69 iovcnt++;
74 const ssize_t nread = readv(fd, iov, iovcnt);
  /device/samsung/tuna/libsensors/
InputEventReader.cpp 64 int iovcnt = 1; local
70 iovcnt++;
75 const ssize_t nread = readv(fd, iov, iovcnt);
  /dalvik/vm/jdwp/
JdwpPriv.h 63 const struct iovec* iov, int iovcnt);
130 ssize_t writeBufferedPacket(const struct iovec* iov, int iovcnt);
187 const struct iovec* iov, int iovcnt)
189 return (*state->transport->sendBufferedRequest)(state, iov, iovcnt);
JdwpMain.cpp 59 int iovcnt)
62 ssize_t actual = writev(clientSock, iov, iovcnt);
JdwpAdb.cpp 696 int iovcnt)
708 for (i = 0; i < iovcnt; i++)
711 ssize_t actual = netState->writeBufferedPacket(iov, iovcnt);
Jdwp.h 234 int iovcnt);
JdwpEvent.cpp     [all...]
JdwpSocket.cpp 856 int iovcnt)
868 for (i = 0; i < iovcnt; i++)
871 ssize_t actual = netState->writeBufferedPacket(iov, iovcnt);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/extensions/
lbxzlib.h 59 extern int ZlibWriteV ( int fd, struct iovec *iov, int iovcnt );
lbxopts.h 120 int iovcnt
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/X11/extensions/
lbxzlib.h 59 extern int ZlibWriteV ( int fd, struct iovec *iov, int iovcnt );
lbxopts.h 120 int iovcnt
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/extensions/
lbxzlib.h 59 extern int ZlibWriteV ( int fd, struct iovec *iov, int iovcnt );
lbxopts.h 120 int iovcnt
  /external/qemu/
net.h 66 int iovcnt);
68 int iovcnt, NetPacketSent *sent_cb);
net-android.c 550 int iovcnt)
556 for (i = 0; i < iovcnt; i++) {
567 static ssize_t calc_iov_length(const struct iovec *iov, int iovcnt)
572 for (i = 0; i < iovcnt; i++)
578 const struct iovec *iov, int iovcnt)
593 ret = calc_iov_length(iov, iovcnt);
598 len = vc->receive_iov(vc, iov, iovcnt);
600 len = vc_sendv_compat(vc, iov, iovcnt);
612 const struct iovec *iov, int iovcnt,
619 max_len = calc_iov_length(iov, iovcnt);
    [all...]
net.c 517 int iovcnt)
523 for (i = 0; i < iovcnt; i++) {
534 static ssize_t calc_iov_length(const struct iovec *iov, int iovcnt)
539 for (i = 0; i < iovcnt; i++)
545 const struct iovec *iov, int iovcnt)
560 ret = calc_iov_length(iov, iovcnt);
565 len = vc->receive_iov(vc, iov, iovcnt);
567 len = vc_sendv_compat(vc, iov, iovcnt);
579 const struct iovec *iov, int iovcnt,
586 max_len = calc_iov_length(iov, iovcnt);
    [all...]
  /system/core/liblog/
fake_log_device.c 322 static ssize_t fake_writev(int fd, const struct iovec *iov, int iovcnt) {
324 struct iovec* end = iov + iovcnt;
  /dalvik/vm/
Debugger.h 304 void dvmDbgDdmSendChunkV(int type, const struct iovec* iov, int iovcnt);
Debugger.cpp     [all...]

Completed in 532 milliseconds