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

  /dalvik/vm/jdwp/
JdwpEvent.h 26 * Event modifiers. A JdwpEvent may have zero or more of these.
86 struct JdwpEvent {
87 JdwpEvent* prev; /* linked list */
88 JdwpEvent* next;
101 JdwpEvent* dvmJdwpEventAlloc(int numMods);
102 void dvmJdwpEventFree(JdwpEvent* pEvent);
110 JdwpError dvmJdwpRegisterEvent(JdwpState* state, JdwpEvent* pEvent);
JdwpEvent.cpp 22 #include "jdwp/JdwpEvent.h"
162 static void dumpEvent(const JdwpEvent* pEvent)
186 JdwpError dvmJdwpRegisterEvent(JdwpState* state, JdwpEvent* pEvent)
234 * Does not free the JdwpEvent.
238 static void unregisterEvent(JdwpState* state, JdwpEvent* pEvent)
285 JdwpEvent* pEvent = state->eventList;
309 JdwpEvent* pEvent = state->eventList;
311 JdwpEvent* pNextEvent = pEvent->next;
326 * Allocate a JdwpEvent struct with enough space to hold the specified
329 JdwpEvent* dvmJdwpEventAlloc(int numMods
    [all...]
JdwpPriv.h 25 #include "jdwp/JdwpEvent.h"
104 JdwpEvent* eventList; /* linked list of events */
JdwpHandler.cpp 29 #include "jdwp/JdwpEvent.h"
    [all...]
  /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 127 static void dumpEvent(const JdwpEvent* pEvent) {
145 JdwpError JdwpState::RegisterEvent(JdwpEvent* pEvent) {
191 * Does not free the JdwpEvent.
195 void JdwpState::UnregisterEvent(JdwpEvent* pEvent) {
240 JdwpEvent* pEvent = event_list_;
260 JdwpEvent* pEvent = event_list_;
262 JdwpEvent* pNextEvent = pEvent->next;
273 * Allocate a JdwpEvent struct with enough space to hold the specified
276 JdwpEvent* EventAlloc(int numMods) {
277 JdwpEvent* newEvent
    [all...]
jdwp.h 97 struct JdwpEvent;
250 JdwpError RegisterEvent(JdwpEvent* pEvent)
278 void CleanupMatchList(JdwpEvent** match_list,
285 JdwpEvent** match_list,
289 void UnregisterEvent(JdwpEvent* pEvent)
328 JdwpEvent* event_list_ GUARDED_BY(event_list_lock_);
jdwp_handler.cc     [all...]
  /dalvik/vm/
Dvm.mk 144 jdwp/JdwpEvent.cpp \

Completed in 303 milliseconds