Home
last modified time | relevance | path

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

/external/google-breakpad/src/client/windows/unittests/
Dexception_handler_test.cc105 static std::wstring dump_file; member in __anoncf06e6230111::ExceptionHandlerTest
109 std::wstring ExceptionHandlerTest::dump_file; member in __anoncf06e6230111::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/lisa/libs/utils/android/
Dworkload.py223 dump_file = os.path.join(self.out_dir, 'dumpsys_gfxinfo.txt')
224 System.gfxinfo_get(self._target, self.package, dump_file)
225 self.gfxinfo = GfxInfo(dump_file)
228 dump_file = os.path.join(self.out_dir, 'dumpsys_surfaceflinger.txt')
229 System.surfaceflinger_get(self._target, self.package, dump_file)
230 self.surfaceflinger = SurfaceFlinger(dump_file)
232 dump_file = os.path.join(self.out_dir, 'logcat.txt')
233 System.logcat_get(self._target, dump_file)
/external/autotest/site_utils/
Dbackup_mysql_db.py232 def upload_to_google_storage(self, dump_file): argument
238 input_dict = dict(gs_util=_GSUTIL_BIN, dump_file=dump_file,
243 os.remove(dump_file)
306 dump_file = archiver.dump()
308 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/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
188 dump_file(argv[0], inode, fd, preserve, out_fn); in do_dump()
275 dump_file("rdump", ino, fd, 1, fullname); in rdump_inode()
380 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/wpa_supplicant_8/hostapd/
Dwired.conf12 dump_file=/tmp/hostapd.dump
DChangeLog288 * replace dump_file functionality with same information being available
/external/webrtc/webrtc/modules/audio_processing/test/
Daudio_file_processor.cc70 FILE* dump_file, in AecDumpFileProcessor() argument
73 dump_file_(dump_file), in AecDumpFileProcessor()
Daudio_file_processor.h111 FILE* dump_file,
/external/webrtc/webrtc/call/
Drtc_event_log.cc504 rtc::scoped_ptr<FileWrapper> dump_file(FileWrapper::Create());
505 if (dump_file->OpenFile(file_name.c_str(), true) != 0) {
509 while ((bytes_read = dump_file->Read(tmp_buffer, sizeof(tmp_buffer))) > 0) {
512 dump_file->CloseFile();
/external/mesa3d/src/gallium/auxiliary/hud/
Dhud_context.c915 char *dump_file; in hud_graph_set_dump_file() local
918 dump_file = malloc(strlen(hud_dump_dir) + sizeof("/") + sizeof(gr->name)); in hud_graph_set_dump_file()
919 if (dump_file) { in hud_graph_set_dump_file()
920 strcpy(dump_file, hud_dump_dir); in hud_graph_set_dump_file()
921 strcat(dump_file, "/"); in hud_graph_set_dump_file()
922 strcat(dump_file, gr->name); in hud_graph_set_dump_file()
923 gr->fd = fopen(dump_file, "w+"); in hud_graph_set_dump_file()
924 free(dump_file); in hud_graph_set_dump_file()
/external/google-breakpad/src/client/windows/handler/
Dexception_handler.cc913 HANDLE dump_file = CreateFile(next_minidump_path_c_, in WriteMinidumpWithExceptionForProcess() local
920 if (dump_file != INVALID_HANDLE_VALUE) { in WriteMinidumpWithExceptionForProcess()
1018 dump_file, in WriteMinidumpWithExceptionForProcess()
1024 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/f2fs-tools/fsck/
Ddump.c350 static void dump_file(struct f2fs_sb_info *sbi, struct node_info *ni, in dump_file() function
423 dump_file(sbi, &ni, node_blk, force); in dump_node()
/external/swiftshader/third_party/LLVM/test/CodeGen/X86/
D2007-10-15-CoalescerCrash.ll198 @dump_file = external global %struct._IO_FILE* ; <%struct._IO_FILE**> [#uses=0]
/external/llvm/test/CodeGen/X86/
D2007-10-15-CoalescerCrash.ll198 @dump_file = external global %struct._IO_FILE* ; <%struct._IO_FILE**> [#uses=0]
/external/e2fsprogs/debian/
Dchangelog552 * Fixed debugfs's dump_file and cat functions so they work correctly
/external/e2fsprogs/
DRELEASE-NOTES1210 Fixed debugfs's "dump_file" and "cat" functions work correctly