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

/dalvik/vm/hprof/
H A DHprof.cpp102 struct iovec iov[2]; local
103 iov[0].iov_base = headCtx->fileDataPtr;
104 iov[0].iov_len = headCtx->fileDataSize;
105 iov[1].iov_base = tailCtx->fileDataPtr;
106 iov[1].iov_len = tailCtx->fileDataSize;
107 dvmDbgDdmSendChunkV(CHUNK_TYPE("HPDS"), iov, 2);
/dalvik/vm/jdwp/
H A DJdwpMain.cpp58 ssize_t JdwpNetStateBase::writeBufferedPacket(const struct iovec* iov, argument
62 ssize_t actual = TEMP_FAILURE_RETRY(writev(clientSock, iov, iovcnt));
H A DJdwpPriv.h63 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);
186 dvmJdwpSendBufferedRequest(JdwpState* state, const struct iovec* iov, int iovcnt) argument
H A DJdwpAdb.cpp138 struct iovec iov; local
146 iov.iov_base = &dummy;
147 iov.iov_len = 1;
150 msg.msg_iov = &iov;
695 static bool sendBufferedRequest(JdwpState* state, const struct iovec* iov, argument
709 expected += iov[i].iov_len;
711 ssize_t actual = netState->writeBufferedPacket(iov, iovcnt);
H A DJdwpSocket.cpp855 static bool sendBufferedRequest(JdwpState* state, const struct iovec* iov, argument
869 expected += iov[i].iov_len;
871 ssize_t actual = netState->writeBufferedPacket(iov, iovcnt);
H A DJdwpEvent.cpp1240 void dvmJdwpDdmSendChunkV(JdwpState* state, int type, const struct iovec* iov, argument
1246 assert(iov != NULL);
1255 wrapiov[i+1].iov_base = iov[i].iov_base;
1256 wrapiov[i+1].iov_len = iov[i].iov_len;
1257 dataLen += iov[i].iov_len;
/dalvik/vm/
H A DProfile.cpp865 struct iovec iov[2]; local
866 iov[0].iov_base = memStreamPtr;
867 iov[0].iov_len = memStreamSize;
868 iov[1].iov_base = state->buf;
869 iov[1].iov_len = finalCurOffset;
870 dvmDbgDdmSendChunkV(CHUNK_TYPE("MPSE"), iov, 2);
H A DDebugger.cpp2958 void dvmDbgDdmSendChunkV(int type, const struct iovec* iov, int iovcnt) argument
2966 dvmJdwpDdmSendChunkV(gDvm.jdwpState, type, iov, iovcnt);

Completed in 221 milliseconds