HomeSort by relevance Sort by last modified time
    Searched defs:currentCodeAddress (Results 1 - 4 of 4) sorted by null

  /external/smali/dexlib/src/main/java/org/jf/dexlib/Debug/
DebugInstructionIterator.java 165 int currentCodeAddress = 0;
185 currentCodeAddress += codeAddressDiff;
200 processDecodedDebugInstruction.ProcessStartLocal(currentCodeAddress,
212 processDecodedDebugInstruction.ProcessStartLocalExtended(currentCodeAddress,
221 processDecodedDebugInstruction.ProcessEndLocal(currentCodeAddress, in.getCursor() - startDebugOffset, registerNum,
224 processDecodedDebugInstruction.ProcessEndLocal(currentCodeAddress, in.getCursor() - startDebugOffset, registerNum,
234 processDecodedDebugInstruction.ProcessRestartLocal(currentCodeAddress, in.getCursor() - startDebugOffset,
237 processDecodedDebugInstruction.ProcessRestartLocal(currentCodeAddress, in.getCursor() - startDebugOffset,
245 processDecodedDebugInstruction.ProcessSetPrologueEnd(currentCodeAddress);
250 processDecodedDebugInstruction.ProcessSetEpilogueBegin(currentCodeAddress);
    [all...]
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
MethodDefinition.java 77 int currentCodeAddress = 0;
82 currentCodeAddress +
84 currentCodeAddress);
87 currentCodeAddress +
89 currentCodeAddress);
91 instructionMap.append(currentCodeAddress, i);
92 currentCodeAddress += instruction.getSize(currentCodeAddress);
337 int currentCodeAddress = 0;
342 encodedMethod.codeItem, currentCodeAddress, instruction)
    [all...]
  /external/smali/dexlib/src/main/java/org/jf/dexlib/
CodeItem.java 256 int currentCodeAddress = 0;
258 currentCodeAddress = instruction.write(out, currentCodeAddress);
263 if ((currentCodeAddress % 2) != 0) {
288 if ((currentCodeAddress % 2) != 0) {
409 int currentCodeAddress = 0;
411 currentCodeAddress += instruction.getSize(currentCodeAddress);
413 return currentCodeAddress;
434 int currentCodeAddress = 0
    [all...]
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/
MethodAnalyzer.java 487 int currentCodeAddress = 0;
489 instructions.append(currentCodeAddress, new AnalyzedInstruction(insns[i], i, registerCount));
490 assert instructions.indexOfKey(currentCodeAddress) == i;
491 currentCodeAddress += insns[i].getSize(currentCodeAddress);
507 currentCodeAddress = getInstructionAddress(instruction);
511 if (currentTry.getStartCodeAddress() + currentTry.getTryLength() <= currentCodeAddress) {
520 if (tryItem.getStartCodeAddress() <= currentCodeAddress) {
521 assert(tryItem.getStartCodeAddress() + tryItem.getTryLength() > currentCodeAddress);
    [all...]

Completed in 5546 milliseconds