Home
last modified time | relevance | path

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

/art/runtime/jdwp/
Djdwp_event.h91 struct JdwpEvent { struct
92 JdwpEvent* prev; /* linked list */ argument
93 JdwpEvent* next; argument
106 JdwpEvent* EventAlloc(int numMods); argument
107 void EventFree(JdwpEvent* pEvent);
Djdwp_event.cc127 static void dumpEvent(const JdwpEvent* pEvent) { in dumpEvent()
145 JdwpError JdwpState::RegisterEvent(JdwpEvent* pEvent) { in RegisterEvent()
195 void JdwpState::UnregisterEvent(JdwpEvent* pEvent) { in UnregisterEvent()
240 JdwpEvent* pEvent = event_list_; in UnregisterEventById()
260 JdwpEvent* pEvent = event_list_; in UnregisterAll()
262 JdwpEvent* pNextEvent = pEvent->next; in UnregisterAll()
276 JdwpEvent* EventAlloc(int numMods) { in EventAlloc()
277 JdwpEvent* newEvent; in EventAlloc()
278 int allocSize = offsetof(JdwpEvent, mods) + numMods * sizeof(newEvent->mods[0]); in EventAlloc()
279 newEvent = reinterpret_cast<JdwpEvent*>(malloc(allocSize)); in EventAlloc()
[all …]
Djdwp.h97 struct JdwpEvent;
250 JdwpError RegisterEvent(JdwpEvent* pEvent)
278 void CleanupMatchList(JdwpEvent** match_list,
285 JdwpEvent** match_list,
289 void UnregisterEvent(JdwpEvent* pEvent)
328 JdwpEvent* event_list_ GUARDED_BY(event_list_lock_);
Djdwp_handler.cc1246 JdwpEvent* pEvent = EventAlloc(modifier_count); in ER_Set()