Searched refs:kAccNative (Results 1 – 18 of 18) sorted by relevance
/art/libdexfile/dex/ |
D | modifiers.h | 37 static constexpr uint32_t kAccNative = 0x0100; // method variable 139 kAccStatic | kAccFinal | kAccSynchronized | kAccBridge | kAccVarargs | kAccNative |
|
D | dex_file_verifier_test.cc | 350 OrMaskToMethodFlags(dex_file, kConstructors[i], kAccNative); in TEST_F() 384 OrMaskToMethodFlags(dex_file, kConstructors[i], kAccNative); in TEST_F() 504 OrMaskToMethodFlags(dex_file, kMethods[i], kAccNative); in TEST_F() 535 kAccNative, in TEST_F() 599 kAccNative | in TEST_F() 789 kAccNative | in TEST_F()
|
D | class_accessor.h | 74 return GetAccessFlags() & kAccNative; in MemberIsNative()
|
D | dex_file_verifier.cc | 3665 kAccNative | in CheckMethodAccessFlags() 3748 if ((method_access_flags & (kAccNative | kAccAbstract)) == 0) { in CheckMethodAccessFlags() 3771 kAccPrivate | kAccStatic | kAccFinal | kAccNative | kAccStrict | kAccSynchronized; in CheckMethodAccessFlags() 3810 if ((method_access_flags & (kAccNative | kAccAbstract)) != 0) { in CheckMethodAccessFlags()
|
/art/runtime/ |
D | nterp_helpers-inl.h | 41 if ((access_flags & kAccNative) == 0u && all_parameters_are_reference) { in GetNterpFastPathFlags()
|
D | art_method.h | 439 return (access_flags & kAccNative) != 0; 451 constexpr uint32_t mask = kAccFastNative | kAccNative; 464 constexpr uint32_t mask = kAccCriticalNative | kAccNative; 521 return (GetAccessFlags() & (kAccSkipAccessChecks | kAccNative)) == kAccSkipAccessChecks; 582 constexpr uint32_t mask = kAccNative | kAccNterpEntryPointFastPathFlag;
|
D | class_linker.cc | 4125 if (UNLIKELY((access_flags & kAccNative) != 0u)) { in LoadMethod() 8179 DCHECK_EQ(new_method.GetAccessFlags() & kAccNative, 0u); in ReallocMethods() 8194 DCHECK_EQ(access_flags & (kAccNative | kAccIntrinsic), 0u); in ReallocMethods()
|
/art/tools/cpp-define-generator/ |
D | globals.def | 35 art::kAccNative) 37 art::MostSignificantBit(art::kAccNative))
|
/art/compiler/driver/ |
D | dex_compilation_unit.h | 93 return ((access_flags_ & kAccNative) != 0); in IsNative()
|
/art/profman/ |
D | boot_image_profile.cc | 135 if ((flags & kAccNative) != 0) { in MaybeIsClassClean()
|
/art/tools/jvmti-agents/simple-force-redefine/ |
D | forceredefine.cc | 100 (dex::kAccAbstract | dex::kAccBridge | dex::kAccNative | dex::kAccSynthetic)) != 0) { in Transform()
|
/art/compiler/jni/quick/ |
D | jni_compiler.cc | 83 CHECK_NE(access_flags & kAccNative, 0u); in ArtJniCompileMethodInternal()
|
/art/runtime/verifier/ |
D | method_verifier.cc | 899 if ((method_access_flags_ & (kAccNative | kAccAbstract)) == 0) { in Verify() 906 if ((method_access_flags_ & kAccNative) != 0) { in Verify() 946 kAccNative | in Verify() 981 if ((method_access_flags_ & (kAccNative | kAccAbstract)) != 0) { in Verify()
|
/art/openjdkjvmti/ |
D | ti_method.cc | 445 modifiers &= ~art::kAccNative; in GetMethodModifiers()
|
/art/dexdump/ |
D | dexdump.cc | 1409 fprintf(gOutFile, " native=%s\n", quotedBool((flags & kAccNative) != 0)); in dumpMethod()
|
/art/dex2oat/driver/ |
D | compiler_driver.cc | 485 if ((access_flags & kAccNative) != 0) { in CompileMethodQuick()
|
/art/oatdump/ |
D | oatdump.cc | 1494 if ((method_access_flags & kAccNative) == 0) { in DumpVerifier()
|
/art/dex2oat/linker/ |
D | oat_writer.cc | 1237 info.custom_name = (access_flags & kAccNative) ? "art_jni_trampoline" : ""; in VisitMethod()
|