Home
last modified time | relevance | path

Searched refs:fromInputStream (Results 1 – 9 of 9) sorted by relevance

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/
DDexFileFactory.java97 return DexBackedDexFile.fromInputStream(opcodes, inputStream); in loadDexFile()
103 return DexBackedOdexFile.fromInputStream(opcodes, inputStream); in loadDexFile()
113 oatFile = OatFile.fromInputStream(inputStream, new FilenameVdexProvider(file)); in loadDexFile()
195 oatFile = OatFile.fromInputStream(inputStream, new FilenameVdexProvider(file)); in loadDexEntry()
246 DexBackedDexFile dexFile = DexBackedDexFile.fromInputStream(opcodes, inputStream); in loadDexContainer()
253 … DexBackedOdexFile odexFile = DexBackedOdexFile.fromInputStream(opcodes, inputStream); in loadDexContainer()
264 oatFile = OatFile.fromInputStream(inputStream, new FilenameVdexProvider(file)); in loadDexContainer()
/external/smali/baksmali/src/main/java/org/jf/baksmali/
DListDependenciesCommand.java90 OatFile oatFile = OatFile.fromInputStream(inputStream); in run()
102 … DexBackedOdexFile odexFile = DexBackedOdexFile.fromInputStream(Opcodes.getDefault(), inputStream); in run()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/
DOatFile.java126 public static OatFile fromInputStream(@Nonnull InputStream is) throws IOException { in fromInputStream() method in OatFile
127 return fromInputStream(is, null); in fromInputStream()
130 …public static OatFile fromInputStream(@Nonnull InputStream is, @Nullable VdexProvider vdexProvider) in fromInputStream() method in OatFile
DDexBackedOdexFile.java87 …@Nonnull public static DexBackedOdexFile fromInputStream(@Nonnull Opcodes opcodes, @Nonnull InputS…
DDexBackedDexFile.java108 … public static DexBackedDexFile fromInputStream(@Nonnull Opcodes opcodes, @Nonnull InputStream is) in fromInputStream() method in DexBackedDexFile
/external/google-tv-pairing-protocol/java/src/com/google/polo/wire/xml/
DXmlWireAdapter.java75 XmlMessageWrapper.fromInputStream(mInputStream); in getNextMessage()
DXmlMessageWrapper.java130 public static XmlMessageWrapper fromInputStream(InputStream stream) in fromInputStream() method in XmlMessageWrapper
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
DASN1BitString.java244 static ASN1BitString fromInputStream(int length, InputStream stream) in fromInputStream() method in ASN1BitString
DASN1InputStream.java433 return ASN1BitString.fromInputStream(defIn.getRemaining(), defIn); in createPrimitiveDERObject()