Lines Matching refs:JdwpEvent

174 JdwpError JdwpState::RegisterEvent(JdwpEvent* pEvent) {  in RegisterEvent()
247 void JdwpState::UnregisterEvent(JdwpEvent* pEvent) { in UnregisterEvent()
318 for (JdwpEvent* pEvent = event_list_; pEvent != nullptr; pEvent = pEvent->next) { in UnregisterEventById()
345 JdwpEvent* pEvent = event_list_; in UnregisterAll()
347 JdwpEvent* pNextEvent = pEvent->next; in UnregisterAll()
361 JdwpEvent* EventAlloc(int numMods) { in EventAlloc()
362 JdwpEvent* newEvent; in EventAlloc()
363 int allocSize = offsetof(JdwpEvent, mods) + numMods * sizeof(newEvent->mods[0]); in EventAlloc()
364 newEvent = reinterpret_cast<JdwpEvent*>(malloc(allocSize)); in EventAlloc()
374 void EventFree(JdwpEvent* pEvent) { in EventFree()
407 static JdwpEvent** AllocMatchList(size_t event_count) { in AllocMatchList()
408 return new JdwpEvent*[event_count]; in AllocMatchList()
415 void JdwpState::CleanupMatchList(JdwpEvent** match_list, size_t match_count) { in CleanupMatchList()
416 JdwpEvent** ppEvent = match_list; in CleanupMatchList()
419 JdwpEvent* pEvent = *ppEvent; in CleanupMatchList()
464 static bool ModsMatch(JdwpEvent* pEvent, const ModBasket& basket) in ModsMatch()
549 JdwpEvent** match_list, size_t* pMatchCount) { in FindMatchingEvents()
553 for (JdwpEvent* pEvent = event_list_; pEvent != nullptr; pEvent = pEvent->next) { in FindMatchingEvents()
565 static JdwpSuspendPolicy scanSuspendPolicy(JdwpEvent** match_list, int match_count) { in scanSuspendPolicy()
789 static void LogMatchingEventsAndThread(JdwpEvent** match_list, size_t match_count, in LogMatchingEventsAndThread()
793 JdwpEvent* pEvent = match_list[i]; in LogMatchingEventsAndThread()
875 JdwpEvent** match_list = nullptr; in PostLocationEvent()
959 JdwpEvent** match_list = nullptr; in PostFieldEvent()
1057 JdwpEvent** match_list = nullptr; in PostThreadChange()
1168 JdwpEvent** match_list = nullptr; in PostException()
1252 JdwpEvent** match_list = nullptr; in PostClassPrepare()