HomeSort by relevance Sort by last modified time
    Searched refs:ObjPtr (Results 176 - 200 of 252) sorted by null

1 2 3 4 5 6 78 91011

  /art/runtime/
dex_file_annotations.cc 73 ObjPtr<mirror::DexCache> GetDexCache() const REQUIRES_SHARED(Locks::mutator_lock_) {
81 ObjPtr<mirror::ClassLoader> GetClassLoader() const REQUIRES_SHARED(Locks::mutator_lock_) {
89 ObjPtr<mirror::Class> GetRealClass() const REQUIRES_SHARED(Locks::mutator_lock_) {
135 ObjPtr<mirror::Class> klass = field->GetDeclaringClass();
337 ObjPtr<mirror::Class> annotation_member_class =
386 ObjPtr<mirror::Object> element_object = nullptr;
711 ObjPtr<mirror::Class> annotation_member_class =
773 ObjPtr<mirror::Class> looked_up_class =
    [all...]
transaction.cc 190 void Transaction::RecordResolveString(ObjPtr<mirror::DexCache> dex_cache,
198 void Transaction::RecordStrongStringInsertion(ObjPtr<mirror::String> s) {
203 void Transaction::RecordWeakStringInsertion(ObjPtr<mirror::String> s) {
208 void Transaction::RecordStrongStringRemoval(ObjPtr<mirror::String> s) {
213 void Transaction::RecordWeakStringRemoval(ObjPtr<mirror::String> s) {
550 Transaction::ResolveStringLog::ResolveStringLog(ObjPtr<mirror::DexCache> dex_cache,
562 Transaction::InternStringLog::InternStringLog(ObjPtr<mirror::String> s,
handle.h 137 ALWAYS_INLINE T* Assign(ObjPtr<T> reference) REQUIRES_SHARED(Locks::mutator_lock_) {
well_known_classes.h 43 static ObjPtr<mirror::Class> ToClass(jclass global_jclass) REQUIRES_SHARED(Locks::mutator_lock_);
thread.h 185 ObjPtr<mirror::Object> thread_peer)
331 bool HoldsLock(ObjPtr<mirror::Object> object) const REQUIRES_SHARED(Locks::mutator_lock_);
404 void SetException(ObjPtr<mirror::Throwable> new_exception) REQUIRES_SHARED(Locks::mutator_lock_);
439 bool IsExceptionThrownByCurrentMethod(ObjPtr<mirror::Throwable> exception) const
486 ObjPtr<mirror::Object> DecodeJObject(jobject obj) const REQUIRES_SHARED(Locks::mutator_lock_);
    [all...]
class_linker_test.cc 225 ObjPtr<mirror::Class> direct_interface0 =
229 ObjPtr<mirror::Class> direct_interface1 =
232 ObjPtr<mirror::Class> array_ptr = array->GetComponentType();
255 void AssertField(ObjPtr<mirror::Class> klass, ArtField* field)
369 ObjPtr<mirror::Class> field_type = field->GetType<true>();
    [all...]
instrumentation.cc 85 bool operator()(ObjPtr<mirror::Class> klass) OVERRIDE REQUIRES(Locks::mutator_lock_) {
    [all...]
art_method-inl.h 75 inline void ArtMethod::SetDeclaringClass(ObjPtr<mirror::Class> new_declaring_class) {
160 ObjPtr<mirror::DexCache> dex_cache = GetDexCache();
161 ObjPtr<mirror::Class> type = dex_cache->GetResolvedType(type_idx);
  /art/runtime/interpreter/mterp/
mterp.cc 273 ObjPtr<mirror::Object> const receiver = shadow_frame->GetVRegReference(vregC);
313 ObjPtr<mirror::String> s = ResolveString(self, *shadow_frame, dex::StringIndex(index));
343 ObjPtr<mirror::Class> c = ResolveVerifyAndClinit(dex::TypeIndex(index),
365 ObjPtr<mirror::Class> c = ResolveVerifyAndClinit(dex::TypeIndex(index),
694 return_type (ArtField::*func)(ObjPtr<mirror::Object>))
703 ObjPtr<mirror::Object> obj = f->GetDeclaringClass();
753 return MterpGetStatic<ObjPtr<mirror::Object>, Primitive::kPrimNot>(field_idx,
783 void (ArtField::*func)(ObjPtr<mirror::Object>, field_type val))
    [all...]
  /art/compiler/driver/
compiler_driver.cc 375 ObjPtr<mirror::Class> cls = class_linker->FindSystemClass(self, class_name);
    [all...]
compiler_driver-inl.h 95 ObjPtr<mirror::Class> fields_class = resolved_field->GetDeclaringClass();
  /art/runtime/mirror/
method_type.cc 33 hs.NewHandle(ObjPtr<MethodType>::DownCast(StaticClass()->AllocObject(self))));
method_type_test.cc 56 ObjPtr<mirror::Class> class_type = mirror::Class::GetJavaLangClass();
  /art/runtime/native/
dalvik_system_VMDebug.cc 194 bool operator()(ObjPtr<mirror::Class> klass) OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) {
288 ObjPtr<mirror::Class> c = soa.Decode<mirror::Class>(javaClass);
306 ObjPtr<mirror::ObjectArray<mirror::Class>> decoded_classes =
319 ObjPtr<mirror::LongArray> long_counts = mirror::LongArray::Alloc(soa.Self(), counts.size());
  /art/runtime/verifier/
reg_type-inl.h 47 inline bool RegType::CanAccessMember(ObjPtr<mirror::Class> klass, uint32_t access_flags) const {
verifier_deps.h 215 bool IsInClassPath(ObjPtr<mirror::Class> klass) const
253 dex::StringIndex GetClassDescriptorStringId(const DexFile& dex_file, ObjPtr<mirror::Class> klass)
  /art/compiler/optimizing/
instruction_builder.h 311 ObjPtr<mirror::Class> LookupResolvedType(dex::TypeIndex type_index,
315 ObjPtr<mirror::Class> LookupReferrerClass() const REQUIRES_SHARED(Locks::mutator_lock_);
reference_type_propagation.cc 29 static inline ObjPtr<mirror::DexCache> FindDexCacheWithHint(
91 void SetClassAsTypeInfo(HInstruction* instr, ObjPtr<mirror::Class> klass, bool is_exact)
513 ObjPtr<mirror::Class> klass,
561 ObjPtr<mirror::DexCache> dex_cache = FindDexCacheWithHint(soa.Self(), dex_file, hint_dex_cache_);
562 ObjPtr<mirror::Class> klass =
594 ObjPtr<mirror::Class> klass;
    [all...]
  /art/runtime/gc/collector/
mark_sweep.h 229 void DelayReferenceReferent(ObjPtr<mirror::Class> klass, ObjPtr<mirror::Reference> reference)
semi_space.cc 682 void SemiSpace::DelayReferenceReferent(ObjPtr<mirror::Class> klass,
683 ObjPtr<mirror::Reference> reference) {
691 void operator()(ObjPtr<Object> obj, MemberOffset offset, bool /* is_static */) const ALWAYS_INLINE
697 void operator()(ObjPtr<mirror::Class> klass, ObjPtr<mirror::Reference> ref) const
    [all...]
  /art/test/common/
runtime_state.cc 57 ObjPtr<mirror::Class> klass = soa.Decode<mirror::Class>(cls);
97 ObjPtr<mirror::Class> klass = soa.Decode<mirror::Class>(cls);
  /art/runtime/jit/
profile_saver.cc 238 void Visit(ObjPtr<mirror::ClassLoader> class_loader)
254 ScopedArenaVector<ObjPtr<mirror::Class>>* out)
258 virtual bool operator()(ObjPtr<mirror::Class> klass) REQUIRES_SHARED(Locks::mutator_lock_) {
273 ScopedArenaVector<ObjPtr<mirror::Class>>* const out_;
324 ScopedArenaVector<ObjPtr<mirror::Class>> classes(allocator->Adapter());
339 for (ObjPtr<mirror::Class> klass : classes) {
    [all...]
  /art/runtime/interpreter/
unstarted_runtime.cc 355 ObjPtr<mirror::Method> method;
389 ObjPtr<mirror::Constructor> constructor;
652 ObjPtr<mirror::Class> caller = GetCallingClass(self, 2);
    [all...]
unstarted_runtime_test.cc 86 ObjPtr<mirror::Class> component_type,
90 ObjPtr<mirror::Class> array_type =
93 ObjPtr<mirror::ObjectArray<mirror::Object>> result =
    [all...]
  /art/runtime/gc/
heap.cc     [all...]

Completed in 1245 milliseconds

1 2 3 4 5 6 78 91011