HomeSort by relevance Sort by last modified time
    Searched defs:core_path (Results 1 - 3 of 3) sorted by null

  /external/google-breakpad/src/common/linux/
elf_core_dump_unittest.cc 67 string core_path = temp_dir.path() + "/core"; local
68 const char* core_file = core_path.c_str();
  /system/core/crash_reporter/
udev_collector.cc 181 FilePath core_path = GetCrashPath(crash_directory, dump_basename, "devcore"); local
186 if (!base::CopyFile(coredump_path, core_path)) {
188 << coredump_path.value() << " to " << core_path.value();
200 WriteCrashMetaData(meta_path, coredump_prefix, core_path.value());
user_collector.cc 270 const FilePath &core_path) const {
271 int fd = HANDLE_EINTR(open(core_path.value().c_str(), O_RDONLY));
273 PLOG(ERROR) << "Could not open core file " << core_path.value();
352 bool UserCollector::CopyStdinToCoreFile(const FilePath &core_path) {
355 if (base::CopyFile(stdin_path, core_path)) {
361 base::DeleteFile(core_path, false);
365 bool UserCollector::RunCoreToMinidump(const FilePath &core_path,
373 core2md.AddArg(core_path.value());
404 const FilePath &core_path,
449 if (!CopyStdinToCoreFile(core_path)) {
500 FilePath core_path = GetCrashPath(crash_path, dump_basename, "core"); local
    [all...]

Completed in 195 milliseconds