/external/smali/dexlib2/src/main/java/org/jf/dexlib2/iface/ |
H A D | ExceptionHandler.java | 42 public interface ExceptionHandler extends Comparable<ExceptionHandler> { interface in inherits:Comparable 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...] |
/external/google-breakpad/src/client/solaris/handler/ |
H A D | 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, function in class:google_breakpad::ExceptionHandler 82 handler_stack_ = new std::vector<ExceptionHandler *>; 88 ExceptionHandler::~ExceptionHandler() { 95 for (std::vector<ExceptionHandler *> [all...] |
H A D | 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 { class in namespace:google_breakpad 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 instance [all...] |
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/serializable/ |
H A D | ExceptionHandler.java | 30 public abstract class ExceptionHandler implements SerializableTestUtility.Handler class in inherits: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
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/serializable/ |
H A D | ExceptionHandler.java | 29 public abstract class ExceptionHandler implements SerializableTestUtility.Handler class in inherits:SerializableTestUtility.Handler 39 static class ArabicShapingExceptionHandler extends ExceptionHandler 54 static class StringPrepParseExceptionHandler extends ExceptionHandler 70 static class UResourceTypeMismatchExceptionHandler extends ExceptionHandler 85 static class InvalidFormatExceptionHandler extends ExceptionHandler 100 static class IllformedLocaleExceptionHandler extends ExceptionHandler 120 static class LocaleSyntaxExceptionHandler extends ExceptionHandler 140 static class IllegalIcuArgumentExceptionHandler extends ExceptionHandler
|
/external/llvm/include/llvm/MC/ |
H A D | MCWinEH.h | 34 const MCSymbol *ExceptionHandler = nullptr; member in struct:llvm::WinEH::FrameInfo
|
/external/google-breakpad/src/client/linux/handler/ |
H A D | exception_handler.h | 49 // ExceptionHandler 51 // ExceptionHandler can write a minidump file when an exception occurs, 62 // you can create an ExceptionHandler with install_handler set to false, 74 class ExceptionHandler { class in namespace:google_breakpad 116 // Creates a new ExceptionHandler instance to handle writing minidumps. 127 ExceptionHandler(const MinidumpDescriptor& descriptor, 133 ~ExceptionHandler(); 154 // If the ExceptionHandler has been created with a path, a new file is 157 // MinidumpDescriptor directly from the ExceptionHandler (with 159 // If the ExceptionHandler ha [all...] |
H A D | exception_handler.cc | 30 // The ExceptionHandler object installs signal handlers for a number of 34 // uses ExceptionHandler, you need to use tgkill to direct it to the current 39 // SignalHandler (uses a global stack of ExceptionHandler objects to find 59 // This code is a little fragmented. Different functions of the ExceptionHandler 210 // multiple ExceptionHandler instances in a process. Each will have itself 212 std::vector<ExceptionHandler*>* g_handler_stack_ = NULL; 218 ExceptionHandler::ExceptionHandler(const MinidumpDescriptor& descriptor, function in class:google_breakpad::ExceptionHandler 238 g_handler_stack_ = new std::vector<ExceptionHandler*>; 248 ExceptionHandler [all...] |
/external/google-breakpad/src/client/mac/handler/ |
H A D | exception_handler.h | 67 class ExceptionHandler { class in namespace:google_breakpad 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 &);
|
H A D | exception_handler.cc | 83 google_breakpad::ExceptionHandler *handler; 223 ExceptionHandler::ExceptionHandler(const string &dump_path, function in class:google_breakpad::ExceptionHandler 253 ExceptionHandler::ExceptionHandler(DirectCallback callback, function in class:google_breakpad::ExceptionHandler 272 ExceptionHandler::~ExceptionHandler() { 276 bool ExceptionHandler::WriteMinidump(bool write_exception_stream) { 307 bool ExceptionHandler::WriteMinidump(const string &dump_path, 311 ExceptionHandler handle [all...] |
/external/swiftshader/third_party/LLVM/include/llvm/MC/ |
H A D | MCWin64EH.h | 64 MCWin64EHUnwindInfo() : Begin(0), End(0), ExceptionHandler(0), 71 const MCSymbol *ExceptionHandler; member in struct:llvm::MCWin64EHUnwindInfo
|
/external/google-breakpad/src/client/windows/handler/ |
H A D | 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, function in class:google_breakpad::ExceptionHandler 81 ExceptionHandler::ExceptionHandler(const wstring& dump_path, function in class:google_breakpad::ExceptionHandler 101 ExceptionHandler function in class:google_breakpad::ExceptionHandler 122 ExceptionHandler::ExceptionHandler(const wstring &dump_path, function in class:google_breakpad::ExceptionHandler [all...] |
H A D | exception_handler.h | 30 // ExceptionHandler can write a minidump file when an exception occurs, 39 // you can create an ExceptionHandler with install_handler set to false, 48 // It is important that creation and destruction of ExceptionHandler objects 51 // ExceptionHandler *e = new ExceptionHandler(...); 52 // ExceptionHandler *f = new ExceptionHandler(...); 98 class ExceptionHandler { class in namespace:google_breakpad 146 // any. Use HANDLER_NONE for an ExceptionHandler that remains idle, 161 // Creates a new ExceptionHandler instanc [all...] |
/external/llvm/lib/Support/ |
H A D | CrashRecoveryContext.cpp | 165 static LONG CALLBACK ExceptionHandler(PEXCEPTION_POINTERS ExceptionInfo) function 207 PVOID handle = ::AddVectoredExceptionHandler(1, ExceptionHandler);
|
/external/swiftshader/third_party/LLVM/lib/Support/ |
H A D | CrashRecoveryContext.cpp | 147 static LONG CALLBACK ExceptionHandler(PEXCEPTION_POINTERS ExceptionInfo) function 190 PVOID handle = ::AddVectoredExceptionHandler(1, ExceptionHandler);
|
/external/v8/src/compiler/ |
H A D | bytecode-graph-builder.h | 231 struct ExceptionHandler { struct in class:v8::internal::compiler::BytecodeGraphBuilder 306 ZoneStack<ExceptionHandler> exception_handlers_;
|
/external/guice/extensions/persist/lib/ |
H A D | antlr-2.7.5h3.jar | META-INF/ META-INF/MANIFEST.MF antlr/ antlr/ActionElement.class ActionElement.java package antlr ... |
/external/owasp/sanitizer/tools/findbugs/lib/ |
H A D | bcel.jar | META-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/bcel/ org/apache/bcel/classfile/ ... |
/external/antlr/antlr-3.4/lib/ |
H A D | antlr-3.4-complete.jar | META-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ... |