Home
last modified time | relevance | path

Searched refs:requestId (Results 1 – 3 of 3) sorted by relevance

/dalvik/vm/jdwp/
DJdwpEvent.h93 u4 requestId; /* serial#, reported to debugger */ member
115 void dvmJdwpUnregisterEventById(JdwpState* state, u4 requestId);
DJdwpEvent.c267 void dvmJdwpUnregisterEventById(JdwpState* state, u4 requestId) in dvmJdwpUnregisterEventById() argument
275 if (pEvent->requestId == requestId) { in dvmJdwpUnregisterEventById()
892 expandBufAdd4BE(pReq, matchList[i]->requestId); in dvmJdwpPostLocationEvent()
974 expandBufAdd4BE(pReq, matchList[i]->requestId); in dvmJdwpPostThreadChange()
1096 expandBufAdd4BE(pReq, matchList[i]->requestId); in dvmJdwpPostException()
1195 expandBufAdd4BE(pReq, matchList[i]->requestId); in dvmJdwpPostClassPrepare()
DJdwpHandler.c1586 u4 requestId; in handleER_Set() local
1752 requestId = dvmJdwpNextEventSerial(state); in handleER_Set()
1753 expandBufAdd4BE(pReply, requestId); in handleER_Set()
1755 pEvent->requestId = requestId; in handleER_Set()
1757 LOGV(" --> event requestId=0x%x\n", requestId); in handleER_Set()
1777 u4 requestId; in handleER_Clear() local
1780 requestId = read4BE(&buf); in handleER_Clear()
1782 LOGV(" Req to clear eventKind=%d requestId=0x%08x\n", eventKind,requestId); in handleER_Clear()
1784 dvmJdwpUnregisterEventById(state, requestId); in handleER_Clear()