Home
last modified time | relevance | path

Searched refs:startAddress (Results 1 – 9 of 9) sorted by relevance

/dalvik/dx/src/com/android/dex/
DCode.java68 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()
DDex.java517 int startAddress = readInt(); in readTries() local
521 result[i] = new Try(startAddress, instructionCount, catchHandlerIndex); in readTries()
/dalvik/libdex/
DDexDebugInfo.cpp64 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()
DDexDebugInfo.h36 typedef void (*DexDebugNewLocalCb)(void *cnxt, u2 reg, u4 startAddress,
/dalvik/dx/src/com/android/dx/dex/code/
DStdCatchBuilder.java283 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()
DRopTranslator.java248 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/
DStdCatchBuilder.java281 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()
DRopTranslator.java241 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/
DDexDump.cpp631 static void dumpLocalsCb(void * /* cnxt */, u2 reg, u4 startAddress, in dumpLocalsCb() argument
636 startAddress, endAddress, reg, name, descriptor, in dumpLocalsCb()