Lines Matching refs:JdwpEvent
186 JdwpError JdwpState::RegisterEvent(JdwpEvent* pEvent) { in RegisterEvent()
259 void JdwpState::UnregisterEvent(JdwpEvent* pEvent) { in UnregisterEvent()
321 for (JdwpEvent* pEvent = event_list_; pEvent != nullptr; pEvent = pEvent->next) { in UnregisterEventById()
348 JdwpEvent* pEvent = event_list_; in UnregisterAll()
350 JdwpEvent* pNextEvent = pEvent->next; in UnregisterAll()
364 JdwpEvent* EventAlloc(int numMods) { in EventAlloc()
365 JdwpEvent* newEvent; in EventAlloc()
366 int allocSize = offsetof(JdwpEvent, mods) + numMods * sizeof(newEvent->mods[0]); in EventAlloc()
367 newEvent = reinterpret_cast<JdwpEvent*>(malloc(allocSize)); in EventAlloc()
377 void EventFree(JdwpEvent* pEvent) { in EventFree()
408 void JdwpState::CleanupMatchList(const std::vector<JdwpEvent*>& match_list) { in CleanupMatchList()
409 for (JdwpEvent* pEvent : match_list) { in CleanupMatchList()
449 static bool ModsMatch(JdwpEvent* pEvent, const ModBasket& basket) in ModsMatch()
535 std::vector<JdwpEvent*>* match_list) { in FindMatchingEventsLocked()
536 for (JdwpEvent* pEvent = event_list_; pEvent != nullptr; pEvent = pEvent->next) { in FindMatchingEventsLocked()
555 std::vector<JdwpEvent*>* match_list) { in FindMatchingEvents()
566 static JdwpSuspendPolicy ScanSuspendPolicy(const std::vector<JdwpEvent*>& match_list) { in ScanSuspendPolicy()
569 for (JdwpEvent* pEvent : match_list) { in ScanSuspendPolicy()
785 static void LogMatchingEventsAndThread(const std::vector<JdwpEvent*> match_list, in LogMatchingEventsAndThread()
789 JdwpEvent* pEvent = match_list[i]; in LogMatchingEventsAndThread()
867 std::vector<JdwpEvent*> match_list; in PostLocationEvent()
906 for (const JdwpEvent* pEvent : match_list) { in PostLocationEvent()
946 std::vector<JdwpEvent*> match_list; in PostFieldEvent()
987 for (const JdwpEvent* pEvent : match_list) { in PostFieldEvent()
1039 std::vector<JdwpEvent*> match_list; in PostThreadChange()
1058 for (const JdwpEvent* pEvent : match_list) { in PostThreadChange()
1130 std::vector<JdwpEvent*> match_list; in PostException()
1164 for (const JdwpEvent* pEvent : match_list) { in PostException()
1203 std::vector<JdwpEvent*> match_list; in PostClassPrepare()
1245 for (const JdwpEvent* pEvent : match_list) { in PostClassPrepare()