HomeSort by relevance Sort by last modified time
    Searched full:minidump (Results 1 - 25 of 37) sorted by null

1 2

  /external/chromium_org/components/crash/tools/
dmp2minidump.py 17 that include the minidump as file attachment.
21 minidump_file: the file to write the minidump to.
32 print 'Could not find minidump file in dump.'
42 print 'Usage: %s [dmp file] [minidump]' % sys.argv[0]
44 print 'Extracts the minidump stored in the crash dump file'
  /external/chromium_org/chrome/browser/sync/glue/
chrome_report_unrecoverable_error.h 10 // On Windows, sends up a minidump via breakpad. On other platforms,
  /external/chromium_org/content/shell/app/
shell_crash_reporter_client.h 37 // The location where minidump files should be written. Returns true if
42 // Returns the descriptor key of the android minidump global descriptor.
  /external/chromium_org/components/crash/browser/
crash_dump_manager_android.cc 64 // We need read permission as the minidump is generated in several phases
88 DCHECK(r) << "Failed to retrieve size for minidump "
92 // Empty minidump, this process did not crash. Just remove the file.
94 DCHECK(r) << "Failed to delete temporary minidump file "
99 // We are dealing with a valid minidump. Copy it to the crash report
107 base::StringPrintf("chromium-renderer-minidump-%016" PRIx64 ".dmp%d",
117 VLOG(1) << "Crash minidump successfully generated: " <<
crash_dump_manager_android.h 28 // crashed process). So the minidump is generated in the renderer process.
30 // a file descriptor where to write the minidump in the event of a crash.
44 // Returns a file that should be used to generate a minidump for the process
  /external/chromium_org/v8/tools/oom_dump/
oom_dump.cc 33 #include <google_breakpad/processor/minidump.h>
39 using google_breakpad::Minidump;
111 Minidump minidump(minidump_file);
112 CHECK(minidump.Read());
114 MinidumpException *exception = minidump.GetException();
123 MinidumpThreadList* thread_list = minidump.GetThreadList();
280 fprintf(stderr, "usage: %s <minidump>\n", argv[0]);
README 30 If everything goes fine, oom_dump <path to minidump> should print
  /external/chromium_org/extensions/renderer/
console.cc 55 // Writes |message| to stack to show up in minidump, then crashes.
57 char minidump[1024]; local
58 base::debug::Alias(&minidump);
60 minidump, arraysize(minidump), "e::console: %s", message.c_str());
  /external/chromium_org/components/crash/app/
breakpad_linux_impl.h 25 // Define a preferred limit on minidump sizes, because Crash Server currently
40 // The minidump information can either be contained in a file descriptor (fd) or
crash_reporter_client.h 55 // Returns true if an alternative location to store the minidump files was
95 // Invoked before attempting to write a minidump.
108 // The location where minidump files should be written. Returns true if
129 // Returns the descriptor key of the android minidump global descriptor.
breakpad_linux.cc 557 bool CrashDone(const MinidumpDescriptor& minidump,
563 const char msg[] = "Failed to generate minidump.";
568 DCHECK(!minidump.IsFD());
571 info.filename = minidump.path();
572 info.fd = minidump.fd();
575 const size_t log_path_len = my_strlen(minidump.path());
577 my_memcpy(log_path, minidump.path(), log_path_len);
600 bool CrashDoneNoUpload(const MinidumpDescriptor& minidump,
603 return CrashDone(minidump, false, succeeded);
608 bool CrashDoneUpload(const MinidumpDescriptor& minidump,
    [all...]
breakpad_mac.mm 40 // out of bounds and not recorded on disk in the minidump, this means
41 // that if you look at the minidump file locally you won't see them!
  /external/chromium_org/content/shell/tools/
breakpad_integration_test.py 97 minidump = os.path.join(crash_dir, 'minidump')
100 cmd = [dmp_to_minidump, dmp_file, minidump]
108 cmd = [minidump_stackwalk, minidump, symbols_dir]
  /external/chromium_org/third_party/skia/tools/
win_dbghelp.cpp 167 printf("MiniDump file: %s\n", szFileName);
232 // the minidump for anything else other than
235 // cdb.exe is the app used to load the minidump which prints the callstack.
  /external/skia/tools/
win_dbghelp.cpp 167 printf("MiniDump file: %s\n", szFileName);
232 // the minidump for anything else other than
235 // cdb.exe is the app used to load the minidump which prints the callstack.
  /external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/
desktop_browser_backend.py 243 def _GetStackFromMinidump(self, minidump):
251 '-c', '.ecxr;k30;q', '-z', minidump])
261 with open(minidump, 'rb') as infile:
262 minidump += '.stripped'
263 with open(minidump, 'wb') as outfile:
303 return subprocess.check_output([stackwalk, minidump, symbols_path],
314 logging.warning('Failed to symbolize minidump. Returning browser stdout.')
  /external/chromium_org/sandbox/linux/seccomp-bpf-helpers/
sigsys_handlers.cc 141 // Mark as volatile to be able to find the value on the stack in a minidump.
160 // Mark as volatile to be able to find the value on the stack in a minidump.
174 // Make "request" volatile so that we can see it on the stack in a minidump.
190 // Make "request" volatile so that we can see it on the stack in a minidump.
  /external/chromium_org/v8/tools/
grokdump.py 54 Minidump analyzer.
143 byte = ctypes.c_uint8.from_buffer(reader.minidump, slot + i).value
179 # Set of structures and constants that describe the layout of minidump
515 """Minidump (.dmp) reader."""
522 self.minidump = mmap.mmap(self.minidump_file.fileno(), 0, mmap.MAP_PRIVATE)
523 self.header = MINIDUMP_HEADER.Read(self.minidump, 0)
525 print >>sys.stderr, "Warning: Unsupported minidump header magic!"
530 directories.append(MINIDUMP_DIRECTORY.Read(self.minidump, offset))
548 self.minidump, d.location.rva)
559 self.minidump, d.location.rva
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/breakpad/
dump_reader_win.py 60 minidump = dump_file[:-3] + 'dmp'
61 cmd = [self._cdb_path, '-y', self._build_dir, '-c', '.lines;.ecxr;k30;q', '-z', minidump]
  /external/chromium_org/base/debug/
crash_logging.h 19 // the upload and are not included in the minidump!
gdi_debug_util_win.cc 69 // Make sure parameters are saved in the minidump.
  /external/chromium_org/chrome/test/chromedriver/
capabilities.h 136 // If set, enable minidump for chrome crashes and save to this directory.
  /ndk/sources/cxx-stl/gabi++/src/
terminate.cc 61 // be recorded in a Minidump, which contains a stack trace to be
  /external/chromium_org/chrome_elf/
breakpad.cc 134 // Minidump with stacks, PEB, TEBs and unloaded module list.
  /external/chromium_org/content/browser/tracing/
trace_uploader.cc 138 // No minidump means no need for crash to process the report.

Completed in 659 milliseconds

1 2