Searched refs:method_access_flags (Results 1 - 5 of 5) sorted by relevance

/art/runtime/
H A Ddex_file_verifier.cc2603 uint32_t method_access_flags,
2611 if ((method_access_flags & ~kAllMethodFlags) != 0) {
2614 method_access_flags);
2633 if (!CheckAtMostOneOfPublicProtectedPrivate(method_access_flags)) {
2636 method_access_flags);
2660 if (((method_access_flags & kAccConstructor) != 0) && !is_constructor) {
2670 bool is_static = (method_access_flags & kAccStatic) != 0;
2686 bool is_direct = (method_access_flags & (kAccStatic | kAccPrivate)) != 0 || is_constructor;
2697 method_access_flags &= kMethodAccessFlags;
2706 if ((method_access_flags
2602 CheckMethodAccessFlags(uint32_t method_index, uint32_t method_access_flags, uint32_t class_access_flags, bool has_code, bool expect_direct, std::string* error_msg) argument
[all...]
H A Ddex_file_verifier.h169 uint32_t method_access_flags,
/art/oatdump/
H A Doatdump.cc236 uint32_t method_access_flags) {
237 if ((method_access_flags & kAccAbstract) != 0) {
257 info.access_flags = method_access_flags;
780 uint32_t method_access_flags, bool* addr_found) {
827 method_access_flags));
1116 uint32_t method_access_flags) {
1117 if ((method_access_flags & kAccNative) == 0) {
1125 &class_def, code_item, nullptr, method_access_flags);
1854 uint32_t method_access_flags = method->GetAccessFlags(); local
1860 method_access_flags);
231 WalkOatMethod(const OatFile::OatMethod& oat_method, const DexFile& dex_file, uint32_t class_def_index, uint32_t dex_method_index, const DexFile::CodeItem* code_item, uint32_t method_access_flags) argument
775 DumpOatMethod(VariableIndentationOutputStream* vios, const DexFile::ClassDef& class_def, uint32_t class_method_index, const OatFile::OatClass& oat_class, const DexFile& dex_file, uint32_t dex_method_idx, const DexFile::CodeItem* code_item, uint32_t method_access_flags, bool* addr_found) argument
1110 DumpVerifier(VariableIndentationOutputStream* vios, StackHandleScope<1>* hs, uint32_t dex_method_idx, const DexFile* dex_file, const DexFile::ClassDef& class_def, const DexFile::CodeItem* code_item, uint32_t method_access_flags) argument
[all...]
/art/runtime/verifier/
H A Dmethod_verifier.h180 uint32_t method_access_flags)
365 uint32_t method_access_flags,
H A Dmethod_verifier.cc360 uint32_t method_access_flags,
377 method_access_flags,
468 uint32_t method_access_flags) {
477 method_access_flags,
505 uint32_t method_access_flags,
519 method_access_flags_(method_access_flags),
352 VerifyMethod(Thread* self, uint32_t method_idx, const DexFile* dex_file, Handle<mirror::DexCache> dex_cache, Handle<mirror::ClassLoader> class_loader, const DexFile::ClassDef* class_def, const DexFile::CodeItem* code_item, ArtMethod* method, uint32_t method_access_flags, CompilerCallbacks* callbacks, bool allow_soft_failures, LogSeverity log_level, bool need_precise_constants, std::string* hard_failure_msg) argument
459 VerifyMethodAndDump(Thread* self, VariableIndentationOutputStream* vios, uint32_t dex_method_idx, const DexFile* dex_file, Handle<mirror::DexCache> dex_cache, Handle<mirror::ClassLoader> class_loader, const DexFile::ClassDef* class_def, const DexFile::CodeItem* code_item, ArtMethod* method, uint32_t method_access_flags) argument
497 MethodVerifier(Thread* self, const DexFile* dex_file, Handle<mirror::DexCache> dex_cache, Handle<mirror::ClassLoader> class_loader, const DexFile::ClassDef* class_def, const DexFile::CodeItem* code_item, uint32_t dex_method_idx, ArtMethod* method, uint32_t method_access_flags, bool can_load_classes, bool allow_soft_failures, bool need_precise_constants, bool verify_to_dump, bool allow_thread_suspension) argument

Completed in 106 milliseconds