OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:NativeLibraryAllocationInfo
(Results
1 - 4
of
4
) sorted by null
/sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/heap/
NativeLibraryAllocationInfo.java
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
>() {
[
all
...]
NativeHeapSnapshot.java
36
private List<
NativeLibraryAllocationInfo
> mHeapAllocationsByLibrary;
39
private List<
NativeLibraryAllocationInfo
> mNonZygoteHeapAllocationsByLibrary;
64
public List<
NativeLibraryAllocationInfo
> getAllocationsByLibrary() {
69
List<
NativeLibraryAllocationInfo
> heapAllocations =
70
NativeLibraryAllocationInfo
.constructFrom(mHeapAllocations);
80
private boolean isFullyResolved(List<
NativeLibraryAllocationInfo
> heapAllocations) {
81
for (
NativeLibraryAllocationInfo
info : heapAllocations) {
82
if (info.getLibraryName().equals(
NativeLibraryAllocationInfo
.UNRESOLVED_LIBRARY_NAME)) {
118
public List<
NativeLibraryAllocationInfo
> getNonZygoteAllocationsByLibrary() {
123
List<
NativeLibraryAllocationInfo
> heapAllocations
[
all
...]
NativeHeapProviderByLibrary.java
67
childCount = ((
NativeLibraryAllocationInfo
) item).getAllocations().size();
68
} else if (parent instanceof
NativeLibraryAllocationInfo
) {
69
item = ((
NativeLibraryAllocationInfo
) parent).getAllocations().get(index);
80
private List<
NativeLibraryAllocationInfo
> getLibraryAllocations(NativeHeapSnapshot snapshot) {
NativeHeapLabelProvider.java
41
if (element instanceof
NativeLibraryAllocationInfo
) {
42
return getColumnTextForNativeLibrary((
NativeLibraryAllocationInfo
) element, index);
73
private String getColumnTextForNativeLibrary(
NativeLibraryAllocationInfo
info, int index) {
Completed in 321 milliseconds