Home | History | Annotate | Download | only in src

Lines Matching full:snapshot

24 import com.android.tools.perflib.heap.Snapshot;
42 * A wrapper over the perflib snapshot that provides the behavior we use in
46 private final Snapshot mSnapshot;
72 Snapshot snapshot = Snapshot.createSnapshot(new MemoryMappedFileBuffer(hprof));
73 snapshot.computeDominators();
74 return new AhatSnapshot(snapshot);
78 * Construct an AhatSnapshot for the given perflib snapshot.
79 * Ther user is responsible for calling snapshot.computeDominators before
82 private AhatSnapshot(Snapshot snapshot) {
83 mSnapshot = snapshot;
94 if (dominator == Snapshot.SENTINEL_ROOT) {
134 for (RootObj root : snapshot.getGCRoots()) {
269 // Return a list of known native allocations in the snapshot.