Lines Matching refs:debug_file_path
273 Dso::Dso(DsoType type, const std::string& path, const std::string& debug_file_path) in Dso() argument
276 debug_file_path_(debug_file_path), in Dso()
374 const std::string& debug_file_path, in ReportReadElfSymbolResult() argument
377 LOG(VERBOSE) << "Read symbols from " << debug_file_path << " successfully"; in ReportReadElfSymbolResult()
384 LOG(warning_loglevel) << debug_file_path << " doesn't contain symbol table"; in ReportReadElfSymbolResult()
386 LOG(warning_loglevel) << "failed to read symbols from " << debug_file_path << ": " << result; in ReportReadElfSymbolResult()
403 DexFileDso(const std::string& path, const std::string& debug_file_path) in DexFileDso() argument
404 : Dso(DSO_DEX_FILE, path, debug_file_path) {} in DexFileDso()
460 ElfDso(const std::string& path, const std::string& debug_file_path) in ElfDso() argument
461 : Dso(DSO_ELF_FILE, path, debug_file_path) {} in ElfDso()
578 KernelDso(const std::string& path, const std::string& debug_file_path) in KernelDso() argument
579 : Dso(DSO_KERNEL, path, debug_file_path) {} in KernelDso()
646 KernelModuleDso(const std::string& path, const std::string& debug_file_path) in KernelModuleDso() argument
647 : Dso(DSO_KERNEL_MODULE, path, debug_file_path) {} in KernelModuleDso()