Home
last modified time | relevance | path

Searched refs:dump_file_path (Results 1 – 6 of 6) sorted by relevance

/external/autotest/client/cros/cellular/pseudomodem/
Dpseudomodem.py447 def ExtractExitError(dump_file_path): argument
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): argument
505 if not dump_file_path:
508 if not os.path.isfile(dump_file_path):
510 dump_file_path)
514 dump_file = open(dump_file_path, 'wb')
518 dump_file_path, str(e))
/external/google-breakpad/src/client/windows/crash_generation/
Dminidump_generator.cc464 wstring dump_file_path; in GenerateDumpFile() local
465 if (!GenerateDumpFilePath(&dump_file_path)) { in GenerateDumpFile()
469 dump_file_ = CreateFile(dump_file_path.c_str(), in GenerateDumpFile()
481 *dump_path = dump_file_path; in GenerateDumpFile()
/external/tensorflow/tensorflow/core/debug/
Ddebug_io_utils.h37 Status ReadEventFromFile(const string& dump_file_path, Event* event);
171 string* dump_file_path);
Ddebug_io_utils.cc293 Status ReadEventFromFile(const string& dump_file_path, Event* event) { in ReadEventFromFile() argument
299 Status s = env->GetFileSize(dump_file_path, &file_size); in ReadEventFromFile()
307 s = env->NewRandomAccessFile(dump_file_path, &file); in ReadEventFromFile()
597 string* dump_file_path) { in DumpTensorToDir() argument
601 if (dump_file_path != nullptr) { in DumpTensorToDir()
602 *dump_file_path = file_path; in DumpTensorToDir()
Ddebug_io_utils_test.cc116 string dump_file_path; in TEST_F() local
118 kDebugNodeKey, *tensor_a_, wall_time, test_dir, &dump_file_path)); in TEST_F()
122 TF_ASSERT_OK(ReadEventFromFile(dump_file_path, &event)); in TEST_F()
/external/tensorflow/tensorflow/core/kernels/
Ddebug_ops_test.cc122 const string dump_file_path = io::JoinPath(device_root, ent->d_name); in TEST_F() local
123 std::fstream ifs(dump_file_path, std::ios::in | std::ios::binary); in TEST_F()