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 174 JdwpError JdwpState::RegisterEvent(JdwpEvent* pEvent) {
243 * Does not free the JdwpEvent.
247 void JdwpState::UnregisterEvent(JdwpEvent* pEvent) {
318 for (JdwpEvent* pEvent = event_list_; pEvent != nullptr; pEvent = pEvent->next) {
345 JdwpEvent* pEvent = event_list_;
347 JdwpEvent* pNextEvent = pEvent->next;
358 * Allocate a JdwpEvent struct with enough space to hold the specified
361 JdwpEvent* EventAlloc(int numMods) {
362 JdwpEvent* newEvent;
363 int allocSize = offsetof(JdwpEvent, mods) + numMods * sizeof(newEvent->mods[0])
    [all...]
jdwp.h 110 struct JdwpEvent;
282 JdwpError RegisterEvent(JdwpEvent* pEvent)
310 void CleanupMatchList(JdwpEvent** match_list,
317 JdwpEvent** match_list,
321 void UnregisterEvent(JdwpEvent* pEvent)
365 JdwpEvent* event_list_ GUARDED_BY(event_list_lock_);
jdwp_handler.cc     [all...]

Completed in 146 milliseconds