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

1 2

  /external/chromium_org/win8/delegate_execute/
crash_server_init.h 11 class ExceptionHandler;
17 // constructed ExceptionHandler object. It is the responsibility of the caller
19 scoped_ptr<google_breakpad::ExceptionHandler> InitializeCrashReporting();
crash_server_init.cc 69 scoped_ptr<google_breakpad::ExceptionHandler> InitializeCrashReporting() {
89 return scoped_ptr<google_breakpad::ExceptionHandler>(
90 new google_breakpad::ExceptionHandler(
92 google_breakpad::ExceptionHandler::HANDLER_ALL, kLargerDumpType,
delegate_execute.cc 142 scoped_ptr<google_breakpad::ExceptionHandler> breakpad =
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8NPUtils.h 48 // The ExceptionHandler will be notified of any exceptions thrown while
50 typedef void (*ExceptionHandler)(void* data, const NPUTF8* message);
51 void pushExceptionHandler(ExceptionHandler, void* data);
55 // current ExceptionHandler.
V8NPUtils.cpp 133 ExceptionHandler handler;
139 void pushExceptionHandler(ExceptionHandler handler, void* data)
  /external/chromium_org/chrome_frame/crash_reporting/
crash_report.h 14 extern google_breakpad::ExceptionHandler* g_breakpad;
crash_report.cc 18 static google_breakpad::ExceptionHandler* g_breakpad = NULL;
56 bool Init(google_breakpad::ExceptionHandler* breakpad,
80 bool CrashHandler::Init(google_breakpad::ExceptionHandler* breakpad,
132 g_breakpad = new google_breakpad::ExceptionHandler(
134 google_breakpad::ExceptionHandler::HANDLER_INVALID_PARAMETER |
135 google_breakpad::ExceptionHandler::HANDLER_PURECALL, dump_type,
nt_loader_unittest.cc 197 veh_id_ = ::AddVectoredExceptionHandler(FALSE, &ExceptionHandler);
221 static LONG NTAPI ExceptionHandler(EXCEPTION_POINTERS* ex_ptrs){
  /external/chromium_org/chrome_frame/
crash_server_init.h 30 // constructed ExceptionHandler object. It is the responsibility of the caller
32 google_breakpad::ExceptionHandler* InitializeCrashReporting(
chrome_launcher_main.cc 14 google_breakpad::scoped_ptr<google_breakpad::ExceptionHandler> breakpad(
crash_server_init.cc 86 google_breakpad::ExceptionHandler* InitializeCrashReporting(
114 google_breakpad::ExceptionHandler* breakpad =
115 new google_breakpad::ExceptionHandler(
117 google_breakpad::ExceptionHandler::HANDLER_ALL, kLargerDumpType,
chrome_frame_unittest_main.cc 54 google_breakpad::scoped_ptr<google_breakpad::ExceptionHandler> breakpad(
  /external/llvm/include/llvm/MC/
MCWin64EH.h 64 MCWin64EHUnwindInfo() : Begin(0), End(0), ExceptionHandler(0),
71 const MCSymbol *ExceptionHandler;
  /external/chromium_org/remoting/base/
breakpad_win.cc 82 scoped_ptr<google_breakpad::ExceptionHandler> breakpad_;
120 new google_breakpad::ExceptionHandler(
122 google_breakpad::ExceptionHandler::HANDLER_ALL, dump_type,
  /external/chromium_org/chrome/renderer/extensions/
module_system.h 50 class ExceptionHandler {
52 virtual ~ExceptionHandler() {}
134 void SetExceptionHandlerForTest(scoped_ptr<ExceptionHandler> handler) {
210 scoped_ptr<ExceptionHandler> exception_handler_;
module_system_unittest.cc 36 class TestExceptionHandler : public ModuleSystem::ExceptionHandler {
55 scoped_ptr<ModuleSystem::ExceptionHandler> scoped_handler(handler);
  /external/chromium_org/chrome_frame/test/
run_all_unittests.cc 64 google_breakpad::scoped_ptr<google_breakpad::ExceptionHandler> breakpad;
exception_barrier_unittest.cc 116 ExceptionBarrierCustomHandler::set_custom_handler(&ExceptionHandler);
129 static void CALLBACK ExceptionHandler(EXCEPTION_POINTERS* ptrs) {
  /external/chromium_org/third_party/WebKit/public/web/
WebBindings.h 175 typedef void (ExceptionHandler)(void* data, const NPUTF8* message);
179 BLINK_EXPORT static void pushExceptionHandler(ExceptionHandler, void* data);
  /external/chromium/chrome/browser/
crash_handler_host_linux.cc 33 using google_breakpad::ExceptionHandler;
41 const unsigned kCrashContextSize = sizeof(ExceptionHandler::CrashContext);
255 // in ExceptionHandler::HandleSignal is also wrong and needs to be
280 ExceptionHandler::CrashContext* bad_context =
281 reinterpret_cast<ExceptionHandler::CrashContext*>(crash_context);
  /external/chromium_org/components/breakpad/app/
breakpad_win.cc 77 google_breakpad::ExceptionHandler* g_breakpad = NULL;
78 google_breakpad::ExceptionHandler* g_dumphandler_no_crash = NULL;
682 google_breakpad::ExceptionHandler::MinidumpCallback callback = NULL;
732 g_breakpad = new google_breakpad::ExceptionHandler(temp_dir, &FilterCallback,
734 google_breakpad::ExceptionHandler::HANDLER_ALL,
738 g_dumphandler_no_crash = new google_breakpad::ExceptionHandler(temp_dir,
743 // |handler_stack_| in |ExceptionHandler| which is a list of exception
745 google_breakpad::ExceptionHandler::HANDLER_NONE,
breakpad_linux.cc 71 using google_breakpad::ExceptionHandler;
86 ExceptionHandler* g_breakpad = NULL;
653 g_breakpad = new ExceptionHandler(
665 g_breakpad = new ExceptionHandler(
735 new google_breakpad::ExceptionHandler(MinidumpDescriptor(minidump_fd),
826 g_breakpad = new ExceptionHandler(
    [all...]
  /external/chromium_org/components/breakpad/browser/
crash_handler_host_linux.cc 41 using google_breakpad::ExceptionHandler;
51 const unsigned kCrashContextSize = sizeof(ExceptionHandler::CrashContext);
293 // sys_gettid() in ExceptionHandler::HandleSignal might be wrong (if
326 ExceptionHandler::CrashContext* bad_context =
327 reinterpret_cast<ExceptionHandler::CrashContext*>(crash_context);
  /external/chromium_org/chrome/test/base/
module_system_test.cc 31 class FailsOnException : public ModuleSystem::ExceptionHandler {
143 scoped_ptr<ModuleSystem::ExceptionHandler>(new FailsOnException));
  /external/llvm/lib/Support/
CrashRecoveryContext.cpp 154 static LONG CALLBACK ExceptionHandler(PEXCEPTION_POINTERS ExceptionInfo)
196 PVOID handle = ::AddVectoredExceptionHandler(1, ExceptionHandler);

Completed in 134 milliseconds

1 2