HomeSort by relevance Sort by last modified time
    Searched refs:startDebugOffset (Results 1 - 3 of 3) sorted by null

  /external/smali/dexlib/src/main/java/org/jf/dexlib/Debug/
DebugInstructionIterator.java 47 int startDebugOffset;
51 startDebugOffset = in.getCursor();
57 processDebugInstruction.ProcessEndSequence(startDebugOffset);
63 processDebugInstruction.ProcessAdvancePC(startDebugOffset, in.getCursor() - startDebugOffset,
70 processDebugInstruction.ProcessAdvanceLine(startDebugOffset, in.getCursor() - startDebugOffset,
84 processDebugInstruction.ProcessStartLocal(startDebugOffset, in.getCursor() - startDebugOffset,
99 processDebugInstruction.ProcessStartLocalExtended(startDebugOffset,
    [all...]
  /external/smali/dexlib/src/main/java/org/jf/dexlib/
DebugInfoItem.java 114 public void ProcessStartLocal(int startDebugOffset, int length, int registerNum, int nameIndex,
125 public void ProcessStartLocalExtended(int startDebugOffset, int length, int registerNume,
140 public void ProcessSetFile(int startDebugOffset, int length, int nameIndex) {
185 public void ProcessStaticOpcode(DebugOpcode opcode, int startDebugOffset, int length) {
190 public void ProcessStartLocal(int startDebugOffset, int length, int registerNum, int nameIndex,
214 public void ProcessStartLocalExtended(int startDebugOffset, int length, int registerNum, int nameIndex,
244 public void ProcessSetFile(int startDebugOffset, int length, int nameIndex) {
299 public void ProcessStaticOpcode(DebugOpcode opcode, int startDebugOffset, int length) {
300 out.write(encodedDebugInfo, startDebugOffset, length);
304 public void ProcessStartLocal(int startDebugOffset, int length, int registerNum, int nameIndex
    [all...]
CodeItem.java 669 public void ProcessAdvancePC(int startDebugOffset, int debugInstructionLength, int codeAddressDelta) {
695 Leb128Utils.writeUnsignedLeb128(newCodeAddressDelta, result, startDebugOffset+1);
702 System.arraycopy(originalEncodedDebugInfo, 0, result, 0, startDebugOffset);
704 result[startDebugOffset] = DebugOpcode.DBG_ADVANCE_PC.value;
705 Leb128Utils.writeUnsignedLeb128(newCodeAddressDelta, result, startDebugOffset+1);
707 System.arraycopy(originalEncodedDebugInfo, startDebugOffset + debugInstructionLength, result,
708 startDebugOffset + codeAddressDeltaLeb128Size + 1,
709 originalEncodedDebugInfo.length - (startDebugOffset + codeAddressDeltaLeb128Size + 1));
715 public void ProcessSpecialOpcode(int startDebugOffset, int debugOpcode, int lineDelta,
    [all...]

Completed in 52 milliseconds