Searched defs:registerNum (Results 1 - 2 of 2) sorted by relevance

/external/smali/dexlib/src/main/java/org/jf/dexlib/Debug/
H A DDebugInstructionIterator.java76 int registerNum = in.readUnsignedOrSignedLeb128();
78 if (registerNum < 0) {
80 registerNum = ~registerNum;
85 registerNum, nameIndex, typeIndex, isSignedRegister);
90 int registerNum = in.readUnsignedOrSignedLeb128();
92 if (registerNum < 0) {
94 registerNum = ~registerNum;
100 in.getCursor() - startDebugOffset, registerNum, nameInde
285 ProcessStartLocal(int startDebugOffset, int length, int registerNum, int nameIndex, int typeIndex, boolean registerIsSigned) argument
289 ProcessStartLocalExtended(int startDebugOffset, int length, int registerNum, int nameIndex, int typeIndex,int signatureIndex, boolean registerIsSigned) argument
293 ProcessEndLocal(int startDebugOffset, int length, int registerNum, boolean registerIsSigned) argument
297 ProcessRestartLocal(int startDebugOffset, int length, int registerNum, boolean registerIsSigned) argument
322 ProcessStartLocal(int codeAddress, int length, int registerNum, StringIdItem name, TypeIdItem type) argument
326 ProcessStartLocalExtended(int codeAddress, int length, int registerNum, StringIdItem name, TypeIdItem type, StringIdItem signature) argument
330 ProcessEndLocal(int codeAddress, int length, int registerNum, StringIdItem name, TypeIdItem type, StringIdItem signature) argument
334 ProcessRestartLocal(int codeAddress, int length, int registerNum, StringIdItem name, TypeIdItem type, StringIdItem signature) argument
[all...]
/external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
H A DDebugInfoBuilder.java212 private void emitStartLocal(Output out, int registerNum) { argument
214 out.writeUnsignedLeb128(registerNum);
219 private void emitStartLocalExtended(Output out, int registerNum) { argument
221 out.writeUnsignedLeb128(registerNum);
227 private void emitEndLocal(Output out, int registerNum) { argument
229 out.writeUnsignedLeb128(registerNum);
232 private void emitRestartLocal(Output out, int registerNum) { argument
234 out.writeUnsignedLeb128(registerNum);
292 private final int registerNum; field in class:DebugInfoBuilder.StartLocalEvent
296 public StartLocalEvent(int address, int registerNum, Strin argument
319 private final int registerNum; field in class:DebugInfoBuilder.StartLocalExtendedEvent
324 StartLocalExtendedEvent(int address, int registerNum, String localName, String localType, String signature) argument
356 private final int registerNum; field in class:DebugInfoBuilder.EndLocalEvent
358 EndLocalEvent(int address, int registerNum) argument
376 private final int registerNum; field in class:DebugInfoBuilder.RestartLocalEvent
378 RestartLocalEvent(int address, int registerNum) argument
[all...]

Completed in 53 milliseconds