HomeSort by relevance Sort by last modified time
    Searched refs:kAccNative (Results 1 - 18 of 18) sorted by null

  /art/libdexfile/dex/
modifiers.h 35 static constexpr uint32_t kAccNative = 0x0100; // method
122 kAccStatic | kAccFinal | kAccSynchronized | kAccBridge | kAccVarargs | kAccNative |
hidden_api_access_flags.h 114 return ((access_flags_ & kAccNative) != 0) ? kAccDexHiddenBitNative : kAccDexHiddenBit;
dex_file_verifier_test.cc 355 OrMaskToMethodFlags(dex_file, kConstructors[i], kAccNative);
389 OrMaskToMethodFlags(dex_file, kConstructors[i], kAccNative);
509 OrMaskToMethodFlags(dex_file, kMethods[i], kAccNative);
540 kAccNative,
604 kAccNative |
794 kAccNative |
    [all...]
dex_file_verifier.cc     [all...]
dex_file.h     [all...]
  /art/compiler/driver/
dex_compilation_unit.h 91 return ((access_flags_ & kAccNative) != 0);
compiler_driver.cc 611 if ((access_flags & kAccNative) != 0) {
    [all...]
  /art/profman/
boot_image_profile.cc 96 if ((flags & kAccNative) != 0) {
  /art/runtime/
art_method.h 211 // so we need to check the kAccNative flag as well.
212 return (GetAccessFlags() & (kAccNative | kAccMiranda)) == kAccMiranda;
262 return (GetAccessFlags<kReadBarrierOption>() & kAccNative) != 0;
269 // so we need to check the kAccNative flag as well.
270 constexpr uint32_t mask = kAccFastNative | kAccNative;
278 // so we need to check the kAccNative flag as well.
279 constexpr uint32_t mask = kAccCriticalNative | kAccNative;
302 // so we need to check the kAccNative flag as well.
303 return (GetAccessFlags() & (kAccSkipAccessChecks | kAccNative)) == kAccSkipAccessChecks;
    [all...]
class_linker.cc     [all...]
  /tools/dexter/slicer/export/slicer/
dex_format.h 86 constexpr u4 kAccNative = 0x0100; // method
  /art/compiler/jni/quick/
jni_compiler.cc 121 const bool is_native = (access_flags & kAccNative) != 0;
    [all...]
  /external/dexmaker/dexmaker-mockito-inline/src/main/jni/dexmakerjvmtiagent/
agent.cc 262 return !(((method->access_flags & (kAccAbstract | kAccPrivate | kAccBridge | kAccNative
    [all...]
  /art/openjdkjvmti/
ti_method.cc 437 modifiers &= ~art::kAccNative;
    [all...]
  /art/runtime/verifier/
method_verifier.cc 696 if ((method_access_flags_ & (kAccNative | kAccAbstract)) == 0) {
710 kAccNative |
745 if ((method_access_flags_ & (kAccNative | kAccAbstract)) != 0) {
    [all...]
  /art/dexdump/
dexdump.cc     [all...]
  /art/dexlayout/
dexlayout.cc     [all...]
  /art/oatdump/
oatdump.cc     [all...]

Completed in 1104 milliseconds