Searched refs:DexFileVerifier (Results 1 – 4 of 4) sorted by relevance
/art/runtime/ |
D | dex_file_verifier.cc | 102 const char* DexFileVerifier::CheckLoadStringByIdx(dex::StringIndex idx, const char* error_string) { in CheckLoadStringByIdx() 169 const char* DexFileVerifier::CheckLoadStringByTypeIdx(dex::TypeIndex type_idx, in CheckLoadStringByTypeIdx() 177 const DexFile::FieldId* DexFileVerifier::CheckLoadFieldId(uint32_t idx, const char* error_string) { in CheckLoadFieldId() 184 const DexFile::MethodId* DexFileVerifier::CheckLoadMethodId(uint32_t idx, const char* err_string) { in CheckLoadMethodId() 191 const DexFile::ProtoId* DexFileVerifier::CheckLoadProtoId(uint32_t idx, const char* err_string) { in CheckLoadProtoId() 226 bool DexFileVerifier::Verify(const DexFile* dex_file, in Verify() 232 std::unique_ptr<DexFileVerifier> verifier( in Verify() 233 new DexFileVerifier(dex_file, begin, size, location, verify_checksum)); in Verify() 241 bool DexFileVerifier::CheckShortyDescriptorMatch(char shorty_char, const char* descriptor, in CheckShortyDescriptorMatch() 277 bool DexFileVerifier::CheckListSize(const void* start, size_t count, size_t elem_size, in CheckListSize() [all …]
|
D | dex_file_verifier_test.cc | 74 bool success = DexFileVerifier::Verify(dex_file.get(), in VerifyModification() 1641 EXPECT_TRUE(DexFileVerifier::Verify(dex_file.get(), in TEST_F() 1647 EXPECT_TRUE(DexFileVerifier::Verify(dex_file.get(), in TEST_F() 1658 EXPECT_TRUE(DexFileVerifier::Verify(dex_file.get(), in TEST_F() 1664 EXPECT_FALSE(DexFileVerifier::Verify(dex_file.get(), in TEST_F() 1711 EXPECT_FALSE(DexFileVerifier::Verify(dex_file.get(), in TEST_F() 1755 EXPECT_FALSE(DexFileVerifier::Verify(dex_file.get(), in TEST_F() 1799 EXPECT_FALSE(DexFileVerifier::Verify(dex_file.get(), in TEST_F() 1843 EXPECT_FALSE(DexFileVerifier::Verify(dex_file.get(), in TEST_F() 1880 EXPECT_FALSE(DexFileVerifier::Verify(dex_file.get(), in TEST_F() [all …]
|
D | dex_file_verifier.h | 28 class DexFileVerifier { 42 DexFileVerifier(const DexFile* dex_file, in DexFileVerifier() function
|
D | dex_file.cc | 506 if (verify && !DexFileVerifier::Verify(dex_file.get(), in OpenCommon()
|