Searched defs:in (Results 1 - 10 of 10) sorted by relevance

/dalvik/dx/src/com/android/multidex/
H A DPath.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
65 private static byte[] readStream(InputStream in, ByteArrayOutputStream baos, byte[] readBuffer) argument
69 int amt = in.read(readBuffer);
77 in.close();
100 InputStream in = element.open(path);
102 byte[] bytes = readStream(in, baos, readBuffer);
108 in.close();
/dalvik/dx/tests/115-merge/com/android/dx/merge/
H A DDexMergeTest.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
128 * Merging dex files uses pessimistic sizes that naturally leave gaps in the
186 private void copy(InputStream in, OutputStream out) throws IOException { argument
189 while ((count = in.read(buffer)) != -1) {
192 in.close();
/dalvik/hit/src/com/android/hit/
H A DClassInstance.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
33 public final void loadFieldData(DataInputStream in, int numBytes) argument
36 in.readFully(mFieldValues);
164 StringBuilder result = new StringBuilder("Referenced in field(s):");
H A DHprofParser.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
61 * When a sub-tag of this type appears in a HPROF_HEAP_DUMP or
65 * may appear in a single HEAP_DUMP[_SEGMENT].
95 public HprofParser(DataInputStream in) { argument
96 mInput = in;
105 DataInputStream in = mInput;
107 mIdSize = in.readInt();
110 in.readLong(); // Timestamp, ignored for now
113 int tag = in
[all...]
/dalvik/dx/src/com/android/dx/ssa/
H A DDominators.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
27 * See A Fast Algorithm for Finding Dominators in a Flowgraph
30 * This implementation runs in time O(n log n). The time bound
33 * overheads are high enough that the current method is faster in all but the
80 * to avoid calling a large amount of code in the constructor.)
113 * @param in Basic block whose DFS info we are path compressing.
115 private void compress(SsaBasicBlock in) { argument
116 DFSInfo bbInfo = info[in.getIndex()];
122 worklist.add(in);
[all...]
/dalvik/dx/src/com/android/dx/io/instructions/
H A DDecodedInstruction.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
33 * match the names given in the Dalvik instruction format
55 * though it is stored in an {@code int}.
69 public static DecodedInstruction decode(CodeInput in) throws EOFException { argument
70 int opcodeUnit = in.read();
74 return format.decode(opcodeUnit, in);
85 ShortArrayCodeInput in = new ShortArrayCodeInput(encodedInstructions);
88 while (in.hasMore()) {
89 decoded[in
[all...]
H A DInstructionCodec.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
33 CodeInput in) throws EOFException {
46 CodeInput in) throws EOFException {
61 CodeInput in) throws EOFException {
80 CodeInput in) throws EOFException {
99 CodeInput in) throws EOFException {
115 CodeInput in) throws EOFException {
116 int baseAddress = in.cursor() - 1;
132 CodeInput in) throw
756 decode(int opcodeUnit, CodeInput in) argument
767 decodeRegisterList( InstructionCodec format, int opcodeUnit, CodeInput in) argument
832 decodeRegisterRange( InstructionCodec format, int opcodeUnit, CodeInput in) argument
[all...]
/dalvik/dx/tests/098-dex-jsr-ret-throw/
H A DViewDebug$ViewServer.class ... run () String[] params String command java.io.BufferedReader in java.io.IOException e java.io. ...
/dalvik/dx/src/com/android/dx/merge/
H A DDexMerger.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
193 * result in too many bytes wasted, compact the result. To compact,
224 * merged dex file. Populates maps from old to new indices in the process.
299 * sorting in memory.
333 Dex.Section in = source.open(section.off);
335 int offset = in.getPosition();
336 T value = read(in, indexMap, 0);
343 abstract T read(Dex.Section in, IndexMap indexMap, int index); argument
384 @Override String read(Dex.Section in, IndexMa
619 transformAnnotationSets(Dex in, IndexMap indexMap) argument
629 transformAnnotationSetRefLists(Dex in, IndexMap indexMap) argument
639 transformAnnotationDirectories(Dex in, IndexMap indexMap) argument
649 transformStaticValues(Dex in, IndexMap indexMap) argument
663 transformClassDef(Dex in, ClassDef classDef, IndexMap indexMap) argument
770 transformClassData(Dex in, ClassData classData, IndexMap indexMap) argument
799 transformMethods(Dex in, IndexMap indexMap, ClassData.Method[] methods) argument
818 transformCode(Dex in, Code code, IndexMap indexMap) argument
897 transformDebugInfoItem(Dex.Section in, IndexMap indexMap) argument
989 transformStaticValues(Dex.Section in, IndexMap indexMap) argument
[all...]
/dalvik/tools/hprof-conv/
H A DHprofConv.c5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
153 * Get the amount of data currently in the buffer.
205 static int ebReadString(ExpandBuf* pBuf, FILE* in) argument
212 ic = getc(in);
213 if (feof(in) || ferror(in)) {
230 static int ebReadData(ExpandBuf* pBuf, FILE* in, size_t count, int eofExpected) argument
237 actual = fread(pBuf->storage + pBuf->curLen, 1, count, in);
239 if (eofExpected && feof(in)
599 filterData(FILE* in, FILE* out, int flags) argument
706 FILE* in = NULL; local
[all...]

Completed in 429 milliseconds