HomeSort by relevance Sort by last modified time
    Searched refs:JdwpEvent (Results 1 - 4 of 4) sorted by null

  /art/runtime/jdwp/
jdwp_event.h 31 * Event modifiers. A JdwpEvent may have zero or more of these.
91 struct JdwpEvent {
92 JdwpEvent* prev; /* linked list */
93 JdwpEvent* next;
106 JdwpEvent* EventAlloc(int numMods);
107 void EventFree(JdwpEvent* pEvent);
jdwp_event.cc 189 JdwpError JdwpState::RegisterEvent(JdwpEvent* pEvent) {
258 std::vector<JdwpEvent*> to_remove;
260 for (JdwpEvent* cur_event = event_list_; cur_event != nullptr; cur_event = cur_event->next) {
285 for (JdwpEvent* event : to_remove) {
295 * Does not free the JdwpEvent.
299 void JdwpState::UnregisterEvent(JdwpEvent* pEvent) {
361 for (JdwpEvent* pEvent = event_list_; pEvent != nullptr; pEvent = pEvent->next) {
388 JdwpEvent* pEvent = event_list_;
390 JdwpEvent* pNextEvent = pEvent->next;
401 * Allocate a JdwpEvent struct with enough space to hold the specifie
    [all...]
jdwp.h 116 struct JdwpEvent;
279 JdwpError RegisterEvent(JdwpEvent* pEvent)
312 void CleanupMatchList(const std::vector<JdwpEvent*>& match_list)
316 std::vector<JdwpEvent*>* match_list)
319 std::vector<JdwpEvent*>* match_list)
321 void UnregisterEvent(JdwpEvent* pEvent)
391 JdwpEvent* event_list_ GUARDED_BY(event_list_lock_);
jdwp_handler.cc     [all...]

Completed in 178 milliseconds