Home
last modified time | relevance | path

Searched refs:kAccFastNative (Results 1 – 6 of 6) sorted by relevance

/art/libdexfile/dex/
Dmodifiers.h77 static constexpr uint32_t kAccFastNative = 0x00080000; // method (runtime; native only) variable
/art/tools/cpp-define-generator/
Dglobals.def39 art::kAccFastNative)
/art/compiler/jni/quick/
Djni_compiler.cc129 const bool is_fast_native = (access_flags & kAccFastNative) != 0u; in ArtJniCompileMethodInternal()
/art/runtime/
Dart_method.h299 constexpr uint32_t mask = kAccFastNative | kAccNative; in IsFastNative()
/art/runtime/dex/
Ddex_file_annotations.cc1285 access_flags |= kAccFastNative; in GetNativeMethodAnnotationAccessFlags()
1294 CHECK_NE(access_flags, kAccFastNative | kAccCriticalNative); in GetNativeMethodAnnotationAccessFlags()
/art/runtime/verifier/
Dmethod_verifier.cc944 if ((native_access_flags & kAccFastNative) != 0) { in Verify()