Lines Matching refs:tuple
162 auto tuple = SplitUrlInApk(path); in GetPathInSymFsDir() local
163 if (std::get<0>(tuple)) { in GetPathInSymFsDir()
164 std::string apk_path = std::get<1>(tuple); in GetPathInSymFsDir()
165 std::string entry_path = std::get<2>(tuple); in GetPathInSymFsDir()
426 auto tuple = SplitUrlInApk(debug_file_path_); in LoadSymbols() local
428 if (std::get<0>(tuple)) { in LoadSymbols()
429 std::unique_ptr<ArchiveHelper> ahelper = ArchiveHelper::CreateInstance(std::get<1>(tuple)); in LoadSymbols()
433 ahelper->FindEntry(std::get<2>(tuple), &entry) && ahelper->GetEntryData(entry, &data)) { in LoadSymbols()
478 auto tuple = SplitUrlInApk(debug_file_path_); in GetMinExecutableVaddr() local
479 if (std::get<0>(tuple)) { in GetMinExecutableVaddr()
480 EmbeddedElf* elf = ApkInspector::FindElfInApkByName(std::get<1>(tuple), in GetMinExecutableVaddr()
481 std::get<2>(tuple)); in GetMinExecutableVaddr()
550 std::tuple<bool, std::string, std::string> tuple = SplitUrlInApk(debug_file_path_); in LoadSymbols() local
551 if (std::get<0>(tuple)) { in LoadSymbols()
552 EmbeddedElf* elf = ApkInspector::FindElfInApkByName(std::get<1>(tuple), std::get<2>(tuple)); in LoadSymbols()
722 auto tuple = SplitUrlInApk(dso_path); in GetBuildIdFromDsoPath() local
724 if (std::get<0>(tuple)) { in GetBuildIdFromDsoPath()
725 EmbeddedElf* elf = ApkInspector::FindElfInApkByName(std::get<1>(tuple), std::get<2>(tuple)); in GetBuildIdFromDsoPath()