/external/chromium_org/tools/deep_memory_profiler/lib/ |
D | subcommand.py | 35 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/ |
D | crash_report.cc | 120 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()
|
D | crash_report.h | 20 const std::wstring& dump_path, 26 const std::wstring& dump_path,
|
/external/chromium_org/tools/deep_memory_profiler/subcommands/ |
D | upload.py | 28 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)
|
D | buckets.py | 20 dump_path = args[1] 21 bucket_set = SubCommand.load_basic_files(dump_path, True, True)
|
D | stacktrace.py | 18 dump_path = args[1] 19 (bucket_set, dump) = SubCommand.load_basic_files(dump_path, False)
|
D | pprof.py | 27 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:
|
D | map.py | 23 dump_path = args[1] 25 (bucket_set, dumps) = SubCommand.load_basic_files(dump_path, True)
|
D | expand.py | 23 dump_path = args[1] 27 (bucket_set, dump) = SubCommand.load_basic_files(dump_path, False)
|
D | cat.py | 30 dump_path = args[1] 38 dump_path, True, alternative_dirs=alternative_dirs_dict)
|
D | policies.py | 36 dump_path = args[1] 44 dump_path, True, alternative_dirs=alternative_dirs_dict)
|
/external/chromium_org/components/breakpad/tools/ |
D | crash_service.cc | 45 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/ |
D | opagent.c | 128 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/ |
D | path_utils.h | 34 void dump_path(SkFILEWStream* pathStream, const SkPath& path);
|
D | path_utils.cpp | 28 void dump_path(SkFILEWStream* pathStream, const SkPath& path) { in dump_path() function
|