Home
last modified time | relevance | path

Searched refs:callSiteIds (Results 1 – 7 of 7) sorted by relevance

/dalvik/dx/src/com/android/dx/dex/file/
DCallSiteIdsSection.java30 private final TreeMap<CstCallSiteRef, CallSiteIdItem> callSiteIds = new TreeMap<>(); field in CallSiteIdsSection
52 IndexedItem result = callSiteIds.get((CstCallSiteRef) cst); in get()
63 for (CallSiteIdItem callSiteId : callSiteIds.values()) { in orderItems()
71 return callSiteIds.values(); in items()
89 CallSiteIdItem result = callSiteIds.get(cstRef); in intern()
92 callSiteIds.put(cstRef, result); in intern()
DCallSiteIdItem.java62 CallSiteIdsSection callSiteIds = file.getCallSiteIds(); in addContents() local
63 CallSiteItem callSiteItem = callSiteIds.getCallSiteItem(callSite); in addContents()
68 callSiteIds.addCallSiteItem(callSite, callSiteItem); in addContents()
DDexFile.java94 private final CallSiteIdsSection callSiteIds; field in DexFile
151 callSiteIds = new CallSiteIdsSection(this); in DexFile()
156 callSiteIds, methodHandles, in DexFile()
159 callSiteIds = null; in DexFile()
475 return callSiteIds; in getCallSiteIds()
573 return callSiteIds.get(cst); in findItemOrNull()
624 callSiteIds.prepare(); in toDex0()
647 if ((one == callSiteIds || one == methodHandles) && one.items().isEmpty()) { in toDex0()
701 if ((one == callSiteIds || one == methodHandles) && one.items().isEmpty()) { in toDex0()
/dalvik/dx/src/com/android/dx/merge/
DIndexMap.java68 public final int[] callSiteIds; field in IndexMap
84 this.callSiteIds = new int[tableOfContents.callSiteIds.size]; in IndexMap()
201 return callSiteIds[callSiteIndex]; in adjustCallSite()
DDexMerger.java485 return tableOfContents.callSiteIds; in mergeCallSiteIds()
495 indexMap.callSiteIds[oldIndex] = newIndex; in mergeCallSiteIds()
/dalvik/dx/src/com/android/dex/
DTableOfContents.java39 public final Section callSiteIds = new Section(0x0007); field in TableOfContents
53 header, stringIds, typeIds, protoIds, fieldIds, methodIds, classDefs, mapList, callSiteIds,
/dalvik/dx/src/com/android/dx/dex/cf/
DCfTranslator.java148 CallSiteIdsSection callSiteIds = dexFile.getCallSiteIds(); in translate0() local
179 callSiteIds.intern(ref); in translate0()