/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/ |
DebugInfoItem.java | 56 out.annotateTo(reader.getOffset(), "line_start = %d", lineStart); 59 out.annotateTo(reader.getOffset(), "parameters_size = %d", parametersSize); 66 out.annotateTo(reader.getOffset(), "%s", 82 out.annotateTo(reader.getOffset(), "DBG_END_SEQUENCE"); 86 out.annotateTo(reader.getOffset(), "DBG_ADVANCE_PC"); 90 out.annotateTo(reader.getOffset(), "addr_diff = +0x%x: 0x%x", addressDiff, 96 out.annotateTo(reader.getOffset(), "DBG_ADVANCE_LINE"); 100 out.annotateTo(reader.getOffset(), "line_diff = +%d: %d", Math.abs(lineDiff), lineNumber); 105 out.annotateTo(reader.getOffset(), "DBG_START_LOCAL"); 108 out.annotateTo(reader.getOffset(), "register_num = v%d", registerNum) [all...] |
ClassDataItem.java | 64 out.annotateTo(reader.getOffset(), "static_fields_size = %d", staticFieldsSize); 67 out.annotateTo(reader.getOffset(), "instance_fields_size = %d", instanceFieldsSize); 70 out.annotateTo(reader.getOffset(), "direct_methods_size = %d", directMethodsSize); 73 out.annotateTo(reader.getOffset(), "virtual_methods_size = %d", virtualMethodsSize); 134 out.annotateTo(reader.getOffset(), "field_idx_diff = %d: %s", indexDelta, 138 out.annotateTo(reader.getOffset(), "access_flags = 0x%x: %s", accessFlags, 150 out.annotateTo(reader.getOffset(), "method_idx_diff = %d: %s", indexDelta, 154 out.annotateTo(reader.getOffset(), "access_flags = 0x%x: %s", accessFlags, 159 out.annotateTo(reader.getOffset(), "code_off = code_item[NO_OFFSET]"); 161 out.annotateTo(reader.getOffset(), "code_off = code_item[0x%x]", codeOffset) [all...] |
StringDataItem.java | 54 out.annotateTo(reader.getOffset(), "utf16_size = %d", utf16Length); 57 out.annotateTo(reader.getOffset() + 1, "data = \"%s\"", StringUtils.escapeString(value));
|
EncodedValue.java | 133 out.annotateTo(reader.getOffset(), TypeIdItem.getReferenceAnnotation(reader.dexBuf, typeIndex)); 136 out.annotateTo(reader.getOffset(), "size: %d", size); 143 out.annotateTo(reader.getOffset(), "name = %s", 156 out.annotateTo(reader.getOffset(), "size: %d", size);
|
CodeItem.java | 125 out.annotateTo(end, "truncated instruction"); 196 out.annotateTo(reader.getOffset(), "size = %d", handlerListCount); 204 out.annotateTo(reader.getOffset(), "size = %d", handlerCount); 216 out.annotateTo(reader.getOffset(), TypeIdItem.getReferenceAnnotation(dexFile, typeIndex)); 219 out.annotateTo(reader.getOffset(), "addr = 0x%x", handlerAddress); 230 out.annotateTo(reader.getOffset(), "catch_all_addr = 0x%x", catchAllAddress);
|
HeaderItem.java | 218 out.annotateTo(headerSize, "header padding");
|
/dalvik/dexgen/src/com/android/dexgen/dex/file/ |
CatchStructs.java | 225 * Only one of {@code printTo} or {@code annotateTo} should 230 * @param annotateTo {@code null-ok;} where to consume bytes and annotate to 233 AnnotatedOutput annotateTo) { 236 boolean consume = (annotateTo != null); 243 annotateTo.annotate(0, prefix + "tries:"); 256 annotateTo.annotate(amt1, s1); 257 annotateTo.annotate(amt2, s2); 269 annotateTo.annotate(0, prefix + "handlers:"); 270 annotateTo.annotate(encodedHandlerHeaderSize, 283 offset - lastOffset, subPrefix, printTo, annotateTo); [all...] |
DebugInfoEncoder.java | 82 private AnnotatedOutput annotateTo; 135 if (annotateTo != null) { 136 annotateTo.annotate(shouldConsume ? length : 0, message); 185 annotateTo = out; 202 if (annotateTo != null || debugPrint != null) { 371 boolean annotate = (annotateTo != null) || (debugPrint != null); 619 if (annotateTo != null || debugPrint != null) { 698 if (annotateTo != null || debugPrint != null) { 728 if (annotateTo != null || debugPrint != null) { 753 if (annotateTo != null || debugPrint != null) [all...] |
AnnotationSetItem.java | 151 items[i].annotateTo(out, " ");
|
AnnotationItem.java | 173 public void annotateTo(AnnotatedOutput out, String prefix) {
|
DebugInfoItem.java | 100 public void annotateTo(DexFile file, AnnotatedOutput out, String prefix) {
|
CodeItem.java | 286 debugInfo.annotateTo(file, out, " ");
|
/dalvik/dx/src/com/android/dx/dex/file/ |
CatchStructs.java | 222 * Only one of {@code printTo} or {@code annotateTo} should 227 * @param annotateTo {@code null-ok;} where to consume bytes and annotate to 230 AnnotatedOutput annotateTo) { 233 boolean consume = (annotateTo != null); 240 annotateTo.annotate(0, prefix + "tries:"); 253 annotateTo.annotate(amt1, s1); 254 annotateTo.annotate(amt2, s2); 266 annotateTo.annotate(0, prefix + "handlers:"); 267 annotateTo.annotate(encodedHandlerHeaderSize, 280 offset - lastOffset, subPrefix, printTo, annotateTo); [all...] |
DebugInfoEncoder.java | 90 private AnnotatedOutput annotateTo; 143 if (annotateTo != null) { 144 annotateTo.annotate(shouldConsume ? length : 0, message); 193 annotateTo = out; 210 if (annotateTo != null || debugPrint != null) { 379 boolean annotate = (annotateTo != null) || (debugPrint != null); 627 if (annotateTo != null || debugPrint != null) { 706 if (annotateTo != null || debugPrint != null) { 736 if (annotateTo != null || debugPrint != null) { 761 if (annotateTo != null || debugPrint != null) [all...] |
AnnotationSetItem.java | 152 items[i].annotateTo(out, " ");
|
AnnotationItem.java | 173 public void annotateTo(AnnotatedOutput out, String prefix) {
|
DebugInfoItem.java | 97 public void annotateTo(DexFile file, AnnotatedOutput out, String prefix) {
|
CodeItem.java | 277 debugInfo.annotateTo(file, out, " ");
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/ |
AnnotatedBytes.java | 108 public void annotateTo(int offset, @Nonnull String msg, Object... formatArgs) {
|
/prebuilts/tools/common/m2/repository/com/google/dexmaker/dexmaker/1.0/ |
dexmaker-1.0.jar | |
/prebuilts/tools/common/m2/repository/com/google/dexmaker/dexmaker/1.2/ |
dexmaker-1.2.jar | |
/external/dexmaker/lib/ |
dalvik-dx-1.jar | |
/prebuilts/sdk/tools/lib/ |
dx.jar | |
/prebuilts/tools/common/m2/repository/com/jakewharton/android/repackaged/dalvik-dx/1/ |
dalvik-dx-1.jar | |
/prebuilts/gradle-plugin/com/android/tools/build/builder/2.1.0/ |
builder-2.1.0.jar | |