Home
last modified time | relevance | path

Searched refs:iov (Results 1 – 10 of 10) sorted by relevance

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