Searched defs:at (Results 1 - 6 of 6) sorted by relevance

/dalvik/dx/src/com/android/dx/cf/cst/
H A DConstantPoolParser.java6 * You may obtain a copy of the License at
164 int at = 10; // offset from the start of the file to the first cst
168 offsets[i] = at;
169 int tag = bytes.getUnsignedByte(at);
178 at += 5;
184 at += 9;
190 at += 3;
195 at += bytes.getUnsignedShort(at + 1) + 3;
202 " at offse
321 parseUtf8(int at) argument
[all...]
/dalvik/dx/src/com/android/dx/dex/code/
H A DOutputFinisher.java6 * You may obtain a copy of the License at
219 * Inserts an instruction in the output at the given offset.
221 * @param at {@code >= 0;} what index to insert at
224 public void insert(int at, DalvInsn insn) { argument
225 insns.add(at, insn);
527 * final addresses aren't known at the point that this method is
538 * at their original indices, and the instruction list doesn't
/dalvik/dexlist/
H A DDexList.c6 * You may obtain a copy of the License at
54 size_t at = strlen(str); local
58 assert(str[at - 1] == ';');
59 at -= 2; /* Two fewer chars to copy. */
63 newStr = malloc(at + 1); /* Add one for the '\0'. */
64 newStr[at] = '\0';
66 while (at > 0) {
67 at--;
68 newStr[at] = (str[at]
[all...]
/dalvik/dx/src/com/android/dx/command/dump/
H A DBaseDumper.java6 * You may obtain a copy of the License at
68 private int at; field in class:BaseDumper
92 this.at = 0;
131 if (offset < at) {
133 at = offset;
134 } else if (offset > at) {
135 String hex = rawBytes ? hexDump(at, offset - at) : "";
137 at = offset;
142 at
[all...]
/dalvik/libdex/
H A DDexProto.c6 * You may obtain a copy of the License at
76 * If the given DexStringCache doesn't already point at the given value,
79 * function is intended to be used after making a call that at least
156 char *at = (char*) pCache->value; local
157 *(at++) = '(';
162 strcpy(at, desc);
163 at += strlen(desc);
166 *(at++) = ')';
168 strcpy(at, dexStringByTypeIdx(dexFile, protoId->returnTypeIdx));
208 char *at local
[all...]
/dalvik/vm/
H A DMisc.c6 * You may obtain a copy of the License at
40 * If "mode" is kHexDumpLocal, we start at offset zero, and show a full
117 * We can overrun logcat easily by writing at full speed. On the
198 * Allocate a bit vector with enough space to hold at least the specified
419 size_t at = strlen(str); local
422 if ((at >= 2) && (str[0] == 'L') && (str[at - 1] == ';')) {
423 at -= 2; /* Two fewer chars to copy. */
427 newStr = malloc(at + 1); /* Add one for the '\0'. */
431 newStr[at]
452 char* at; local
[all...]

Completed in 117 milliseconds