Searched refs:requestId (Results 1 – 4 of 4) sorted by relevance
/art/runtime/jdwp/ |
D | jdwp_event.h | 98 uint32_t requestId; /* serial#, reported to debugger */ member
|
D | jdwp_event.cc | 356 void JdwpState::UnregisterEventById(uint32_t requestId) { in UnregisterEventById() argument 362 if (pEvent->requestId == requestId) { in UnregisterEventById() 378 VLOG(jdwp) << StringPrintf("No match when removing event reqId=0x%04x", requestId); in UnregisterEventById() 453 pEvent->requestId); in CleanupMatchList() 832 << StringPrintf(" (requestId=%#" PRIx32 ")", pEvent->requestId); in LogMatchingEventsAndThread() 949 expandBufAdd4BE(pReq, pEvent->requestId); in PostLocationEvent() 1030 expandBufAdd4BE(pReq, pEvent->requestId); in PostFieldEvent() 1101 expandBufAdd4BE(pReq, pEvent->requestId); in PostThreadChange() 1207 expandBufAdd4BE(pReq, pEvent->requestId); in PostException() 1289 expandBufAdd4BE(pReq, pEvent->requestId); in PostClassPrepare()
|
D | jdwp_handler.cc | 1339 uint32_t requestId = state->NextEventSerial(); in ER_Set() local 1340 expandBufAdd4BE(pReply, requestId); in ER_Set() 1342 pEvent->requestId = requestId; in ER_Set() 1344 VLOG(jdwp) << StringPrintf(" --> event requestId=%#x", requestId); in ER_Set() 1360 uint32_t requestId = request->ReadUnsigned32("request id"); in ER_Clear() local 1364 state->UnregisterEventById(requestId); in ER_Clear()
|
D | jdwp.h | 286 void UnregisterEventById(uint32_t requestId)
|