Searched refs:kAccNative (Results 1 – 17 of 17) sorted by relevance
/art/libdexfile/dex/ |
D | modifiers.h | 37 static constexpr uint32_t kAccNative = 0x0100; // method variable 130 kAccStatic | kAccFinal | kAccSynchronized | kAccBridge | kAccVarargs | kAccNative |
|
D | dex_file_verifier_test.cc | 357 OrMaskToMethodFlags(dex_file, kConstructors[i], kAccNative); in TEST_F() 391 OrMaskToMethodFlags(dex_file, kConstructors[i], kAccNative); in TEST_F() 511 OrMaskToMethodFlags(dex_file, kMethods[i], kAccNative); in TEST_F() 542 kAccNative, in TEST_F() 606 kAccNative | in TEST_F() 796 kAccNative | in TEST_F()
|
D | class_accessor.h | 73 return GetAccessFlags() & kAccNative; in MemberIsNative()
|
D | dex_file_verifier.cc | 3488 kAccNative | in CheckMethodAccessFlags() 3571 if ((method_access_flags & (kAccNative | kAccAbstract)) == 0) { in CheckMethodAccessFlags() 3594 kAccPrivate | kAccStatic | kAccFinal | kAccNative | kAccStrict | kAccSynchronized; in CheckMethodAccessFlags() 3633 if ((method_access_flags & (kAccNative | kAccAbstract)) != 0) { in CheckMethodAccessFlags()
|
/art/compiler/driver/ |
D | dex_compilation_unit.h | 92 return ((access_flags_ & kAccNative) != 0); in IsNative()
|
/art/runtime/ |
D | art_method.h | 207 return (GetAccessFlags() & (kAccNative | kAccMiranda | kAccCompileDontBother)) == kAccMiranda; in IsMiranda() 282 return (GetAccessFlags() & kAccNative) != 0; in IsNative() 290 constexpr uint32_t mask = kAccFastNative | kAccNative; in IsFastNative() 299 constexpr uint32_t mask = kAccCriticalNative | kAccNative; in IsCriticalNative() 339 return (GetAccessFlags() & (kAccSkipAccessChecks | kAccNative)) == kAccSkipAccessChecks; in SkipAccessChecks()
|
D | class_linker.cc | 3929 if (UNLIKELY((access_flags & kAccNative) != 0u)) { in LoadMethod() 7904 DCHECK_EQ(new_method.GetAccessFlags() & kAccNative, 0u); in ReallocMethods() 7929 DCHECK_EQ(new_method.GetAccessFlags() & kAccNative, 0u); in ReallocMethods()
|
/art/profman/ |
D | boot_image_profile.cc | 135 if ((flags & kAccNative) != 0) { in MaybeIsClassClean()
|
/art/tools/jvmti-agents/simple-force-redefine/ |
D | forceredefine.cc | 102 (dex::kAccAbstract | dex::kAccBridge | dex::kAccNative | dex::kAccSynthetic)) != 0) { in Transform()
|
/art/compiler/jni/quick/ |
D | jni_compiler.cc | 118 const bool is_native = (access_flags & kAccNative) != 0; in ArtJniCompileMethodInternal()
|
/art/openjdkjvmti/ |
D | ti_method.cc | 442 modifiers &= ~art::kAccNative; in GetMethodModifiers()
|
/art/runtime/verifier/ |
D | method_verifier.cc | 950 if ((method_access_flags_ & (kAccNative | kAccAbstract)) == 0) { in Verify() 964 kAccNative | in Verify() 999 if ((method_access_flags_ & (kAccNative | kAccAbstract)) != 0) { in Verify()
|
/art/dexdump/ |
D | dexdump.cc | 1277 fprintf(gOutFile, " native=%s\n", quotedBool((flags & kAccNative) != 0)); in dumpMethod()
|
/art/dexlayout/ |
D | dexlayout.cc | 1221 fprintf(out_file_, " native=%s\n", QuotedBool((flags & kAccNative) != 0)); in DumpMethod()
|
/art/dex2oat/driver/ |
D | compiler_driver.cc | 559 if ((access_flags & kAccNative) != 0) { in CompileMethodQuick()
|
/art/dex2oat/linker/ |
D | oat_writer.cc | 1373 info.custom_name = (access_flags & kAccNative) ? "art_jni_trampoline" : ""; in VisitMethod()
|
/art/oatdump/ |
D | oatdump.cc | 1502 if ((method_access_flags & kAccNative) == 0) { in DumpVerifier()
|