Searched refs:JdwpState (Results 1 - 10 of 10) sorted by relevance

/dalvik/vm/jdwp/
H A DJdwpPriv.h46 struct JdwpState;
52 bool (*startup)(struct JdwpState* state, const JdwpStartupParams* pParams);
53 bool (*accept)(struct JdwpState* state);
54 bool (*establish)(struct JdwpState* state);
55 void (*close)(struct JdwpState* state);
56 void (*shutdown)(struct JdwpState* state);
57 void (*free)(struct JdwpState* state);
58 bool (*isConnected)(struct JdwpState* state);
59 bool (*awaitingHandshake)(struct JdwpState* state);
60 bool (*processIncoming)(struct JdwpState* stat
73 struct JdwpState { struct
[all...]
H A DJdwp.h33 struct JdwpState; /* opaque */
114 * Returns a newly-allocated JdwpState struct on success, or NULL on failure.
116 JdwpState* dvmJdwpStartup(const JdwpStartupParams* params);
121 void dvmJdwpShutdown(JdwpState* state);
126 bool dvmJdwpIsActive(JdwpState* state);
132 pthread_t dvmJdwpGetDebugThread(JdwpState* state);
137 s8 dvmJdwpLastDebuggerActivity(JdwpState* state);
158 //ObjectId dvmJdwpGetWaitForEventThread(JdwpState* state);
159 void dvmJdwpSetWaitForEventThread(JdwpState* state, ObjectId threadId);
160 void dvmJdwpClearWaitForEventThread(JdwpState* stat
[all...]
H A DJdwpEvent.h110 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);
H A DJdwpHandler.h41 void dvmJdwpProcessRequest(JdwpState* state, const JdwpReqHeader* pHeader,
H A DJdwpMain.cpp74 JdwpState* dvmJdwpStartup(const JdwpStartupParams* pParams)
76 JdwpState* state = NULL;
81 state = (JdwpState*) calloc(1, sizeof(JdwpState));
188 void dvmJdwpResetState(JdwpState* state)
208 void dvmJdwpShutdown(JdwpState* state)
247 bool dvmJdwpIsActive(JdwpState* state)
258 JdwpState* state = (JdwpState*) arg;
377 pthread_t dvmJdwpGetDebugThread(JdwpState* stat
[all...]
H A DJdwpHandler.cpp102 static JdwpError finishInvoke(JdwpState* state,
184 static JdwpError handleVM_Version(JdwpState* state, const u1* buf,
209 static JdwpError handleVM_ClassesBySignature(JdwpState* state,
258 static JdwpError handleVM_AllThreads(JdwpState* state,
280 static JdwpError handleVM_TopLevelThreadGroups(JdwpState* state,
304 static JdwpError handleVM_IDSizes(JdwpState* state,
321 static JdwpError handleVM_Dispose(JdwpState* state,
333 static JdwpError handleVM_Suspend(JdwpState* state,
343 static JdwpError handleVM_Resume(JdwpState* state,
353 static JdwpError handleVM_Exit(JdwpState* stat
[all...]
H A DJdwpAdb.cpp114 static bool startup(struct JdwpState* state, const JdwpStartupParams* pParams)
186 static bool acceptConnection(struct JdwpState* state)
293 static bool establishConnection(struct JdwpState* state)
302 static void closeConnection(struct JdwpState* state)
352 static void netShutdown(JdwpState* state)
361 static void netFree(struct JdwpState* state)
371 static bool isConnected(struct JdwpState* state)
380 static bool awaitingHandshake(struct JdwpState* state)
426 static bool handlePacket(JdwpState* state)
500 static bool processIncoming(JdwpState* stat
[all...]
H A DJdwpEvent.cpp119 u4 dvmJdwpNextRequestSerial(JdwpState* state)
132 u4 dvmJdwpNextEventSerial(JdwpState* state)
144 static void lockEventMutex(JdwpState* state)
154 static void unlockEventMutex(JdwpState* state)
186 JdwpError dvmJdwpRegisterEvent(JdwpState* state, JdwpEvent* pEvent)
238 static void unregisterEvent(JdwpState* state, JdwpEvent* pEvent)
281 void dvmJdwpUnregisterEventById(JdwpState* state, u4 requestId)
305 void dvmJdwpUnregisterAll(JdwpState* state)
377 static JdwpEvent** allocMatchList(JdwpState* state)
386 static void cleanupMatchList(JdwpState* stat
[all...]
H A DJdwpSocket.cpp85 static bool prepareSocket(JdwpState* state, const JdwpStartupParams* pParams)
124 static bool awaitingHandshake(JdwpState* state)
232 static void netShutdownExtern(JdwpState* state)
260 static void netFreeExtern(JdwpState* state)
268 static bool isConnected(JdwpState* state)
307 static bool checkConnection(JdwpState* state)
340 static bool acceptConnection(JdwpState* state)
392 static bool establishConnection(JdwpState* state)
485 static void closeConnection(JdwpState* state)
582 static bool handlePacket(JdwpState* stat
[all...]
/dalvik/vm/
H A DGlobals.h614 JdwpState* jdwpState;

Completed in 77 milliseconds