Searched refs:id (Results 1 - 25 of 32) sorted by relevance

12

/dalvik/hit/src/com/android/hit/
H A DThreadObj.java23 public ThreadObj(long id, int stackTrace) { argument
24 mId = id;
H A DArrayInstance.java28 public ArrayInstance(long id, StackTrace stack, int type, int numEntries, argument
30 mId = id;
53 long id;
57 id = dis.readInt();
59 id = dis.readLong();
62 Instance instance = state.findReference(id);
109 long id;
113 id = dis.readInt();
115 id = dis.readLong();
118 Instance instance = state.findReference(id);
[all...]
H A DState.java42 public Heap setHeapTo(int id, String name) { argument
43 Heap heap = mHeaps.get(id);
48 mHeaps.put(id, heap);
56 public Heap getHeap(int id) { argument
57 return mHeaps.get(id);
74 public final StackFrame getStackFrame(long id) { argument
75 return mCurrentHeap.getStackFrame(id);
103 public final void addInstance(long id, Instance instance) { argument
104 mCurrentHeap.addInstance(id, instance);
107 public final void addClass(long id, ClassOb argument
111 findReference(long id) argument
124 findClass(long id) argument
[all...]
H A DClassObj.java41 public ClassObj(long id, StackTrace stack, String className) { argument
42 mId = id;
66 long id;
69 id = dis.readInt();
71 id = dis.readLong();
74 RootObj root = new RootObj(RootType.JAVA_STATIC, id);
76 if (id == 0) {
82 Instance instance = state.findReference(id);
92 id);
131 public final void setSuperclassId(long id) { argument
[all...]
H A DClassInstance.java27 public ClassInstance(long id, StackTrace stack, long classId) { argument
28 mId = id;
63 long id;
66 id = dis.readInt();
68 id = dis.readLong();
71 Instance instance = state.findReference(id);
123 long id;
126 id = dis.readInt();
128 id = dis.readLong();
131 Instance instance = state.findReference(id);
[all...]
H A DStackFrame.java32 public StackFrame(long id, String method, String sig, String file, argument
34 mId = id;
H A DRootObj.java37 public RootObj(RootType type, long id) { argument
38 this(type, id, 0, null);
41 public RootObj(RootType type, long id, int thread, StackTrace stack) { argument
43 mId = id;
H A DHeap.java55 public final StackFrame getStackFrame(long id) { argument
56 return mFrames.get(id);
91 public final void addInstance(long id, Instance instance) { argument
92 mInstances.put(id, instance);
95 public final Instance getInstance(long id) { argument
96 return mInstances.get(id);
99 public final void addClass(long id, ClassObj theClass) { argument
100 mClassesById.put(id, theClass);
104 public final ClassObj getClass(long id) { argument
105 return mClassesById.get(id);
[all...]
H A DHprofParser.java191 long id = readId();
194 mStrings.put(id, string);
200 long id = readId();
204 mClassNames.put(id, name);
208 long id = readId();
215 StackFrame frame = new StackFrame(id, methodName, methodSignature,
353 long id = readId();
359 RootObj root = new RootObj(RootType.NATIVE_LOCAL, id,
369 long id = readId();
375 RootObj root = new RootObj(RootType.JAVA_LOCAL, id, threadSerialNumbe
[all...]
H A DInstance.java111 * If this object has a reference to the object identified by id, return
114 public String describeReferenceTo(long id) { argument
115 return "No reference to 0x" + Long.toHexString(id);
H A DQueries.java190 * Find a reference to an object based on its id. The id should be
193 public static Instance findObject(State state, String id) { argument
194 long id2 = Long.parseLong(id, 16);
/dalvik/vm/jdwp/
H A DJdwpHandler.h30 u4 id; member in struct:JdwpReqHeader
H A DJdwp.h60 INLINE void expandBufAddFieldId(ExpandBuf* pReply, FieldId id) { argument
61 expandBufAdd4BE(pReply, id);
63 INLINE void expandBufAddMethodId(ExpandBuf* pReply, MethodId id) { argument
64 expandBufAdd4BE(pReply, id);
66 INLINE void expandBufAddObjectId(ExpandBuf* pReply, ObjectId id) { argument
67 expandBufAdd8BE(pReply, id);
69 INLINE void expandBufAddRefTypeId(ExpandBuf* pReply, RefTypeId id) { argument
70 expandBufAdd8BE(pReply, id);
72 INLINE void expandBufAddFrameId(ExpandBuf* pReply, FrameId id) { argument
73 expandBufAdd8BE(pReply, id);
[all...]
H A DJdwpSocket.cpp549 u4 length, id;
558 id = read4BE(&buf);
571 ALOGV("--- %s: dataLen=%u id=0x%08x flags=0x%02x cmd=%d/%d",
573 dataLen, id, flags, cmdSet, cmd);
587 u4 length, id; local
598 id = read4BE(&buf);
616 hdr.id = id;
H A DJdwpAdb.cpp431 u4 length, id; local
440 id = read4BE(&buf);
458 hdr.id = id;
/dalvik/vm/
H A DDebugger.h162 const char* dvmDbgGetClassDescriptor(RefTypeId id);
163 ObjectId dvmDbgGetClassObject(RefTypeId id);
164 RefTypeId dvmDbgGetSuperclass(RefTypeId id);
165 ObjectId dvmDbgGetClassLoader(RefTypeId id);
166 u4 dvmDbgGetAccessFlags(RefTypeId id);
167 bool dvmDbgIsInterface(RefTypeId id);
200 const char* dvmDbgGetMethodName(RefTypeId refTypeId, MethodId id);
208 void dvmDbgOutputVariableTable(RefTypeId refTypeId, MethodId id,
294 void dvmDbgRegisterObjectId(ObjectId id);
H A DDebugger.cpp180 * Determine if an id is already in the list.
187 static bool lookupId(ObjectId id) argument
191 found = dvmHashTableLookup(gDvm.dbgRegistry, registryHash((u4) id),
192 (void*)(u4) id, registryCompare, false);
195 assert(found == (void*)(u4) id);
211 ObjectId id; local
219 id = (ObjectId)(u4)obj | ((u8) type) << 32;
221 return id;
232 dvmHashTableLookup(gDvm.dbgRegistry, registryHash((u4) id),
233 (void*)(u4) id, registryCompar
251 objectIsRegistered(ObjectId id, RegistryType type) argument
280 refTypeIdToClassObject(RefTypeId id) argument
297 objectIdToObject(ObjectId id) argument
310 dvmDbgRegisterObjectId(ObjectId id) argument
327 methodIdToMethod(RefTypeId refTypeId, MethodId id) argument
343 fieldIdToField(RefTypeId refTypeId, FieldId id) argument
358 frameIdToFrame(FrameId id) argument
510 dvmDbgGetClassDescriptor(RefTypeId id) argument
521 dvmDbgGetClassObject(RefTypeId id) argument
530 dvmDbgGetSuperclass(RefTypeId id) argument
539 dvmDbgGetClassLoader(RefTypeId id) argument
548 dvmDbgGetAccessFlags(RefTypeId id) argument
557 dvmDbgIsInterface(RefTypeId id) argument
1074 ObjectId id = dvmReadObjectId(&buf); local
1144 dvmDbgGetMethodName(RefTypeId refTypeId, MethodId id) argument
[all...]
/dalvik/vm/compiler/
H A DLoop.cpp108 dvmIsBitSet(bb->predecessors, cUnit->entryBlock->id)) {
111 if (predIdx == cUnit->entryBlock->id) continue;
378 * If the register's SSA id is less than the number of Dalvik
543 dvmCompilerSetBit(cUnit->tempBlockV, cUnit->entryBlock->id);
544 dvmCompilerSetBit(cUnit->tempBlockV, firstBB->id);
558 dvmIsBitSet(cUnit->tempBlockV, bodyBB->fallThrough->id)) {
566 dvmIsBitSet(cUnit->tempBlockV, bodyBB->taken->id)) {
575 dvmIsBitSet(cUnit->tempBlockV, bodyBB->fallThrough->id)) {
579 dvmIsBitSet(cUnit->tempBlockV, bodyBB->taken->id)) {
586 dvmCompilerSetBit(cUnit->tempBlockV, bodyBB->id);
[all...]
H A DSSATransformation.cpp29 /* Enqueue the block id */
30 dvmInsertGrowableList(&cUnit->dfsOrder, block->id);
83 dvmCompilerSetBit(cUnit->defBlockMatrix[idx], bb->id);
116 cUnit->entryBlock->id);
137 /* Enter the current block id */
138 dvmInsertGrowableList(&cUnit->domPostOrderTraversal, bb->id);
141 if (bb->taken && dvmIsBitSet(bb->dominators, bb->taken->id)) {
156 dvmSetBit(domBB->domFrontier, succBB->id);
256 dvmSetBit(tempBlockV, bb->id);
275 dvmClearBit(tempBlockV, bb->id);
[all...]
H A DFrontend.cpp538 dvmCompilerClearBit(bottomBlock->taken->predecessors, origBlock->id);
539 dvmCompilerSetBit(bottomBlock->taken->predecessors, bottomBlock->id);
547 dvmCompilerSetBit(bottomBlock->predecessors, origBlock->id);
550 origBlock->id);
552 bottomBlock->id);
568 dvmCompilerClearBit(bb->predecessors, origBlock->id);
569 dvmCompilerSetBit(bb->predecessors, bottomBlock->id);
690 fprintf(file, " {block id %d\\l}%s\\\n", bb->id,
942 dvmCompilerSetBit(takenBlock->predecessors, curBlock->id);
[all...]
H A DUtility.cpp187 bb->id,
194 bb->taken->id, bb->taken->startOffset);
198 bb->fallThrough->id, bb->fallThrough->startOffset);
H A DIntermediateRep.cpp25 bb->id = blockId;
/dalvik/vm/hprof/
H A DHprof.h213 #define hprofAddIdToRecord(rec, id) hprofAddU4ToRecord((rec), (u4)(id))
/dalvik/vm/compiler/codegen/arm/
H A DArchFactory.cpp39 exceptionLabel += bb->taken->id;
/dalvik/tools/dmtracedump/
H A DCreateTestTrace.c102 * where the first column is the time, the second column is the thread id,
116 * In this file format, the thread id is always 1, and the time starts at
183 /* Get time and thread id */
389 unsigned int id = ++methodId << 2; local
390 pRecord->methodId = id;
392 /* Assign this id to all the other records that have the
399 pNext->methodId = id;

Completed in 832 milliseconds

12