Home
last modified time | relevance | path

Searched refs:encodedCatchHandler (Results 1 – 2 of 2) sorted by relevance

/art/tools/dexfuzz/src/dexfuzz/rawdex/
DEncodedCatchHandlerList.java37 for (EncodedCatchHandler encodedCatchHandler : list) { in write()
38 encodedCatchHandler.write(file); in write()
/art/tools/dexfuzz/src/dexfuzz/program/
DCodeTranslator.java286 EncodedCatchHandler encodedCatchHandler = codeItem.handlers.list[handlerIdx]; in readTryBlocks() local
289 if (encodedCatchHandler.size <= 0) { in readTryBlocks()
291 insnLocationMap.get(encodedCatchHandler.catchAllAddr); in readTryBlocks()
296 encodedCatchHandler.catchAllAddr)); in readTryBlocks()
303 for (int i = 0; i < Math.abs(encodedCatchHandler.size); i++) { in readTryBlocks()
304 EncodedTypeAddrPair handler = encodedCatchHandler.handlers[i]; in readTryBlocks()
371 EncodedCatchHandler encodedCatchHandler = in updateTryBlocks() local
374 if (encodedCatchHandler.size <= 0) { in updateTryBlocks()
375 encodedCatchHandler.catchAllAddr = mTryBlock.catchAllHandler.location; in updateTryBlocks()
377 for (int i = 0; i < Math.abs(encodedCatchHandler.size); i++) { in updateTryBlocks()
[all …]