OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:dump_file_path
(Results
1 - 2
of
2
) sorted by null
/external/autotest/client/cros/cellular/pseudomodem/
pseudomodem.py
447
def ExtractExitError(
dump_file_path
):
451
If there is a file at |
dump_file_path
|, extracts the error and the traceback
455
@param
dump_file_path
: Full path to the file to read.
465
if
dump_file_path
:
467
dump_file = open(
dump_file_path
, 'rb')
473
dump_file_path
, str(e))
490
def _DumpExitError(
dump_file_path
, exc):
501
@param
dump_file_path
: Full path to file to which we should dump.
505
if not
dump_file_path
:
508
if not os.path.isfile(
dump_file_path
)
[
all
...]
/external/google-breakpad/src/client/windows/crash_generation/
minidump_generator.cc
464
wstring
dump_file_path
;
local
465
if (!GenerateDumpFilePath(&
dump_file_path
)) {
469
dump_file_ = CreateFile(
dump_file_path
.c_str(),
481
*dump_path =
dump_file_path
;
Completed in 783 milliseconds