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
130 kAccSingleImplementation | kAccMustCountLocks | kAccCompileDontBother | kAccCopied |
/art/runtime/
Dart_method.h328 static_assert((kAccCompileDontBother & kAccIntrinsicBits) != 0);
330 static constexpr uint32_t kMask = kAccIntrinsic | kAccCompileDontBother | kAccPreCompiled;
331 static constexpr uint32_t kValue = kAccCompileDontBother | kAccPreCompiled;
345 AddAccessFlags(kAccPreCompiled | kAccCompileDontBother);
349 ClearAccessFlags(kAccPreCompiled | kAccCompileDontBother);
396 return (access_flags & kAccCompileDontBother) == 0;
401 ClearAccessFlags(kAccCompileDontBother);
406 AddAccessFlags(kAccCompileDontBother);
Dclass_linker.cc4151 access_flags |= kAccCompileDontBother; in LoadMethod()
5485 kAccCompileDontBother); in CreateProxyConstructor()
5514 const uint32_t kAddFlags = kAccFinal | kAccCompileDontBother; in CreateProxyMethod()