Home
last modified time | relevance | path

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

/art/tools/dexfuzz/src/dexfuzz/program/
DMutatableCode.java177 for (MTryBlock mTryBlock : mutatableTries) { in updateTryBlocksWithReplacementInsn()
178 if (mTryBlock.startInsn == before) { in updateTryBlocksWithReplacementInsn()
180 mTryBlock.startInsn = after; in updateTryBlocksWithReplacementInsn()
181 } else if (twoWay && mTryBlock.startInsn == after) { in updateTryBlocksWithReplacementInsn()
183 mTryBlock.startInsn = before; in updateTryBlocksWithReplacementInsn()
185 if (mTryBlock.endInsn == before) { in updateTryBlocksWithReplacementInsn()
187 mTryBlock.endInsn = after; in updateTryBlocksWithReplacementInsn()
188 } else if (twoWay && mTryBlock.endInsn == after) { in updateTryBlocksWithReplacementInsn()
190 mTryBlock.endInsn = before; in updateTryBlocksWithReplacementInsn()
192 if (mTryBlock.catchAllHandler == before) { in updateTryBlocksWithReplacementInsn()
[all …]
DCodeTranslator.java257 MTryBlock mTryBlock = new MTryBlock(); in readTryBlocks() local
261 mTryBlock.startInsn = insnLocationMap.get(startLocation); in readTryBlocks()
266 mTryBlock.endInsn = insnLocationMap.get(endLocation); in readTryBlocks()
267 while ((mTryBlock.endInsn == null) && (endLocation >= startLocation)) { in readTryBlocks()
269 mTryBlock.endInsn = insnLocationMap.get(endLocation); in readTryBlocks()
273 if (mTryBlock.startInsn == null) { in readTryBlocks()
278 if (mTryBlock.endInsn == null) { in readTryBlocks()
290 mTryBlock.catchAllHandler = in readTryBlocks()
293 if (mTryBlock.catchAllHandler == null) { in readTryBlocks()
300 mTryBlock.handlers = new LinkedList<MInsn>(); in readTryBlocks()
[all …]