Home
last modified time | relevance | path

Searched refs:public_only (Results 1 – 1 of 1) sorted by relevance

/art/runtime/native/
Djava_lang_Class.cc161 Thread* self, ObjPtr<mirror::Class> klass, bool public_only, bool force_resolve) in GetDeclaredFields() argument
167 if (public_only) { in GetDeclaredFields()
187 if (!public_only || field.IsPublic()) { in GetDeclaredFields()
202 if (!public_only || field.IsPublic()) { in GetDeclaredFields()
405 static ALWAYS_INLINE inline bool MethodMatchesConstructor(ArtMethod* m, bool public_only) in MethodMatchesConstructor() argument
408 return (!public_only || m->IsPublic()) && !m->IsStatic() && m->IsConstructor(); in MethodMatchesConstructor()