Searched defs:iov (Results 1 - 7 of 7) sorted by relevance
/dalvik/vm/hprof/ |
H A D | Hprof.c | 114 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 D | JdwpPriv.h | 65 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 D | JdwpAdb.c | 144 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 D | JdwpSocket.c | 864 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 D | JdwpEvent.c | 1258 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 D | Profile.c | 640 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 D | Debugger.c | 3062 void dvmDbgDdmSendChunkV(int type, const struct iovec* iov, int iovcnt) argument 3070 dvmJdwpDdmSendChunkV(gDvm.jdwpState, type, iov, iovcnt);
|
Completed in 87 milliseconds