Searched refs:RootType (Results 1 – 7 of 7) sorted by relevance
/art/tools/ahat/src/main/com/android/ahat/heapdump/ |
D | RootType.java | 23 public enum RootType { enum 97 RootType(int mask) { in RootType() method in RootType
|
D | Parser.java | 290 roots.add(new RootData(objectId, RootType.JNI_GLOBAL)); in parseInternal() 298 roots.add(new RootData(objectId, RootType.JNI_LOCAL)); in parseInternal() 306 roots.add(new RootData(objectId, RootType.JAVA_FRAME)); in parseInternal() 313 roots.add(new RootData(objectId, RootType.NATIVE_STACK)); in parseInternal() 319 roots.add(new RootData(objectId, RootType.STICKY_CLASS)); in parseInternal() 326 roots.add(new RootData(objectId, RootType.THREAD_BLOCK)); in parseInternal() 332 roots.add(new RootData(objectId, RootType.MONITOR)); in parseInternal() 340 roots.add(new RootData(objectId, RootType.THREAD)); in parseInternal() 518 roots.add(new RootData(objectId, RootType.INTERNED_STRING)); in parseInternal() 524 roots.add(new RootData(objectId, RootType.FINALIZING)); in parseInternal() [all …]
|
D | AhatInstance.java | 236 void addRootType(RootType type) { in addRootType() 246 public Collection<RootType> getRootTypes() { in getRootTypes() 251 List<RootType> types = new ArrayList<RootType>(); in getRootTypes() 252 for (RootType type : RootType.values()) { in getRootTypes()
|
/art/runtime/ |
D | gc_root.h | 40 enum RootType { enum 57 std::ostream& operator<<(std::ostream& os, const RootType& root_type); 63 explicit RootInfo(RootType type, uint32_t thread_id = 0) 69 RootType GetType() const { in GetType() 81 const RootType type_;
|
/art/tools/ahat/etc/ |
D | ahat_api.txt | 94 method public java.util.Collection<com.android.ahat.heapdump.RootType> getRootTypes(); 205 public final class RootType extends java.lang.Enum { 206 method public static com.android.ahat.heapdump.RootType valueOf(java.lang.String); 207 method public static final com.android.ahat.heapdump.RootType[] values(); 208 enum_constant public static final com.android.ahat.heapdump.RootType DEBUGGER; 209 enum_constant public static final com.android.ahat.heapdump.RootType FINALIZING; 210 enum_constant public static final com.android.ahat.heapdump.RootType INTERNED_STRING; 211 enum_constant public static final com.android.ahat.heapdump.RootType JAVA_FRAME; 212 enum_constant public static final com.android.ahat.heapdump.RootType JNI_GLOBAL; 213 enum_constant public static final com.android.ahat.heapdump.RootType JNI_LOCAL; [all …]
|
/art/openjdkjvmti/ |
D | ti_heap.cc | 960 case art::RootType::kRootJNIGlobal: in GetReferenceKind() 963 case art::RootType::kRootJNILocal: in GetReferenceKind() 995 case art::RootType::kRootJavaFrame: in GetReferenceKind() 1027 case art::RootType::kRootNativeStack: in GetReferenceKind() 1028 case art::RootType::kRootThreadBlock: in GetReferenceKind() 1029 case art::RootType::kRootThreadObject: in GetReferenceKind() 1032 case art::RootType::kRootStickyClass: in GetReferenceKind() 1033 case art::RootType::kRootInternedString: in GetReferenceKind() 1037 case art::RootType::kRootMonitorUsed: in GetReferenceKind() 1038 case art::RootType::kRootJNIMonitor: in GetReferenceKind() [all …]
|
/art/tools/ahat/src/main/com/android/ahat/ |
D | ObjectHandler.java | 29 import com.android.ahat.heapdump.RootType; 81 Collection<RootType> rootTypes = inst.getRootTypes(); in handle() 85 for (RootType type : rootTypes) { in handle()
|