HomeSort by relevance Sort by last modified time
    Searched full:exceptionhandlers (Results 1 - 7 of 7) sorted by null

  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/
ImmutableTryBlock.java 48 @Nonnull protected final ImmutableList<? extends ImmutableExceptionHandler> exceptionHandlers;
52 @Nullable List<? extends ExceptionHandler> exceptionHandlers) {
55 this.exceptionHandlers = ImmutableExceptionHandler.immutableListOf(exceptionHandlers);
60 @Nullable ImmutableList<? extends ImmutableExceptionHandler> exceptionHandlers) {
63 this.exceptionHandlers = ImmutableUtils.nullToEmptyList(exceptionHandlers);
80 return exceptionHandlers;
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/
BuilderTryBlock.java 42 @Nonnull private final List<? extends BuilderExceptionHandler> exceptionHandlers;
45 @Nonnull List<? extends BuilderExceptionHandler> exceptionHandlers) {
48 this.exceptionHandlers = exceptionHandlers;
60 return exceptionHandlers;
  /external/smali/dexlib2/src/test/java/org/jf/dexlib2/builder/
FixOffsetsTest.java 110 List<? extends TryBlock<? extends ExceptionHandler>> exceptionHandlers = impl.getTryBlocks();
112 Assert.assertEquals(1, exceptionHandlers.size());
113 Assert.assertEquals(252, exceptionHandlers.get(0).getStartCodeAddress());
114 Assert.assertEquals(752, exceptionHandlers.get(0).getCodeUnitCount());
116 Assert.assertEquals(1, exceptionHandlers.get(0).getExceptionHandlers().size());
118 ExceptionHandler exceptionHandler = exceptionHandlers.get(0).getExceptionHandlers().get(0);
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/util/
TryListBuilder.java 105 @Nonnull public List<EH> exceptionHandlers = Lists.newArrayList();
113 @Nonnull List<EH> exceptionHandlers) {
116 this.exceptionHandlers = Lists.newArrayList(exceptionHandlers);
128 return exceptionHandlers;
133 MutableTryBlock<EH> newTryBlock = new MutableTryBlock<EH>(splitAddress, endCodeAddress, exceptionHandlers);
165 for (ExceptionHandler existingHandler: exceptionHandlers) {
185 exceptionHandlers.add(handler);
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
MethodAnalyzer.java 449 //next, populate the exceptionHandlers array. The array item for each instruction that can throw an exception
457 AnalyzedInstruction[][] exceptionHandlers = new AnalyzedInstruction[instructions.size()][];
488 exceptionHandlers[i] = currentExceptionHandlers;
499 addPredecessorSuccessor(startOfMethod, analyzedInstructions.valueAt(0), exceptionHandlers, instructionsToProcess);
514 addPredecessorSuccessor(instruction, nextInstruction, exceptionHandlers, instructionsToProcess);
535 addPredecessorSuccessor(instruction, targetInstruction, exceptionHandlers,
542 addPredecessorSuccessor(instruction, targetInstruction, exceptionHandlers, instructionsToProcess);
550 @Nonnull AnalyzedInstruction[][] exceptionHandlers,
552 addPredecessorSuccessor(predecessor, successor, exceptionHandlers, instructionsToProcess, false);
557 @Nonnull AnalyzedInstruction[][] exceptionHandlers,
    [all...]
  /external/google-breakpad/src/client/linux/handler/
exception_handler.cc 356 // it will be retriggered. If one of the ExceptionHandlers handled it
  /prebuilts/tools/common/m2/repository/org/smali/dexlib2/2.1.3/
dexlib2-2.1.3.jar 

Completed in 279 milliseconds