Home | History | Annotate | Download | only in heap

Lines Matching refs:NativeLibraryAllocationInfo

32 public final class NativeLibraryAllocationInfo {
43 private NativeLibraryAllocationInfo(String libraryName) {
72 * Factory method to create a list of {@link NativeLibraryAllocationInfo} objects,
80 public static List<NativeLibraryAllocationInfo> constructFrom(
86 Map<String, NativeLibraryAllocationInfo> allocationsByLibrary =
87 new HashMap<String, NativeLibraryAllocationInfo>();
105 List<NativeLibraryAllocationInfo> libraryAllocations =
106 new ArrayList<NativeLibraryAllocationInfo>(allocationsByLibrary.values());
109 for (NativeLibraryAllocationInfo l : libraryAllocations) {
114 Collections.sort(libraryAllocations, new Comparator<NativeLibraryAllocationInfo>() {
115 public int compare(NativeLibraryAllocationInfo o1,
116 NativeLibraryAllocationInfo o2) {
124 private static void addtoLibrary(Map<String, NativeLibraryAllocationInfo> libraryAllocations,
126 NativeLibraryAllocationInfo libAllocationInfo = libraryAllocations.get(libName);
128 libAllocationInfo = new NativeLibraryAllocationInfo(libName);