/external/chromium_org/chrome_frame/crash_reporting/ |
crash_report.h | 20 const std::wstring& dump_path, 26 const std::wstring& dump_path,
|
crash_report.cc | 120 const std::wstring& dump_path, 126 if (dump_path.empty()) { 133 dump_path, NULL, NULL, NULL, 153 const std::wstring& dump_path, 162 dump_path,
|
/external/skia/tools/ |
path_utils.h | 18 // dump_path - once for each path of interest 34 void dump_path(SkFILEWStream* pathStream, const SkPath& path);
|
path_utils.cpp | 28 void dump_path(SkFILEWStream* pathStream, const SkPath& path) { function in namespace:sk_tools
|
/external/chromium_org/tools/deep_memory_profiler/lib/ |
subcommand.py | 35 dump_path, multiple, no_dump=False, alternative_dirs=None): 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): 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] [all...] |
/external/chromium_org/tools/deep_memory_profiler/subcommands/ |
buckets.py | 20 dump_path = args[1] 21 bucket_set = SubCommand.load_basic_files(dump_path, True, True)
|
stacktrace.py | 18 dump_path = args[1] 19 (bucket_set, dump) = SubCommand.load_basic_files(dump_path, False)
|
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)
|
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:
|
expand.py | 23 dump_path = args[1] 27 (bucket_set, dump) = SubCommand.load_basic_files(dump_path, False)
|
map.py | 23 dump_path = args[1] 25 (bucket_set, dumps) = SubCommand.load_basic_files(dump_path, True)
|
cat.py | 30 dump_path = args[1] 38 dump_path, True, alternative_dirs=alternative_dirs_dict)
|
policies.py | 33 dump_path = args[1] 41 dump_path, True, alternative_dirs=alternative_dirs_dict) 338 component_sizes['dump_path'] = dump.path
|
/external/chromium_org/chrome/tools/crash_service/ |
crash_service.cc | 46 bool WriteCustomInfoToFile(const std::wstring& dump_path, const CrashMap& map) { 47 std::wstring file_path(dump_path); 138 std::wstring dump_path; member in struct:__anon9522::DumpJobInfo 142 : pid(process_id), self(service), map(crash_map), dump_path(path) { 431 info->dump_path, &report_id); 459 if (!::DeleteFileW(info->dump_path.c_str())) 460 LOG(WARNING) << "could not delete " << info->dump_path;
|
/external/oprofile/libopagent/ |
opagent.c | 128 char dump_path[PATH_MAX]; local 147 snprintf(dump_path, PATH_MAX, "%s/%i.dump", AGENT_DIR, getpid()); 148 snprintf(err_msg, PATH_MAX + 16, "Error opening %s\n", dump_path); 150 fd = creat(dump_path, S_IRUSR|S_IWUSR); 176 snprintf(err_msg, PATH_MAX + 16, "Error writing to %s", dump_path);
|