HomeSort by relevance Sort by last modified time
    Searched full:exceptionhandlers (Results 1 - 6 of 6) 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 430 //next, populate the exceptionHandlers array. The array item for each instruction that can throw an exception
438 AnalyzedInstruction[][] exceptionHandlers = new AnalyzedInstruction[instructions.size()][];
469 exceptionHandlers[i] = currentExceptionHandlers;
480 addPredecessorSuccessor(startOfMethod, analyzedInstructions.valueAt(0), exceptionHandlers, instructionsToProcess);
495 addPredecessorSuccessor(instruction, nextInstruction, exceptionHandlers, instructionsToProcess);
516 addPredecessorSuccessor(instruction, targetInstruction, exceptionHandlers,
523 addPredecessorSuccessor(instruction, targetInstruction, exceptionHandlers, instructionsToProcess);
531 @Nonnull AnalyzedInstruction[][] exceptionHandlers,
533 addPredecessorSuccessor(predecessor, successor, exceptionHandlers, instructionsToProcess, false);
538 @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

Completed in 517 milliseconds