Lines Matching refs:debug_file_path
518 ElfStatus result, const std::string& path, const std::string& debug_file_path, in ReportReadElfSymbolResult() argument
521 LOG(VERBOSE) << "Read symbols from " << debug_file_path << " successfully"; in ReportReadElfSymbolResult()
528 LOG(warning_loglevel) << debug_file_path << " doesn't contain symbol table"; in ReportReadElfSymbolResult()
530 LOG(warning_loglevel) << "failed to read symbols from " << debug_file_path << ": " << result; in ReportReadElfSymbolResult()
570 const std::string& debug_file_path = GetDebugFilePath(); in LoadSymbolsImpl() local
571 auto tuple = SplitUrlInApk(debug_file_path); in LoadSymbolsImpl()
574 if (!IsRegularFile(std::get<0>(tuple) ? std::get<1>(tuple) : debug_file_path)) { in LoadSymbolsImpl()
575 LOG(DEBUG) << "skip reading symbols from non-exist dex_file " << debug_file_path; in LoadSymbolsImpl()
588 status = ReadSymbolsFromDexFileInMemory(data.data(), data.size(), debug_file_path, in LoadSymbolsImpl()
592 status = ReadSymbolsFromDexFile(debug_file_path, dex_file_offsets_, symbol_callback); in LoadSymbolsImpl()
597 LOG(level) << "Failed to read symbols from dex_file " << debug_file_path; in LoadSymbolsImpl()
600 LOG(VERBOSE) << "Read symbols from dex_file " << debug_file_path << " successfully"; in LoadSymbolsImpl()