HomeSort by relevance Sort by last modified time
    Searched refs:ExceptionHandler (Results 1 - 25 of 99) sorted by null

1 2 3 4

  /external/libchrome/mojo/public/java/bindings/src/org/chromium/mojo/bindings/
ExceptionHandler.java 8 * An {@link ExceptionHandler} is notified of any {@link RuntimeException} happening in the
11 public interface ExceptionHandler {
22 * The default ExceptionHandler, which simply throws the exception upon receiving it. It can
23 * also delegate the handling of the exceptions to another instance of ExceptionHandler.
25 public static class DefaultExceptionHandler implements ExceptionHandler {
26 private ExceptionHandler mDelegate;
53 * Sets a delegate ExceptionHandler, in case throwing an exception is not desirable.
55 public void setDelegate(ExceptionHandler exceptionHandler) {
56 mDelegate = exceptionHandler;
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/rewriter/
ExceptionHandlerRewriter.java 35 import org.jf.dexlib2.iface.ExceptionHandler;
40 public class ExceptionHandlerRewriter implements Rewriter<ExceptionHandler> {
47 @Nonnull @Override public ExceptionHandler rewrite(@Nonnull ExceptionHandler value) {
52 @Nonnull protected ExceptionHandler exceptionHandler;
54 public RewrittenExceptionHandler(@Nonnull ExceptionHandler exceptionHandler) {
55 this.exceptionHandler = exceptionHandler;
    [all...]
TryBlockRewriter.java 35 import org.jf.dexlib2.iface.ExceptionHandler;
41 public class TryBlockRewriter implements Rewriter<TryBlock<? extends ExceptionHandler>> {
48 @Nonnull @Override public TryBlock<? extends ExceptionHandler> rewrite(
49 @Nonnull TryBlock<? extends ExceptionHandler> tryBlock) {
53 protected class RewrittenTryBlock extends BaseTryBlock<ExceptionHandler> {
54 @Nonnull protected TryBlock<? extends ExceptionHandler> tryBlock;
56 public RewrittenTryBlock(@Nonnull TryBlock<? extends ExceptionHandler> tryBlock) {
68 @Override @Nonnull public List<? extends ExceptionHandler> getExceptionHandlers() {
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/iface/
ExceptionHandler.java 42 public interface ExceptionHandler extends Comparable<ExceptionHandler> {
67 * Returns a hashcode for this ExceptionHandler.
78 * @return The hash code value for this ExceptionHandler
83 * Compares this ExceptionHandler to another ExceptionHandler for equality.
85 * This ExceptionHandler is equal to another ExceptionHandler if all of it's "fields" are equal. That is, if
88 * @param o The object to be compared for equality with this ExceptionHandler
89 * @return true if the specified object is equal to this ExceptionHandler
    [all...]
TryBlock.java 41 public interface TryBlock<EH extends ExceptionHandler> {
68 * @return A list of ExceptionHandler objects
MethodImplementation.java 73 @Nonnull List<? extends TryBlock<? extends ExceptionHandler>> getTryBlocks();
  /external/apache-commons-bcel/src/main/java/org/apache/bcel/verifier/structurals/
ExceptionHandlers.java 31 * This class allows easy access to ExceptionHandler objects.
37 * The ExceptionHandler instances.
38 * Key: InstructionHandle objects, Values: HashSet<ExceptionHandler> instances.
40 private final Map<InstructionHandle, Set<ExceptionHandler>> exceptionhandlers;
49 final ExceptionHandler eh = new ExceptionHandler(ceg.getCatchType(), ceg.getHandlerPC());
51 Set<ExceptionHandler> hs;
63 * Returns all the ExceptionHandler instances representing exception
66 public ExceptionHandler[] getExceptionHandlers(final InstructionHandle ih) {
67 final Set<ExceptionHandler> hsSet = exceptionhandlers.get(ih)
    [all...]
ExceptionHandler.java 31 public class ExceptionHandler{
39 ExceptionHandler(final ObjectType catch_type, final InstructionHandle handler_pc) {
InstructionContext.java 106 ExceptionHandler[] getExceptionHandlers();
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/
ImmutableExceptionHandler.java 36 import org.jf.dexlib2.iface.ExceptionHandler;
42 public class ImmutableExceptionHandler extends BaseExceptionHandler implements ExceptionHandler {
52 public static ImmutableExceptionHandler of(ExceptionHandler exceptionHandler) {
53 if (exceptionHandler instanceof ImmutableExceptionHandler) {
54 return (ImmutableExceptionHandler)exceptionHandler;
57 exceptionHandler.getExceptionType(),
58 exceptionHandler.getHandlerCodeAddress());
66 @Nullable Iterable<? extends ExceptionHandler> list) {
70 private static final ImmutableConverter<ImmutableExceptionHandler, ExceptionHandler> CONVERTER
    [all...]
ImmutableTryBlock.java 36 import org.jf.dexlib2.iface.ExceptionHandler;
52 @Nullable List<? extends ExceptionHandler> exceptionHandlers) {
66 public static ImmutableTryBlock of(TryBlock<? extends ExceptionHandler> tryBlock) {
85 @Nullable List<? extends TryBlock<? extends ExceptionHandler>> list) {
89 private static final ImmutableConverter<ImmutableTryBlock, TryBlock<? extends ExceptionHandler>> CONVERTER =
90 new ImmutableConverter<ImmutableTryBlock, TryBlock<? extends ExceptionHandler>>() {
98 protected ImmutableTryBlock makeImmutable(@Nonnull TryBlock<? extends ExceptionHandler> item) {
  /external/google-breakpad/src/client/solaris/handler/
exception_handler.cc 57 std::vector<ExceptionHandler*> *ExceptionHandler::handler_stack_ = NULL;
58 int ExceptionHandler::handler_stack_index_ = 0;
59 pthread_mutex_t ExceptionHandler::handler_stack_mutex_ =
62 ExceptionHandler::ExceptionHandler(const string &dump_path,
82 handler_stack_ = new std::vector<ExceptionHandler *>;
88 ExceptionHandler::~ExceptionHandler() {
95 for (std::vector<ExceptionHandler *>::iterator iterator
    [all...]
exception_handler.h 46 // ExceptionHandler
48 // ExceptionHandler can write a minidump file when an exception occurs,
59 // you can create an ExceptionHandler with install_handler set to false,
71 class ExceptionHandler {
105 // Creates a new ExceptionHandler instance to handle writing minidumps.
113 ExceptionHandler(const string &dump_path,
117 ~ExceptionHandler();
131 // ExceptionHandler instance.
175 // True if the ExceptionHandler installed an unhandled exception filter
184 // multiple ExceptionHandler instances in a process. Each will have itsel
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/base/
BaseExceptionHandler.java 37 import org.jf.dexlib2.iface.ExceptionHandler;
44 public abstract class BaseExceptionHandler implements ExceptionHandler {
67 if (o instanceof ExceptionHandler) {
68 ExceptionHandler other = (ExceptionHandler)o;
76 public int compareTo(@Nonnull ExceptionHandler o) {
96 public static final Comparator<ExceptionHandler> BY_EXCEPTION = new Comparator<ExceptionHandler>() {
97 @Override public int compare(ExceptionHandler o1, ExceptionHandler o2)
    [all...]
BaseTryBlock.java 34 import org.jf.dexlib2.iface.ExceptionHandler;
37 public abstract class BaseTryBlock<EH extends ExceptionHandler> implements TryBlock<EH> {
  /external/google-breakpad/src/processor/testdata/
test_app.cc 63 google_breakpad::ExceptionHandler eh(
65 google_breakpad::ExceptionHandler::HANDLER_ALL);
linux_test_app.cc 75 google_breakpad::ExceptionHandler eh(".", NULL, callback, NULL, true);
  /external/google-breakpad/src/client/mac/handler/
exception_handler.h 67 class ExceptionHandler {
101 // Creates a new ExceptionHandler instance to handle writing minidumps.
109 ExceptionHandler(const string &dump_path,
116 ExceptionHandler(DirectCallback callback,
120 ~ExceptionHandler();
139 // ExceptionHandler instance.
205 explicit ExceptionHandler(const ExceptionHandler &);
206 void operator=(const ExceptionHandler &);
  /external/google-breakpad/android/sample_app/jni/
test_breakpad.cpp 53 google_breakpad::ExceptionHandler eh(descriptor, NULL, DumpCallback,
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/serializable/
ExceptionHandler.java 31 public abstract class ExceptionHandler implements SerializableTestUtility.Handler
41 static class ArabicShapingExceptionHandler extends ExceptionHandler
56 static class StringPrepParseExceptionHandler extends ExceptionHandler
72 static class UResourceTypeMismatchExceptionHandler extends ExceptionHandler
87 static class InvalidFormatExceptionHandler extends ExceptionHandler
102 static class IllformedLocaleExceptionHandler extends ExceptionHandler
122 static class LocaleSyntaxExceptionHandler extends ExceptionHandler
142 static class IllegalIcuArgumentExceptionHandler extends ExceptionHandler
153 static class SkeletonSyntaxExceptionHandler extends ExceptionHandler
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/serializable/
ExceptionHandler.java 30 public abstract class ExceptionHandler implements SerializableTestUtility.Handler
40 static class ArabicShapingExceptionHandler extends ExceptionHandler
55 static class StringPrepParseExceptionHandler extends ExceptionHandler
71 static class UResourceTypeMismatchExceptionHandler extends ExceptionHandler
86 static class InvalidFormatExceptionHandler extends ExceptionHandler
101 static class IllformedLocaleExceptionHandler extends ExceptionHandler
121 static class LocaleSyntaxExceptionHandler extends ExceptionHandler
141 static class IllegalIcuArgumentExceptionHandler extends ExceptionHandler
152 static class SkeletonSyntaxExceptionHandler extends ExceptionHandler
  /external/google-breakpad/src/client/windows/handler/
exception_handler.cc 56 vector<ExceptionHandler*>* ExceptionHandler::handler_stack_ = NULL;
57 LONG ExceptionHandler::handler_stack_index_ = 0;
58 CRITICAL_SECTION ExceptionHandler::handler_stack_critical_section_;
59 volatile LONG ExceptionHandler::instance_count_ = 0;
61 ExceptionHandler::ExceptionHandler(const wstring& dump_path,
81 ExceptionHandler::ExceptionHandler(const wstring& dump_path,
101 ExceptionHandler::ExceptionHandler
    [all...]
  /external/google-breakpad/src/client/windows/unittests/
exception_handler_death_test.cc 127 scoped_ptr<google_breakpad::ExceptionHandler> exc(
128 new google_breakpad::ExceptionHandler(
133 google_breakpad::ExceptionHandler::HANDLER_ALL));
152 scoped_ptr<google_breakpad::ExceptionHandler> exc;
160 exc.reset(new google_breakpad::ExceptionHandler(
165 google_breakpad::ExceptionHandler::HANDLER_ALL,
169 exc.reset(new google_breakpad::ExceptionHandler(
174 google_breakpad::ExceptionHandler::HANDLER_ALL,
218 // with the crash generation server outside of the ExceptionHandler
239 using google_breakpad::ExceptionHandler;
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/
DexBackedCatchAllExceptionHandler.java 35 import org.jf.dexlib2.iface.ExceptionHandler;
  /external/smali/dexlib2/src/test/java/org/jf/dexlib2/writer/util/
TryListBuilderTest.java 36 import org.jf.dexlib2.iface.ExceptionHandler;
45 private static class TryListBuilder extends org.jf.dexlib2.writer.util.TryListBuilder<ExceptionHandler> {
54 List<? extends TryBlock<? extends ExceptionHandler>> tryBlocks = tlb.getTryBlocks();
68 List<? extends TryBlock<? extends ExceptionHandler>> tryBlocks = tlb.getTryBlocks();
82 List<? extends TryBlock<? extends ExceptionHandler>> tryBlocks = tlb.getTryBlocks();
96 List<? extends TryBlock<? extends ExceptionHandler>> tryBlocks = tlb.getTryBlocks();
111 List<? extends TryBlock<? extends ExceptionHandler>> tryBlocks = tlb.getTryBlocks();
129 List<? extends TryBlock<? extends ExceptionHandler>> tryBlocks = tlb.getTryBlocks();
147 List<? extends TryBlock<? extends ExceptionHandler>> tryBlocks = tlb.getTryBlocks();
165 List<? extends TryBlock<? extends ExceptionHandler>> tryBlocks = tlb.getTryBlocks()
    [all...]

Completed in 490 milliseconds

1 2 3 4