Home
last modified time | relevance | path

Searched refs:kAccNative (Results 1 – 9 of 9) sorted by relevance

/art/runtime/
Dmodifiers.h33 static constexpr uint32_t kAccNative = 0x0100; // method variable
77 kAccStatic | kAccFinal | kAccSynchronized | kAccBridge | kAccVarargs | kAccNative |
Ddex_file_verifier.cc474 bool expect_code = (access_flags & (kAccNative | kAccAbstract)) == 0; in CheckClassDataItemMethod()
476 bool allow_synchronized = (access_flags & kAccNative) != 0; in CheckClassDataItemMethod()
Ddex_file.h1176 return GetRawMemberAccessFlags() & kAccNative; in MemberIsNative()
/art/compiler/driver/
Ddex_compilation_unit.h90 return ((access_flags_ & kAccNative) != 0); in IsNative()
Dcompiler_driver.cc2103 if ((access_flags & kAccNative) != 0) { in CompileMethod()
/art/runtime/mirror/
Dart_method.h124 return (GetAccessFlags() & kAccNative) != 0; in IsNative()
128 uint32_t mask = kAccFastNative | kAccNative; in IsFastNative()
/art/compiler/jni/quick/
Djni_compiler.cc60 const bool is_native = (access_flags & kAccNative) != 0; in ArtJniCompileMethodInternal()
/art/oatdump/
Doatdump.cc906 if ((method_access_flags & kAccNative) == 0) { in DumpVerifier()
/art/runtime/verifier/
Dmethod_verifier.cc453 if ((method_access_flags_ & (kAccNative | kAccAbstract)) == 0) { in Verify()