Searched refs:startAddress (Results 1 – 9 of 9) sorted by relevance
/dalvik/dx/src/com/android/dex/ |
D | Code.java | 68 final int startAddress; field in Code.Try 72 Try(int startAddress, int instructionCount, int catchHandlerIndex) { in Try() argument 73 this.startAddress = startAddress; in Try() 79 return startAddress; in getStartAddress()
|
D | Dex.java | 517 int startAddress = readInt(); in readTries() local 521 result[i] = new Try(startAddress, instructionCount, catchHandlerIndex); in readTries()
|
/dalvik/libdex/ |
D | DexDebugInfo.cpp | 64 u2 startAddress; member 72 localCb(cnxt, reg, localInReg[reg].startAddress, endAddress, in emitLocalCbIfLive() 116 localInReg[argReg].startAddress = 0; in dexDecodeDebugInfo0() 153 localInReg[reg].startAddress = address; in dexDecodeDebugInfo0() 194 localInReg[reg].startAddress = address; in dexDecodeDebugInfo0() 227 localInReg[reg].startAddress = address; in dexDecodeDebugInfo0()
|
D | DexDebugInfo.h | 36 typedef void (*DexDebugNewLocalCb)(void *cnxt, u2 reg, u4 startAddress,
|
/dalvik/dx/src/com/android/dx/dex/code/ |
D | StdCatchBuilder.java | 283 CodeAddress startAddress = addresses.getLast(start); in makeEntry() local 288 return new CatchTable.Entry(startAddress.getAddress(), in makeEntry() 313 int startAddress = addresses.getLast(start).getAddress(); in rangeIsValid() local 316 return (endAddress - startAddress) <= MAX_CATCH_RANGE; in rangeIsValid()
|
D | RopTranslator.java | 248 CodeAddress startAddress = addresses.getStart(block); in outputBlock() local 249 output.add(startAddress); in outputBlock() 254 output.add(new LocalSnapshot(startAddress.getPosition(), in outputBlock()
|
/dalvik/dexgen/src/com/android/dexgen/dex/code/ |
D | StdCatchBuilder.java | 281 CodeAddress startAddress = addresses.getLast(start); in makeEntry() local 286 return new CatchTable.Entry(startAddress.getAddress(), in makeEntry() 311 int startAddress = addresses.getLast(start).getAddress(); in rangeIsValid() local 314 return (endAddress - startAddress) <= MAX_CATCH_RANGE; in rangeIsValid()
|
D | RopTranslator.java | 241 CodeAddress startAddress = addresses.getStart(block); in outputBlock() local 242 output.add(startAddress); in outputBlock() 247 output.add(new LocalSnapshot(startAddress.getPosition(), in outputBlock()
|
/dalvik/dexdump/ |
D | DexDump.cpp | 631 static void dumpLocalsCb(void * /* cnxt */, u2 reg, u4 startAddress, in dumpLocalsCb() argument 636 startAddress, endAddress, reg, name, descriptor, in dumpLocalsCb()
|