Lines Matching defs:in
5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
49 * The bytes of a dex file in memory for reading and writing. All int offsets
94 * Creates a new dex buffer of the dex in {@code in}, and closes {@code in}.
96 public Dex(InputStream in) throws IOException {
98 loadFrom(in);
100 in.close();
117 throw new DexException("Expected " + DexFormat.DEX_IN_JAR_NAME + " in " + file);
129 * It is the caller's responsibility to close {@code in}.
131 private void loadFrom(InputStream in) throws IOException {
136 while ((count = in.read(buffer)) != -1) {
270 * first 32 bytes of dex files are not specified to be included in the
489 * Unfortunately they're in the opposite order in the dex file
779 private final Dex.Section in = open(tableOfContents.classDefs.off);
792 return in.readClassDef();