Home
last modified time | relevance | path

Searched defs:state (Results 1 – 25 of 25) sorted by relevance

/dalvik/vm/jdwp/
DJdwpMain.c42 JdwpState* state = NULL; in dvmJdwpStartup() local
154 void dvmJdwpResetState(JdwpState* state) in dvmJdwpResetState()
174 void dvmJdwpShutdown(JdwpState* state) in dvmJdwpShutdown()
213 bool dvmJdwpIsActive(JdwpState* state) in dvmJdwpIsActive()
224 JdwpState* state = (JdwpState*) arg; in jdwpThreadStart() local
343 pthread_t dvmJdwpGetDebugThread(JdwpState* state) in dvmJdwpGetDebugThread()
394 s8 dvmJdwpLastDebuggerActivity(JdwpState* state) in dvmJdwpLastDebuggerActivity()
DJdwpEvent.c119 u4 dvmJdwpNextRequestSerial(JdwpState* state) in dvmJdwpNextRequestSerial()
134 u4 dvmJdwpNextEventSerial(JdwpState* state) in dvmJdwpNextEventSerial()
148 static void lockEventMutex(JdwpState* state) in lockEventMutex()
158 static void unlockEventMutex(JdwpState* state) in unlockEventMutex()
170 JdwpError dvmJdwpRegisterEvent(JdwpState* state, JdwpEvent* pEvent) in dvmJdwpRegisterEvent()
222 static void unregisterEvent(JdwpState* state, JdwpEvent* pEvent) in unregisterEvent()
267 void dvmJdwpUnregisterEventById(JdwpState* state, u4 requestId) in dvmJdwpUnregisterEventById()
293 void dvmJdwpUnregisterAll(JdwpState* state) in dvmJdwpUnregisterAll()
371 static JdwpEvent** allocMatchList(JdwpState* state) in allocMatchList()
380 static void cleanupMatchList(JdwpState* state, JdwpEvent** matchList, in cleanupMatchList()
[all …]
DJdwpHandler.c119 static JdwpError finishInvoke(JdwpState* state, in finishInvoke()
211 static JdwpError handleVM_Version(JdwpState* state, const u1* buf, in handleVM_Version()
236 static JdwpError handleVM_ClassesBySignature(JdwpState* state, in handleVM_ClassesBySignature()
287 static JdwpError handleVM_AllThreads(JdwpState* state, in handleVM_AllThreads()
312 static JdwpError handleVM_TopLevelThreadGroups(JdwpState* state, in handleVM_TopLevelThreadGroups()
339 static JdwpError handleVM_IDSizes(JdwpState* state, in handleVM_IDSizes()
356 static JdwpError handleVM_Dispose(JdwpState* state, in handleVM_Dispose()
368 static JdwpError handleVM_Suspend(JdwpState* state, in handleVM_Suspend()
378 static JdwpError handleVM_Resume(JdwpState* state, in handleVM_Resume()
388 static JdwpError handleVM_Exit(JdwpState* state, in handleVM_Exit()
[all …]
DJdwpPriv.h138 INLINE bool dvmJdwpNetStartup(JdwpState* state, in dvmJdwpNetStartup()
143 INLINE bool dvmJdwpAcceptConnection(JdwpState* state) { in dvmJdwpAcceptConnection()
146 INLINE bool dvmJdwpEstablishConnection(JdwpState* state) { in dvmJdwpEstablishConnection()
149 INLINE void dvmJdwpCloseConnection(JdwpState* state) { in dvmJdwpCloseConnection()
152 INLINE void dvmJdwpNetShutdown(JdwpState* state) { in dvmJdwpNetShutdown()
155 INLINE void dvmJdwpNetFree(JdwpState* state) { in dvmJdwpNetFree()
158 INLINE bool dvmJdwpIsTransportDefined(JdwpState* state) { in dvmJdwpIsTransportDefined()
161 INLINE bool dvmJdwpIsConnected(JdwpState* state) { in dvmJdwpIsConnected()
164 INLINE bool dvmJdwpAwaitingHandshake(JdwpState* state) { in dvmJdwpAwaitingHandshake()
167 INLINE bool dvmJdwpProcessIncoming(JdwpState* state) { in dvmJdwpProcessIncoming()
[all …]
DJdwpAdb.c120 static bool startup(struct JdwpState* state, const JdwpStartupParams* pParams) in startup()
194 static bool acceptConnection(struct JdwpState* state) in acceptConnection()
291 static bool establishConnection(struct JdwpState* state) in establishConnection()
300 static void closeConnection(struct JdwpState* state) in closeConnection()
350 static void netShutdown(JdwpState* state) in netShutdown()
359 static void netFree(struct JdwpState* state) in netFree()
369 static bool isConnected(struct JdwpState* state) in isConnected()
378 static bool awaitingHandshake(struct JdwpState* state) in awaitingHandshake()
424 static bool handlePacket(JdwpState* state) in handlePacket()
505 static bool processIncoming(JdwpState* state) in processIncoming()
[all …]
DJdwpSocket.c74 static bool prepareSocket(JdwpState* state, const JdwpStartupParams* pParams) in prepareSocket()
113 static bool awaitingHandshake(JdwpState* state) in awaitingHandshake()
228 static void netShutdownExtern(JdwpState* state) in netShutdownExtern()
256 static void netFreeExtern(JdwpState* state) in netFreeExtern()
264 static bool isConnected(JdwpState* state) in isConnected()
336 static bool acceptConnection(JdwpState* state) in acceptConnection()
388 static bool establishConnection(JdwpState* state) in establishConnection()
481 static void closeConnection(JdwpState* state) in closeConnection()
578 static bool handlePacket(JdwpState* state) in handlePacket()
661 static bool processIncoming(JdwpState* state) in processIncoming()
[all …]
/dalvik/hit/src/com/android/hit/
DMain.java37 State state = (new HprofParser(dis)).parse(); in main() local
50 private static void testClassesQuery(State state) { in testClassesQuery()
70 private static void testAllClassesQuery(State state) { in testAllClassesQuery()
84 private static void testFindInstancesOf(State state) { in testFindInstancesOf()
90 private static void testFindAllInstancesOf(State state) { in testFindAllInstancesOf()
DQueries.java66 public static Map<String, Set<ClassObj>> allClasses(State state) { in allClasses()
70 public static Map<String, Set<ClassObj>> classes(State state, in classes()
127 public static ClassObj findClass(State state, String name) { in findClass()
135 public static Instance[] instancesOf(State state, String baseClassName) { in instancesOf()
152 public static Instance[] allInstancesOf(State state, String baseClassName) { in allInstancesOf()
193 public static Instance findObject(State state, String id) { in findObject()
199 public static Collection<RootObj> getRoots(State state) { in getRoots()
DRootObj.java48 public final String getClassName(State state) { in getClassName()
99 public final void resolveReferences(State state) { in resolveReferences()
DClassInstance.java40 public void resolveReferences(State state) { in resolveReferences()
47 private void resolve(State state, ClassObj isa, int[] types, in resolve()
106 State state = mHeap.mState; in visit() local
DHeap.java153 public final void resolveInstanceRefs(State state) { in resolveInstanceRefs()
174 public final void resolveClassStatics(State state) { in resolveClassStatics()
180 public final void resolveRoots(State state) { in resolveRoots()
DArrayInstance.java37 public final void resolveReferences(State state) { in resolveReferences()
106 State state = mHeap.mState; in visit() local
DClassObj.java48 public final void resolveReferences(State state) { in resolveReferences()
196 State state = mHeap.mState; in visit() local
DInstance.java54 public abstract void resolveReferences(State state); in resolveReferences()
DHprofParser.java100 State state = new State(); in parse() local
/dalvik/libdex/
DDexSwapVerify.c91 static inline u4 fileOffset(const CheckState* state, const void* ptr) { in fileOffset()
98 static inline void* filePointer(const CheckState* state, u4 offset) { in filePointer()
110 static inline bool checkPtrRange(const CheckState* state, in checkPtrRange()
232 static bool verifyFieldDefiner(const CheckState* state, u4 definingClass, in verifyFieldDefiner()
239 static bool verifyMethodDefiner(const CheckState* state, u4 definingClass, in verifyMethodDefiner()
249 static size_t calcDefinedClassBitsSize(const CheckState* state) in calcDefinedClassBitsSize()
258 static bool setDefinedClassBit(const CheckState* state, u4 typeIdx) { in setDefinedClassBit()
272 static bool swapDexHeader(const CheckState* state, DexHeader* pHeader) in swapDexHeader()
322 static bool checkHeaderSection(const CheckState* state, u4 sectionOffset, in checkHeaderSection()
394 static bool swapMap(CheckState* state, DexMapList* pMap) in swapMap()
[all …]
Dsha1.h8 unsigned long state[5]; member
/dalvik/vm/
DProfile.c340 MethodTraceState* state = &gDvm.methodTrace; in dvmMethodTraceStart() local
486 const MethodTraceState* state = &gDvm.methodTrace; in dvmIsMethodTraceActive() local
496 MethodTraceState* state = &gDvm.methodTrace; in dvmMethodTraceStop() local
677 MethodTraceState* state = &gDvm.methodTrace; in dvmMethodTraceAdd() local
/dalvik/dx/src/com/android/dx/ssa/
DLocalVariableExtractor.java200 RegisterSpecSet state = (succ == primarySuccessor) ? in processBlock() local
/dalvik/dx/src/com/android/dx/rop/code/
DLocalVariableExtractor.java183 RegisterSpecSet state = (succ == primarySuccessor) ? in processBlock() local
/dalvik/vm/hprof/
DHprofHeap.c60 hprof_heap_tag_t state, u4 threadSerialNumber) in hprofSetGcScanState()
/dalvik/vm/alloc/
DHeap.c1000 void dvmHeapSetHprofGcScanState(hprof_heap_tag_t state, u4 threadSerialNumber) in dvmHeapSetHprofGcScanState()
DDdmHeap.c216 u1 state; in heap_chunk_callback() local
/dalvik/dx/src/com/android/dx/dex/code/
DLocalList.java345 MakeState state = new MakeState(sz); in make() local
/dalvik/vm/interp/
DJit.c288 SelfVerificationState state = shadowSpace->selfVerificationState; in selfVerificationDebugInterp() local