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

/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/vm/
H A DMisc.h5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
46 union { u4 in; float out; } conv; member in union:__anon28
47 conv.in = val;
51 union { float in; u4 out; } conv; member in union:__anon29
52 conv.in = val;
80 * Print a hex dump at VERBOSE level. This does nothing in non-debug builds.
115 * Fill in a DebugOutputTarget struct.
140 int storageSize; /* current size, in 32-bit words */
150 * space in th
[all...]
H A DDebugger.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
59 debugger, and include the list in the GC root set. This ensures that
82 performing operations on Threads. Exceptions to this rule are noted in
155 /* keep track of type, in case we need to distinguish them someday */
163 * the low 4 bits in our hash.
180 * Determine if an id is already in the list.
226 LOGI("ignoring registerObject request in thread=%d\n",
271 * If speed is an issue we can encode the registry index in the high
333 * have added the object to the registry -- but in som
990 copyValuesToBE(u1* out, const u1* in, int count, int width) argument
1019 copyValuesFromBE(u1* out, const u1* in, int count, int width) 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/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
144 * Get the amount of data currently in the buffer.
196 static int ebReadString(ExpandBuf* pBuf, FILE* in) argument
203 ic = getc(in);
204 if (feof(in) || ferror(in)) {
221 static int ebReadData(ExpandBuf* pBuf, FILE* in, size_t count, int eofExpected) argument
228 actual = fread(pBuf->storage + pBuf->curLen, 1, count, in);
230 if (eofExpected && feof(in)
573 filterData(FILE* in, FILE* out) argument
670 FILE* in = stdin; local
[all...]

Completed in 323 milliseconds