Home
last modified time | relevance | path

Searched refs:context_spec (Results 1 – 3 of 3) sorted by relevance

/art/runtime/
Dclass_loader_context.cc675 bool ClassLoaderContext::VerifyClassLoaderContextMatch(const std::string& context_spec, in VerifyClassLoaderContextMatch() argument
684 if (!expected_context.Parse(context_spec, verify_checksums)) { in VerifyClassLoaderContextMatch()
685 LOG(WARNING) << "Invalid class loader context: " << context_spec; in VerifyClassLoaderContextMatch()
701 << " (" << context_spec << " | " << EncodeContextForOatFile("") << ")"; in VerifyClassLoaderContextMatch()
712 << " (" << context_spec << " | " << EncodeContextForOatFile("") << ")"; in VerifyClassLoaderContextMatch()
719 << " (" << context_spec << " | " << EncodeContextForOatFile("") << ")"; in VerifyClassLoaderContextMatch()
774 << " (" << context_spec << " | " << EncodeContextForOatFile("") << ")"; in VerifyClassLoaderContextMatch()
783 << " (" << context_spec << " | " << EncodeContextForOatFile("") << ")"; in VerifyClassLoaderContextMatch()
Dclass_loader_context_test.cc126 std::unique_ptr<ClassLoaderContext> ParseContextWithChecksums(const std::string& context_spec) { in ParseContextWithChecksums() argument
128 if (!context->Parse(context_spec, /*parse_checksums*/ true)) { in ParseContextWithChecksums()
472 std::string context_spec = in TEST_F() local
477 std::unique_ptr<ClassLoaderContext> context = ClassLoaderContext::Create(context_spec); in TEST_F()
612 std::string context_spec = "PCL[a.dex*123:b.dex*456];DLC[c.dex*890]"; in TEST_F() local
613 std::unique_ptr<ClassLoaderContext> context = ParseContextWithChecksums(context_spec); in TEST_F()
622 ASSERT_TRUE(context->VerifyClassLoaderContextMatch(context_spec)); in TEST_F()
Dclass_loader_context.h112 bool VerifyClassLoaderContextMatch(const std::string& context_spec,