Searched refs:dexOut (Results 1 – 2 of 2) sorted by relevance
50 private final Dex dexOut; field in DexMerger102 dexOut = new Dex(writerSizes.size()); in DexMerger()106 indexMaps[i] = new IndexMap(dexOut, dexes[i].getTableOfContents()); in DexMerger()110 headerOut = dexOut.appendSection(writerSizes.header, "header"); in DexMerger()111 idsDefsOut = dexOut.appendSection(writerSizes.idsDefs, "ids defs"); in DexMerger()113 contentsOut = dexOut.getTableOfContents(); in DexMerger()114 contentsOut.dataOff = dexOut.getNextSectionStart(); in DexMerger()116 contentsOut.mapList.off = dexOut.getNextSectionStart(); in DexMerger()118 mapListOut = dexOut.appendSection(writerSizes.mapList, "map list"); in DexMerger()120 contentsOut.typeLists.off = dexOut.getNextSectionStart(); in DexMerger()[all …]
161 public void writeTo(File dexOut) throws IOException { in writeTo() argument162 try (OutputStream out = new FileOutputStream(dexOut)) { in writeTo()