Home
last modified time | relevance | path

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

/art/libdexfile/dex/
Dmodifiers.h85 static constexpr uint32_t kAccCompileDontBother = 0x02000000; // method (runtime) variable
121 kAccSingleImplementation | kAccMustCountLocks | kAccCompileDontBother | kAccDefaultConflict |
/art/runtime/
Dart_method.h207 return (GetAccessFlags() & (kAccNative | kAccMiranda | kAccCompileDontBother)) == kAccMiranda; in IsMiranda()
221 uint32_t expected = (kAccPreCompiled | kAccCompileDontBother); in IsPreCompiled()
228 AddAccessFlags(kAccPreCompiled | kAccCompileDontBother); in SetPreCompiled()
232 ClearAccessFlags(kAccPreCompiled | kAccCompileDontBother); in ClearPreCompiled()
243 return (GetAccessFlags() & kAccCompileDontBother) == 0; in IsCompilable()
248 ClearAccessFlags(kAccCompileDontBother); in ClearDontCompile()
253 AddAccessFlags(kAccCompileDontBother); in SetDontCompile()
Dclass_linker.cc5184 kAccCompileDontBother); in CreateProxyConstructor()
5213 const uint32_t kAddFlags = kAccFinal | kAccCompileDontBother; in CreateProxyMethod()