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

/dalvik/vm/hprof/
H A DHprof.c114 struct iovec iov[2]; local
115 iov[0].iov_base = headCtx->fileDataPtr;
116 iov[0].iov_len = headCtx->fileDataSize;
117 iov[1].iov_base = tailCtx->fileDataPtr;
118 iov[1].iov_len = tailCtx->fileDataSize;
119 dvmDbgDdmSendChunkV(CHUNK_TYPE("HPDS"), iov, 2);
/dalvik/vm/jdwp/
H A DJdwpPriv.h65 const struct iovec* iov, int iovcnt);
174 const struct iovec* iov, int iovcnt)
176 return (*state->transport->sendBufferedRequest)(state, iov, iovcnt);
173 dvmJdwpSendBufferedRequest(JdwpState* state, const struct iovec* iov, int iovcnt) argument
H A DJdwpAdb.c144 struct iovec iov; local
152 iov.iov_base = &dummy;
153 iov.iov_len = 1;
156 msg.msg_iov = &iov;
705 static bool sendBufferedRequest(JdwpState* state, const struct iovec* iov, argument
719 expected += iov[i].iov_len;
727 actual = writev(netState->clientSock, iov, iovcnt);
H A DJdwpSocket.c864 static bool sendBufferedRequest(JdwpState* state, const struct iovec* iov, argument
878 expected += iov[i].iov_len;
886 actual = writev(netState->clientSock, iov, iovcnt);
H A DJdwpEvent.c1258 void dvmJdwpDdmSendChunkV(JdwpState* state, int type, const struct iovec* iov, argument
1265 assert(iov != NULL);
1274 wrapiov[i+1].iov_base = iov[i].iov_base;
1275 wrapiov[i+1].iov_len = iov[i].iov_len;
1276 dataLen += iov[i].iov_len;
/dalvik/vm/
H A DProfile.c640 struct iovec iov[2]; local
641 iov[0].iov_base = memStreamPtr;
642 iov[0].iov_len = memStreamSize;
643 iov[1].iov_base = state->buf;
644 iov[1].iov_len = finalCurOffset;
645 dvmDbgDdmSendChunkV(CHUNK_TYPE("MPSE"), iov, 2);
H A DDebugger.c3062 void dvmDbgDdmSendChunkV(int type, const struct iovec* iov, int iovcnt) argument
3070 dvmJdwpDdmSendChunkV(gDvm.jdwpState, type, iov, iovcnt);

Completed in 87 milliseconds