Home
last modified time | relevance | path

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

/art/libdexfile/dex/
Dmodifiers.h54 static constexpr uint32_t kAccVerificationAttempted = 0x00080000; // class (runtime) variable
/art/runtime/mirror/
Dclass.h287 return (GetAccessFlags() & kAccVerificationAttempted) != 0; in WasVerificationAttempted()
294 if ((flags & kAccVerificationAttempted) == 0) { in SetVerificationAttempted()
295 SetAccessFlags(flags | kAccVerificationAttempted); in SetVerificationAttempted()
/art/runtime/
Dclass_linker_test.cc119 EXPECT_EQ(kAccPublic | kAccFinal | kAccAbstract | kAccVerificationAttempted, in AssertPrimitiveClass()
1439 EXPECT_EQ((c->GetAccessFlags() & kAccVerificationAttempted) != 0U, preverified) in CheckVerificationAttempted()