• Home
  • Raw
  • Download

Lines Matching refs:classpath

107   std::string classpath = class_loader_spec.substr(type_str_size + 1,  in ParseClassLoaderSpec()  local
113 Split(classpath, kClasspathSeparator, &class_loader_chain_.back().classpath); in ParseClassLoaderSpec()
116 Split(classpath, kClasspathSeparator, &classpath_elements); in ParseClassLoaderSpec()
127 class_loader_chain_.back().classpath.push_back(dex_file_with_checksum[0]); in ParseClassLoaderSpec()
210 for (const std::string& cp_elem : info.classpath) { in OpenDexFiles()
266 info.classpath.clear(); in OpenDexFiles()
270 info.classpath.push_back(dex->GetLocation()); in OpenDexFiles()
289 size_t initial_size = info.classpath.size(); in RemoveLocationsFromClassPaths()
291 info.classpath.begin(), in RemoveLocationsFromClassPaths()
292 info.classpath.end(), in RemoveLocationsFromClassPaths()
297 info.classpath.erase(kept_it, info.classpath.end()); in RemoveLocationsFromClassPaths()
298 if (initial_size != info.classpath.size()) { in RemoveLocationsFromClassPaths()
620 info.classpath.push_back(dex_file->GetLocation()); in AddInfoToContextFromClassLoader()
696 if (info.classpath.size() != expected_info.classpath.size()) { in VerifyClassLoaderContextMatch()
698 << ". expected=" << expected_info.classpath.size() in VerifyClassLoaderContextMatch()
699 << ", found=" << info.classpath.size() in VerifyClassLoaderContextMatch()
704 DCHECK_EQ(info.classpath.size(), info.checksums.size()); in VerifyClassLoaderContextMatch()
705 DCHECK_EQ(expected_info.classpath.size(), expected_info.checksums.size()); in VerifyClassLoaderContextMatch()
707 for (size_t k = 0; k < info.classpath.size(); k++) { in VerifyClassLoaderContextMatch()
712 bool is_dex_name_absolute = IsAbsoluteLocation(info.classpath[k]); in VerifyClassLoaderContextMatch()
713 bool is_expected_dex_name_absolute = IsAbsoluteLocation(expected_info.classpath[k]); in VerifyClassLoaderContextMatch()
720 dex_name = info.classpath[k]; in VerifyClassLoaderContextMatch()
721 expected_dex_name = expected_info.classpath[k]; in VerifyClassLoaderContextMatch()
725 dex_name = info.classpath[k]; in VerifyClassLoaderContextMatch()
727 info.classpath[k].c_str(), expected_info.classpath[k]); in VerifyClassLoaderContextMatch()
735 expected_info.classpath[k].c_str(), info.classpath[k]); in VerifyClassLoaderContextMatch()
736 expected_dex_name = expected_info.classpath[k]; in VerifyClassLoaderContextMatch()
742 << ". expected=" << expected_info.classpath[k] in VerifyClassLoaderContextMatch()
743 << ", found=" << info.classpath[k] in VerifyClassLoaderContextMatch()