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

  /art/runtime/
modifiers.h 33 static constexpr uint32_t kAccNative = 0x0100; // method
77 kAccStatic | kAccFinal | kAccSynchronized | kAccBridge | kAccVarargs | kAccNative |
dex_file_verifier.cc 474 bool expect_code = (access_flags & (kAccNative | kAccAbstract)) == 0;
476 bool allow_synchronized = (access_flags & kAccNative) != 0;
    [all...]
dex_file.h     [all...]
  /art/compiler/driver/
dex_compilation_unit.h 90 return ((access_flags_ & kAccNative) != 0);
compiler_driver.cc     [all...]
  /art/runtime/mirror/
art_method.h 126 return (GetAccessFlags() & kAccNative) != 0;
130 uint32_t mask = kAccFastNative | kAccNative;
  /art/compiler/jni/quick/
jni_compiler.cc 60 const bool is_native = (access_flags & kAccNative) != 0;
  /art/oatdump/
oatdump.cc     [all...]
  /art/runtime/verifier/
method_verifier.cc 436 if ((method_access_flags_ & (kAccNative | kAccAbstract)) == 0) {
    [all...]

Completed in 378 milliseconds