Home
last modified time | relevance | path

Searched refs:open (Results 1 – 8 of 8) sorted by relevance

/dalvik/dx/src/com/android/multidex/
DClassPathElement.java35 InputStream open(String path) throws IOException; in open() method
DFolderPathElement.java37 public InputStream open(String path) throws FileNotFoundException { in open() method in FolderPathElement
DArchivePathElement.java43 public InputStream open(String path) throws IOException { in open() method in ArchivePathElement
DPath.java100 InputStream in = element.open(path); in getClass()
/dalvik/libdex/
DCmdUtils.cpp57 fd = open(outFileName, O_RDWR | O_CREAT | O_EXCL, 0600); in dexUnzipToFile()
176 fd = open(fileName, O_RDONLY | O_BINARY); in dexOpenAndMap()
/dalvik/dx/src/com/android/dx/merge/
DDexMerger.java242 Dex.Section inA = aSection.exists() ? dexA.open(aSection.off) : null; in mergeSorted()
243 Dex.Section inB = bSection.exists() ? dexB.open(bSection.off) : null; in mergeSorted()
333 Dex.Section in = source.open(section.off); in readUnsortedValues()
622 Dex.Section setIn = in.open(section.off); in transformAnnotationSets()
632 Dex.Section setIn = in.open(section.off); in transformAnnotationSetRefLists()
642 Dex.Section directoryIn = in.open(section.off); in transformAnnotationDirectories()
652 Dex.Section staticValuesIn = in.open(section.off); in transformStaticValues()
833 transformDebugInfoItem(in.open(debugInfoOffset), indexMap); in transformCode()
856 Dex.Section triesSection = dexOut.open(codeOut.getPosition()); in transformCode()
/dalvik/dx/src/com/android/dx/command/grep/
DGrep.java102 readArray(new EncodedValueReader(dex.open(staticValuesOffset))); in grep()
/dalvik/dx/src/com/android/dx/io/
DDexIndexPrinter.java96 Dex.Section in = dex.open(tableOfContents.typeLists.off); in printTypeLists()