Home
last modified time | relevance | path

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

/art/runtime/jdwp/
Djdwp_event.h98 uint32_t requestId; /* serial#, reported to debugger */ member
Djdwp_event.cc356 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()
Djdwp_handler.cc1339 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()
Djdwp.h286 void UnregisterEventById(uint32_t requestId)