Home
last modified time | relevance | path

Searched refs:dump_file (Results 1 – 25 of 33) sorted by relevance

12

/external/google-breakpad/src/client/windows/unittests/
Dexception_handler_test.cc105 static std::wstring dump_file; member in __anon92aa7e0b0111::ExceptionHandlerTest
109 std::wstring ExceptionHandlerTest::dump_file; member in __anon92aa7e0b0111::ExceptionHandlerTest
134 if (!dump_file.empty()) { in TearDown()
135 ::DeleteFile(dump_file.c_str()); in TearDown()
136 dump_file = L""; in TearDown()
157 dump_file = *dump_path; in ClientDumpCallback()
159 full_dump_file = dump_file.substr(0, dump_file.length() - 4) + L"-full.dmp"; in ClientDumpCallback()
169 dump_file = dump_path; in DumpCallback()
170 dump_file += L"\\"; in DumpCallback()
171 dump_file += minidump_id; in DumpCallback()
[all …]
/external/tensorflow/tensorflow/core/profiler/internal/
Dtfprof_show_test.cc99 string dump_file = io::JoinPath(testing::TmpDir(), "dump"); in TEST_F() local
106 "file", {{"outfile", dump_file}}); in TEST_F()
110 TF_CHECK_OK(ReadFileToString(Env::Default(), dump_file, &dump_str)); in TEST_F()
128 string dump_file = io::JoinPath(testing::TmpDir(), "dump"); in TEST_F() local
133 {{"outfile", dump_file}}); in TEST_F()
137 TF_CHECK_OK(ReadFileToString(Env::Default(), dump_file, &dump_str)); in TEST_F()
175 string dump_file = io::JoinPath(testing::TmpDir(), "dump"); in TEST_F() local
181 "file", {{"outfile", dump_file}}); in TEST_F()
185 TF_CHECK_OK(ReadFileToString(Env::Default(), dump_file, &dump_str)); in TEST_F()
Dtfprof_timeline_test.cc64 string dump_file = io::JoinPath(testing::TmpDir(), "dump"); in TEST_F() local
69 {{"outfile", dump_file}}); in TEST_F()
73 TF_CHECK_OK(ReadFileToString(Env::Default(), dump_file + "_0", &dump_str)); in TEST_F()
78 string dump_file = io::JoinPath(testing::TmpDir(), "dump"); in TEST_F() local
83 {{"outfile", dump_file}}); in TEST_F()
87 TF_CHECK_OK(ReadFileToString(Env::Default(), dump_file + "_0", &dump_str)); in TEST_F()
/external/OpenCSD/decoder/tests/source/
Dc_api_pkt_print_test.c243 static FILE *dump_file = NULL; /* pointer to the file providing the opcode memory */ variable
259 if(dump_file == NULL) in do_mem_acc_cb()
282 fseek(dump_file,(long)(address-mem_dump_address),SEEK_SET); in do_mem_acc_cb()
283 file_read_bytes = fread(byteBuffer,sizeof(uint8_t),read_bytes,dump_file); in do_mem_acc_cb()
309 dump_file = fopen(mem_file_path,"rb"); in create_mem_acc_cb()
310 if(dump_file != NULL) in create_mem_acc_cb()
312 fseek(dump_file,0,SEEK_END); in create_mem_acc_cb()
313 mem_file_size = ftell(dump_file); in create_mem_acc_cb()
324 fclose(dump_file); in create_mem_acc_cb()
325 dump_file = NULL; in create_mem_acc_cb()
[all …]
/external/autotest/site_utils/
Dbackup_mysql_db.py260 def upload_to_google_storage(self, dump_file): argument
266 input_dict = dict(gs_util=_GSUTIL_BIN, dump_file=dump_file,
271 os.remove(dump_file)
341 dump_file = archiver.dump()
343 archiver.upload_to_google_storage(dump_file)
/external/autotest/client/cros/cellular/pseudomodem/
Dpseudomodem.py467 dump_file = open(dump_file_path, 'rb')
468 error_reason = dump_file.readline().strip()
469 error_traceback = dump_file.readlines()
470 dump_file.close()
514 dump_file = open(dump_file_path, 'wb')
521 dump_file.write(str(exc) + '\n')
522 dump_file.writelines(traceback.format_exc())
523 dump_file.close()
/external/webrtc/modules/audio_coding/audio_network_adaptor/
Ddebug_dump_writer.cc40 void DumpEventToFile(const Event& event, FileWrapper* dump_file) { in DumpEventToFile() argument
41 RTC_CHECK(dump_file->is_open()); in DumpEventToFile()
45 dump_file->Write(&size, sizeof(size)); in DumpEventToFile()
46 dump_file->Write(dump_data.data(), dump_data.length()); in DumpEventToFile()
/external/sonivox/jet_tools/JetCreator/
DJetFile.py94 …e, length=None, output=None, quantize=None, jetevents=[], dlsfile=None, dump_file=None, transpose=… argument
103 self.dump_file = dump_file
313 start = end = length = output = end_marker = dlsfile = dump_file = None
333 dump_file = config.get(segment_name, SEGMENT_DUMP_FILE)
360 …me, filename, start, end, length, output, quantize, jetevents, dlsfile, dump_file, int(transpose),…
454 if segment.dump_file is not None:
455 with open(segment.dump_file, 'w') as f:
615 …me, filename, start, end, length, output, quantize, jetevents, dlsfile, dump_file, transpose, repe… argument
621 …me, filename, start, end, length, output, quantize, jetevents, dlsfile, dump_file, transpose, repe…
623 …me, filename, start, end, length, output, quantize, jetevents, dlsfile, dump_file, transpose, repe… argument
[all …]
DJetDebug.py69 print(segment.dump_file)
/external/google-breakpad/src/client/windows/crash_generation/
Dminidump_generator.h68 void SetDumpFile(const HANDLE dump_file) { dump_file_ = dump_file; } in SetDumpFile() argument
/external/e2fsprogs/debugfs/
Ddump.c100 static void dump_file(const char *cmdname, ext2_ino_t ino, int fd, in dump_file() function
189 dump_file(argv[0], inode, fd, preserve, out_fn); in do_dump()
274 dump_file("rdump", ino, fd, 1, fullname); in rdump_inode()
381 dump_file(argv[0], inode, 1, 0, argv[2]); in do_cat()
/external/autotest/database/
Dmigrate.py403 dump_fd, dump_file = tempfile.mkstemp('.migrate_dump')
405 (self.get_mysql_args(), dump_file))
409 os.system('mysql %s <%s' % (self.get_mysql_args(), dump_file))
411 os.remove(dump_file)
/external/python/cpython2/Lib/distutils/tests/
Dtest_config_cmd.py7 from distutils.command.config import dump_file, config
37 dump_file(this_file, 'I am the header')
/external/python/cpython3/Lib/distutils/tests/
Dtest_config_cmd.py7 from distutils.command.config import dump_file, config
37 dump_file(this_file, 'I am the header')
/external/wpa_supplicant_8/hostapd/
Dwired.conf12 dump_file=/tmp/hostapd.dump
/external/pigweed/pw_allocator/py/pw_allocator/
Dheap_viewer.py119 def visualize(dump_file=None, argument
143 allocation_dump = open(dump_file, 'r')
/external/google-breakpad/src/client/windows/handler/
Dexception_handler.cc920 HANDLE dump_file = CreateFile(next_minidump_path_c_, in WriteMinidumpWithExceptionForProcess() local
927 if (dump_file != INVALID_HANDLE_VALUE) { in WriteMinidumpWithExceptionForProcess()
1027 dump_file, in WriteMinidumpWithExceptionForProcess()
1033 CloseHandle(dump_file); in WriteMinidumpWithExceptionForProcess()
/external/python/cpython2/Lib/distutils/command/
Dconfig.py135 dump_file(src, "compiling '%s':" % src)
344 def dump_file(filename, head=None): function
/external/python/cpython3/Lib/distutils/command/
Dconfig.py129 dump_file(src, "compiling '%s':" % src)
331 def dump_file(filename, head=None): function
/external/mesa3d/src/gallium/auxiliary/hud/
Dhud_context.c1035 char *dump_file = malloc(strlen(hud_dump_dir) + sizeof(PATH_SEP) in hud_graph_set_dump_file() local
1037 if (dump_file) { in hud_graph_set_dump_file()
1038 strcpy(dump_file, hud_dump_dir); in hud_graph_set_dump_file()
1039 strcat(dump_file, PATH_SEP); in hud_graph_set_dump_file()
1040 strcat_without_spaces(dump_file, gr->name); in hud_graph_set_dump_file()
1041 gr->fd = fopen(dump_file, "w+"); in hud_graph_set_dump_file()
1046 free(dump_file); in hud_graph_set_dump_file()
/external/f2fs-tools/fsck/
Ddump.c411 static void dump_file(struct f2fs_sb_info *sbi, struct node_info *ni, in dump_file() function
511 dump_file(sbi, &ni, node_blk, force); in dump_node()
/external/tensorflow/tensorflow/core/common_runtime/
Dbfc_allocator.cc1069 std::unique_ptr<WritableFile> dump_file; in MaybeWriteMemoryMap() local
1072 Status status = Env::Default()->NewWritableFile(file_name, &dump_file); in MaybeWriteMemoryMap()
1078 status = dump_file->Append(md.SerializeAsString()); in MaybeWriteMemoryMap()
/external/igt-gpu-tools/runner/
Drunner_tests.c49 static char *dump_file(int dirfd, const char *name) in dump_file() function
1305 dump = dump_file(subdirfd, "journal.txt");
1318 dump = dump_file(subdirfd, "journal.txt");
/external/ethtool/
Dethtool.c4461 static int do_writefwdump(struct ethtool_dump *dump, const char *dump_file) in do_writefwdump() argument
4467 f = fopen(dump_file, "wb+"); in do_writefwdump()
4471 dump_file, strerror(errno)); in do_writefwdump()
4481 dump_file, strerror(errno)); in do_writefwdump()
4490 char *dump_file; in do_getfwdump() local
4497 dump_file = ctx->argp[1]; in do_getfwdump()
4500 dump_file = NULL; in do_getfwdump()
4530 err = do_writefwdump(data, dump_file); in do_getfwdump()
/external/igt-gpu-tools/tests/i915/
Di915_pm_rpm.c773 static void dump_file(int dir, const char *filename) in dump_file() function
811 dump_file(debugfs, "i915_runtime_pm_status"); in setup_environment()

12