Home
last modified time | relevance | path

Searched refs:mType (Results 1 – 3 of 3) sorted by relevance

/dalvik/hit/src/com/android/hit/
DRootObj.java22 RootType mType = RootType.UNKNOWN; field in RootObj
42 mType = type; in RootObj()
51 if (mType == RootType.SYSTEM_CLASS) { in getClassName()
70 if (mType == RootType.SYSTEM_CLASS) { in getSize()
105 return "root " + mType.getName(); in getTypeName()
109 return String.format("%s@0x08x", mType.getName(), mId); in toString()
DArrayInstance.java24 private int mType; field in ArrayInstance
32 mType = type; in ArrayInstance()
38 if (mType != Types.OBJECT) { in resolveReferences()
46 int idSize = Types.getTypeSize(mType); in resolveReferences()
93 if (mType != Types.OBJECT) { in visit()
101 int idSize = Types.getTypeSize(mType); in visit()
131 return Types.getTypeName(mType) + "[" + mNumEntries + "]"; in getTypeName()
141 if (mType != Types.OBJECT) { in describeReferenceTo()
145 int idSize = Types.getTypeSize(mType); in describeReferenceTo()
DRootType.java38 private final int mType; field in RootType
42 mType = type; in RootType()
47 return mType; in getType()