Searched refs:requestId (Results 1 – 3 of 3) sorted by relevance
/dalvik/vm/jdwp/ |
D | JdwpEvent.h | 93 u4 requestId; /* serial#, reported to debugger */ member 115 void dvmJdwpUnregisterEventById(JdwpState* state, u4 requestId);
|
D | JdwpEvent.c | 268 void dvmJdwpUnregisterEventById(JdwpState* state, u4 requestId) in dvmJdwpUnregisterEventById() argument 276 if (pEvent->requestId == requestId) { in dvmJdwpUnregisterEventById() 895 expandBufAdd4BE(pReq, matchList[i]->requestId); in dvmJdwpPostLocationEvent() 977 expandBufAdd4BE(pReq, matchList[i]->requestId); in dvmJdwpPostThreadChange() 1095 expandBufAdd4BE(pReq, matchList[i]->requestId); in dvmJdwpPostException() 1191 expandBufAdd4BE(pReq, matchList[i]->requestId); in dvmJdwpPostClassPrepare()
|
D | JdwpHandler.c | 1508 u4 requestId; in handleER_Set() local 1674 requestId = dvmJdwpNextEventSerial(state); in handleER_Set() 1675 expandBufAdd4BE(pReply, requestId); in handleER_Set() 1677 pEvent->requestId = requestId; in handleER_Set() 1679 LOGV(" --> event requestId=0x%x\n", requestId); in handleER_Set() 1699 u4 requestId; in handleER_Clear() local 1702 requestId = read4BE(&buf); in handleER_Clear() 1704 LOGV(" Req to clear eventKind=%d requestId=0x%08x\n", eventKind,requestId); in handleER_Clear() 1706 dvmJdwpUnregisterEventById(state, requestId); in handleER_Clear()
|