Home
last modified time | relevance | path

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

/art/runtime/jdwp/
Djdwp_event.cc316 void JdwpState::UnregisterEventById(uint32_t requestId) { in UnregisterEventById() argument
322 if (pEvent->requestId == requestId) { in UnregisterEventById()
338 VLOG(jdwp) << StringPrintf("No match when removing event reqId=0x%04x", requestId); in UnregisterEventById()
413 pEvent->requestId); in CleanupMatchList()
791 << StringPrintf(" (requestId=%#" PRIx32 ")", pEvent->requestId); in LogMatchingEventsAndThread()
908 expandBufAdd4BE(pReq, pEvent->requestId); in PostLocationEvent()
989 expandBufAdd4BE(pReq, pEvent->requestId); in PostFieldEvent()
1060 expandBufAdd4BE(pReq, pEvent->requestId); in PostThreadChange()
1166 expandBufAdd4BE(pReq, pEvent->requestId); in PostException()
1247 expandBufAdd4BE(pReq, pEvent->requestId); in PostClassPrepare()
Djdwp_event.h98 uint32_t requestId; /* serial#, reported to debugger */ member
Djdwp_handler.cc1307 uint32_t requestId = state->NextEventSerial(); in ER_Set() local
1308 expandBufAdd4BE(pReply, requestId); in ER_Set()
1310 pEvent->requestId = requestId; in ER_Set()
1312 VLOG(jdwp) << StringPrintf(" --> event requestId=%#x", requestId); in ER_Set()
1327 uint32_t requestId = request->ReadUnsigned32("request id"); in ER_Clear() local
1331 state->UnregisterEventById(requestId); in ER_Clear()
Djdwp.h287 void UnregisterEventById(uint32_t requestId)