Home
last modified time | relevance | path

Searched refs:dump_path (Results 1 – 15 of 15) sorted by relevance

/external/chromium_org/tools/deep_memory_profiler/lib/
Dsubcommand.py35 dump_path, multiple, no_dump=False, alternative_dirs=None): argument
36 prefix = SubCommand._find_prefix(dump_path)
51 dump_list = DumpList.load(SubCommand._find_all_dumps(dump_path))
53 dump = Dump.load(dump_path)
111 def _find_all_dumps(dump_path): argument
112 prefix = SubCommand._find_prefix(dump_path)
113 dump_path_list = [dump_path]
115 n = int(dump_path[len(dump_path) - 9 : len(dump_path) - 5])
131 def _find_all_buckets(dump_path): argument
132 prefix = SubCommand._find_prefix(dump_path)
/external/chromium_org/chrome_frame/crash_reporting/
Dcrash_report.cc120 const std::wstring& dump_path, in InitializeVectoredCrashReportingWithPipeName() argument
126 if (dump_path.empty()) { in InitializeVectoredCrashReportingWithPipeName()
133 dump_path, NULL, NULL, NULL, in InitializeVectoredCrashReportingWithPipeName()
153 const std::wstring& dump_path, in InitializeVectoredCrashReporting() argument
162 dump_path, in InitializeVectoredCrashReporting()
Dcrash_report.h20 const std::wstring& dump_path,
26 const std::wstring& dump_path,
/external/chromium_org/tools/deep_memory_profiler/subcommands/
Dupload.py28 dump_path = args[1]
31 dump_files = SubCommand._find_all_dumps(dump_path)
32 bucket_files = SubCommand._find_all_buckets(dump_path)
33 prefix = SubCommand._find_prefix(dump_path)
Dbuckets.py20 dump_path = args[1]
21 bucket_set = SubCommand.load_basic_files(dump_path, True, True)
Dstacktrace.py18 dump_path = args[1]
19 (bucket_set, dump) = SubCommand.load_basic_files(dump_path, False)
Dpprof.py27 dump_path = args[1]
31 (bucket_set, dump) = SubCommand.load_basic_files(dump_path, False)
34 with open(SubCommand._find_prefix(dump_path) + '.maps', 'r') as maps_f:
Dmap.py23 dump_path = args[1]
25 (bucket_set, dumps) = SubCommand.load_basic_files(dump_path, True)
Dexpand.py23 dump_path = args[1]
27 (bucket_set, dump) = SubCommand.load_basic_files(dump_path, False)
Dcat.py30 dump_path = args[1]
38 dump_path, True, alternative_dirs=alternative_dirs_dict)
Dpolicies.py36 dump_path = args[1]
44 dump_path, True, alternative_dirs=alternative_dirs_dict)
/external/chromium_org/components/breakpad/tools/
Dcrash_service.cc45 bool WriteCustomInfoToFile(const std::wstring& dump_path, const CrashMap& map) { in WriteCustomInfoToFile() argument
46 std::wstring file_path(dump_path); in WriteCustomInfoToFile()
137 std::wstring dump_path; member
141 : pid(process_id), self(service), map(crash_map), dump_path(path) { in DumpJobInfo()
410 info->dump_path, &report_id); in AsyncSendDump()
438 if (!::DeleteFileW(info->dump_path.c_str())) in AsyncSendDump()
439 LOG(WARNING) << "could not delete " << info->dump_path; in AsyncSendDump()
/external/oprofile/libopagent/
Dopagent.c128 char dump_path[PATH_MAX]; in op_open_agent() local
147 snprintf(dump_path, PATH_MAX, "%s/%i.dump", AGENT_DIR, getpid()); in op_open_agent()
148 snprintf(err_msg, PATH_MAX + 16, "Error opening %s\n", dump_path); in op_open_agent()
150 fd = creat(dump_path, S_IRUSR|S_IWUSR); in op_open_agent()
176 snprintf(err_msg, PATH_MAX + 16, "Error writing to %s", dump_path); in op_open_agent()
/external/skia/tools/
Dpath_utils.h34 void dump_path(SkFILEWStream* pathStream, const SkPath& path);
Dpath_utils.cpp28 void dump_path(SkFILEWStream* pathStream, const SkPath& path) { in dump_path() function