Searched refs:JdwpEvent (Results 1 – 4 of 4) sorted by relevance
91 struct JdwpEvent { struct92 JdwpEvent* prev; /* linked list */ argument93 JdwpEvent* next; argument106 JdwpEvent* EventAlloc(int numMods); argument107 void EventFree(JdwpEvent* pEvent);
127 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 …]
97 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_);
1246 JdwpEvent* pEvent = EventAlloc(modifier_count); in ER_Set()