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

  /dalvik/vm/jdwp/
JdwpPriv.h 48 struct JdwpState;
54 bool (*startup)(struct JdwpState* state, const JdwpStartupParams* pParams);
55 bool (*accept)(struct JdwpState* state);
56 bool (*establish)(struct JdwpState* state);
57 void (*close)(struct JdwpState* state);
58 void (*shutdown)(struct JdwpState* state);
59 void (*free)(struct JdwpState* state);
60 bool (*isConnected)(struct JdwpState* state);
61 bool (*awaitingHandshake)(struct JdwpState* state);
62 bool (*processIncoming)(struct JdwpState* state)
    [all...]
Jdwp.h 33 struct JdwpState; /* opaque */
34 typedef struct JdwpState JdwpState;
116 * Returns a newly-allocated JdwpState struct on success, or NULL on failure.
118 JdwpState* dvmJdwpStartup(const JdwpStartupParams* params);
123 void dvmJdwpShutdown(JdwpState* state);
128 bool dvmJdwpIsActive(JdwpState* state);
134 pthread_t dvmJdwpGetDebugThread(JdwpState* state);
139 s8 dvmJdwpLastDebuggerActivity(JdwpState* state);
160 //ObjectId dvmJdwpGetWaitForEventThread(JdwpState* state)
    [all...]
JdwpEvent.h 110 JdwpError dvmJdwpRegisterEvent(JdwpState* state, JdwpEvent* pEvent);
115 void dvmJdwpUnregisterEventById(JdwpState* state, u4 requestId);
120 void dvmJdwpUnregisterAll(JdwpState* state);
127 bool dvmJdwpSendRequest(JdwpState* state, ExpandBuf* pReq);
JdwpHandler.h 41 void dvmJdwpProcessRequest(JdwpState* state, const JdwpReqHeader* pHeader,
JdwpMain.c 40 JdwpState* dvmJdwpStartup(const JdwpStartupParams* pParams)
42 JdwpState* state = NULL;
47 state = (JdwpState*) calloc(1, sizeof(JdwpState));
154 void dvmJdwpResetState(JdwpState* state)
174 void dvmJdwpShutdown(JdwpState* state)
213 bool dvmJdwpIsActive(JdwpState* state)
224 JdwpState* state = (JdwpState*) arg;
343 pthread_t dvmJdwpGetDebugThread(JdwpState* state
    [all...]
JdwpHandler.c 119 static JdwpError finishInvoke(JdwpState* state,
211 static JdwpError handleVM_Version(JdwpState* state, const u1* buf,
236 static JdwpError handleVM_ClassesBySignature(JdwpState* state,
287 static JdwpError handleVM_AllThreads(JdwpState* state,
312 static JdwpError handleVM_TopLevelThreadGroups(JdwpState* state,
339 static JdwpError handleVM_IDSizes(JdwpState* state,
356 static JdwpError handleVM_Dispose(JdwpState* state,
368 static JdwpError handleVM_Suspend(JdwpState* state,
378 static JdwpError handleVM_Resume(JdwpState* state,
388 static JdwpError handleVM_Exit(JdwpState* state
    [all...]
JdwpAdb.c 120 static bool startup(struct JdwpState* state, const JdwpStartupParams* pParams)
194 static bool acceptConnection(struct JdwpState* state)
291 static bool establishConnection(struct JdwpState* state)
300 static void closeConnection(struct JdwpState* state)
350 static void netShutdown(JdwpState* state)
359 static void netFree(struct JdwpState* state)
369 static bool isConnected(struct JdwpState* state)
378 static bool awaitingHandshake(struct JdwpState* state)
424 static bool handlePacket(JdwpState* state)
505 static bool processIncoming(JdwpState* state
    [all...]
JdwpEvent.c 119 u4 dvmJdwpNextRequestSerial(JdwpState* state)
134 u4 dvmJdwpNextEventSerial(JdwpState* state)
148 static void lockEventMutex(JdwpState* state)
158 static void unlockEventMutex(JdwpState* state)
170 JdwpError dvmJdwpRegisterEvent(JdwpState* state, JdwpEvent* pEvent)
222 static void unregisterEvent(JdwpState* state, JdwpEvent* pEvent)
267 void dvmJdwpUnregisterEventById(JdwpState* state, u4 requestId)
293 void dvmJdwpUnregisterAll(JdwpState* state)
371 static JdwpEvent** allocMatchList(JdwpState* state)
380 static void cleanupMatchList(JdwpState* state, JdwpEvent** matchList
    [all...]
JdwpSocket.c 74 static bool prepareSocket(JdwpState* state, const JdwpStartupParams* pParams)
113 static bool awaitingHandshake(JdwpState* state)
228 static void netShutdownExtern(JdwpState* state)
256 static void netFreeExtern(JdwpState* state)
264 static bool isConnected(JdwpState* state)
303 static bool checkConnection(JdwpState* state)
336 static bool acceptConnection(JdwpState* state)
388 static bool establishConnection(JdwpState* state)
481 static void closeConnection(JdwpState* state)
578 static bool handlePacket(JdwpState* state
    [all...]
  /dalvik/vm/
Globals.h 553 JdwpState* jdwpState;

Completed in 331 milliseconds