Searched refs:requestId (Results 1 - 3 of 3) sorted by relevance

/dalvik/vm/jdwp/
H A DJdwpEvent.h93 u4 requestId; /* serial#, reported to debugger */ member in struct:JdwpEvent
113 * Unregister an event, given the requestId.
115 void dvmJdwpUnregisterEventById(JdwpState* state, u4 requestId);
H A DJdwpEvent.cpp165 pEvent->requestId, pEvent, pEvent->prev, pEvent->next);
281 void dvmJdwpUnregisterEventById(JdwpState* state, u4 requestId) argument
287 if (pEvent->requestId == requestId) {
296 //ALOGD("Odd: no match when removing event reqId=0x%04x", requestId);
767 expandBufAdd4BE(pReq, 0); /* requestId */
888 expandBufAdd4BE(pReq, matchList[i]->requestId);
966 expandBufAdd4BE(pReq, matchList[i]->requestId);
1082 expandBufAdd4BE(pReq, matchList[i]->requestId);
1177 expandBufAdd4BE(pReq, matchList[i]->requestId);
[all...]
H A DJdwpHandler.cpp1538 u4 requestId = dvmJdwpNextEventSerial(state);
1539 expandBufAdd4BE(pReply, requestId);
1541 pEvent->requestId = requestId;
1543 ALOGV(" --> event requestId=%#x", requestId);
1564 u4 requestId = read4BE(&buf);
1566 ALOGV(" Req to clear eventKind=%d requestId=%#x", eventKind, requestId);
1568 dvmJdwpUnregisterEventById(state, requestId);
[all...]

Completed in 200 milliseconds