Searched refs:requestId (Results 1 – 4 of 4) sorted by relevance
/art/runtime/jdwp/ |
D | jdwp_event.cc | 313 void JdwpState::UnregisterEventById(uint32_t requestId) { in UnregisterEventById() argument 319 if (pEvent->requestId == requestId) { in UnregisterEventById() 335 VLOG(jdwp) << StringPrintf("No match when removing event reqId=0x%04x", requestId); in UnregisterEventById() 424 pEvent->requestId); in CleanupMatchList() 795 << StringPrintf(" (requestId=%#" PRIx32 ")", pEvent->requestId); in LogMatchingEventsAndThread() 914 expandBufAdd4BE(pReq, match_list[i]->requestId); in PostLocationEvent() 1009 expandBufAdd4BE(pReq, match_list[i]->requestId); in PostFieldEvent() 1088 expandBufAdd4BE(pReq, match_list[i]->requestId); in PostThreadChange() 1208 expandBufAdd4BE(pReq, match_list[i]->requestId); in PostException() 1301 expandBufAdd4BE(pReq, match_list[i]->requestId); in PostClassPrepare()
|
D | jdwp_event.h | 98 uint32_t requestId; /* serial#, reported to debugger */ member
|
D | jdwp_handler.cc | 1357 uint32_t requestId = state->NextEventSerial(); in ER_Set() local 1358 expandBufAdd4BE(pReply, requestId); in ER_Set() 1360 pEvent->requestId = requestId; in ER_Set() 1362 VLOG(jdwp) << StringPrintf(" --> event requestId=%#x", requestId); in ER_Set() 1377 uint32_t requestId = request.ReadUnsigned32("request id"); in ER_Clear() local 1381 state->UnregisterEventById(requestId); in ER_Clear()
|
D | jdwp.h | 289 void UnregisterEventById(uint32_t requestId)
|