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);
189 JdwpError JdwpState::RegisterEvent(JdwpEvent* pEvent) { in RegisterEvent()258 std::vector<JdwpEvent*> to_remove; in UnregisterLocationEventsOnClass()260 for (JdwpEvent* cur_event = event_list_; cur_event != nullptr; cur_event = cur_event->next) { in UnregisterLocationEventsOnClass()285 for (JdwpEvent* event : to_remove) { in UnregisterLocationEventsOnClass()299 void JdwpState::UnregisterEvent(JdwpEvent* pEvent) { in UnregisterEvent()361 for (JdwpEvent* pEvent = event_list_; pEvent != nullptr; pEvent = pEvent->next) { in UnregisterEventById()388 JdwpEvent* pEvent = event_list_; in UnregisterAll()390 JdwpEvent* pNextEvent = pEvent->next; in UnregisterAll()404 JdwpEvent* EventAlloc(int numMods) { in EventAlloc()405 JdwpEvent* newEvent; in EventAlloc()[all …]
120 struct JdwpEvent;283 JdwpError RegisterEvent(JdwpEvent* pEvent)316 void CleanupMatchList(const std::vector<JdwpEvent*>& match_list)320 std::vector<JdwpEvent*>* match_list)323 std::vector<JdwpEvent*>* match_list)325 void UnregisterEvent(JdwpEvent* pEvent)395 JdwpEvent* event_list_ GUARDED_BY(event_list_lock_);
1205 void operator()(JdwpEvent* event) { in operator ()()1223 std::unique_ptr<JDWP::JdwpEvent, JdwpEventDeleter> pEvent(EventAlloc(modifier_count)); in ER_Set()