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

1 2 3 4 5 67 8 91011

  /art/runtime/
runtime.h 282 bool IsClearedJniWeakGlobal(ObjPtr<mirror::Object> obj) REQUIRES_SHARED(Locks::mutator_lock_);
482 ObjPtr<mirror::Object> value,
487 void RecordStrongStringInsertion(ObjPtr<mirror::String> s) const
489 void RecordWeakStringInsertion(ObjPtr<mirror::String> s) const
491 void RecordStrongStringRemoval(ObjPtr<mirror::String> s) const
493 void RecordWeakStringRemoval(ObjPtr<mirror::String> s) const
495 void RecordResolveString(ObjPtr<mirror::DexCache> dex_cache, dex::StringIndex string_idx) const
instrumentation.h 508 ObjPtr<mirror::Object> this_object,
513 ObjPtr<mirror::Object> this_object,
519 ObjPtr<mirror::Object> this_object,
526 ObjPtr<mirror::Object> this_object,
532 ObjPtr<mirror::Object> this_object,
538 ObjPtr<mirror::Object> this_object,
jni_env_ext.cc 189 ObjPtr<mirror::Object> o = self->DecodeJObject(obj);
216 ObjPtr<mirror::Object> o = self->DecodeJObject(pair.second);
234 ObjPtr<mirror::Object> mirror_obj = self->DecodeJObject(obj);
jni_env_ext.h 56 T AddLocalReference(ObjPtr<mirror::Object> obj) REQUIRES_SHARED(Locks::mutator_lock_);
java_vm_ext.cc 585 jobject JavaVMExt::AddGlobalRef(Thread* self, ObjPtr<mirror::Object> obj) {
595 jweak JavaVMExt::AddWeakGlobalRef(Thread* self, ObjPtr<mirror::Object> obj) {
698 ObjPtr<mirror::Object> JavaVMExt::DecodeGlobal(IndirectRef ref) {
702 void JavaVMExt::UpdateGlobal(Thread* self, IndirectRef ref, ObjPtr<mirror::Object> result) {
718 ObjPtr<mirror::Object> JavaVMExt::DecodeWeakGlobal(Thread* self, IndirectRef ref) {
733 ObjPtr<mirror::Object> JavaVMExt::DecodeWeakGlobalLocked(Thread* self, IndirectRef ref) {
746 ObjPtr<mirror::Object> JavaVMExt::DecodeWeakGlobalDuringShutdown(Thread* self, IndirectRef ref) {
775 void JavaVMExt::UpdateWeakGlobal(Thread* self, IndirectRef ref, ObjPtr<mirror::Object> result) {
819 ObjPtr<mirror::ClassLoader> loader = soa.Decode<mirror::ClassLoader>(class_loader);
    [all...]
thread.cc 168 ObjPtr<mirror::Throwable> pending_exception,
179 ObjPtr<mirror::Throwable> GetPendingException() const { return pending_exception_; }
233 ObjPtr<mirror::Throwable> exception) {
244 ObjPtr<mirror::Throwable>* exception,
449 ObjPtr<mirror::Object> receiver = self->tlsPtr_.opeer;
461 ObjPtr<mirror::Object> thread_peer) {
615 ObjPtr<mirror::String> java_name =
    [all...]
class_table_test.cc 128 table.Visit([&classes](ObjPtr<mirror::Class> klass) REQUIRES_SHARED(Locks::mutator_lock_) {
136 table.Visit([&classes](ObjPtr<mirror::Class> klass) REQUIRES_SHARED(Locks::mutator_lock_) {
common_runtime_test.cc 615 ObjPtr<mirror::Object> dex_path_list =
620 ObjPtr<mirror::Object> dex_elements_obj =
630 ObjPtr<mirror::Object> element = dex_elements->GetWithoutChecks(i);
635 ObjPtr<mirror::Object> dex_file = dex_file_field->GetObject(element);
637 ObjPtr<mirror::LongArray> long_array = cookie_field->GetObject(dex_file)->AsLongArray();
716 ObjPtr<mirror::ClassLoader> actual_class_loader = soa.Decode<mirror::ClassLoader>(result);
721 ObjPtr<mirror::ClassLoader> actual_parent(actual_class_loader->GetParent());
726 ObjPtr<mirror::ClassLoader> expected_parent = soa.Decode<mirror::ClassLoader>(parent_loader);
gc_root.h 27 template<class MirrorType> class ObjPtr;
218 explicit ALWAYS_INLINE GcRoot(ObjPtr<MirrorType> ref)
  /art/runtime/openjdkjvmti/
ti_redefine.cc 111 ObsoleteMap(art::ObjPtr<art::mirror::PointerArray> obsolete_methods,
112 art::ObjPtr<art::mirror::ObjectArray<art::mirror::DexCache>> obsolete_dex_caches,
113 art::ObjPtr<art::mirror::DexCache> original_dex_cache)
131 // Pointers to the fields in mirror::ClassExt. These can be held as ObjPtr since this is only used
133 art::ObjPtr<art::mirror::PointerArray> obsolete_methods_;
134 art::ObjPtr<art::mirror::ObjectArray<art::mirror::DexCache>> obsolete_dex_caches_;
135 art::ObjPtr<art::mirror::DexCache> original_dex_cache_;
228 art::ObjPtr<art::mirror::Object> obj(self->DecodeJObject(klass));
461 art::ObjPtr<art::mirror::DexCache>::DownCast(
503 art::ObjPtr<art::mirror::ClassExt> ext(GetMirrorClass()->GetExtData())
    [all...]
ti_class_definition.cc 68 art::ObjPtr<art::mirror::Class> m_klass(soa.Decode<art::mirror::Class>(klass));
110 art::ObjPtr<art::mirror::Class> prim_long_class(
  /art/runtime/gc/collector/
mark_compact.cc 427 void operator()(ObjPtr<mirror::Class> /*klass*/, mirror::Reference* ref) const
558 void MarkCompact::DelayReferenceReferent(ObjPtr<mirror::Class> klass,
559 ObjPtr<mirror::Reference> reference) {
567 void operator()(ObjPtr<mirror::Object> obj,
575 void operator()(ObjPtr<mirror::Class> klass,
576 ObjPtr<mirror::Reference> ref) const
mark_compact.h 124 void DelayReferenceReferent(ObjPtr<mirror::Class> klass, ObjPtr<mirror::Reference> reference)
semi_space.h 159 void DelayReferenceReferent(ObjPtr<mirror::Class> klass, ObjPtr<mirror::Reference> reference)
concurrent_copying.cc 467 void operator()(ObjPtr<mirror::Object> obj, MemberOffset offset, bool /* is_static */)
474 void operator()(ObjPtr<mirror::Class> klass, ObjPtr<mirror::Reference> ref) const
499 void CheckReference(ObjPtr<mirror::Object> ref,
500 ObjPtr<mirror::Object> holder,
542 VerifyNoMissingCardMarkVisitor(ConcurrentCopying* cc, ObjPtr<mirror::Object> holder)
546 void operator()(ObjPtr<mirror::Object> obj,
555 void operator()(ObjPtr<mirror::Class> klass,
556 ObjPtr<mirror::Reference> ref) const
583 ObjPtr<mirror::Object> const holder_
    [all...]
  /art/runtime/jdwp/
object_registry.cc 45 JDWP::RefTypeId ObjectRegistry::AddRefType(ObjPtr<mirror::Class> c) {
53 JDWP::ObjectId ObjectRegistry::Add(ObjPtr<mirror::Object> o) {
129 ObjPtr<mirror::Object> o,
  /art/compiler/driver/
compiler_driver.h 206 bool CanAccessTypeWithoutChecks(ObjPtr<mirror::Class> referrer_class,
207 ObjPtr<mirror::Class> resolved_class)
212 bool CanAccessInstantiableTypeWithoutChecks(ObjPtr<mirror::Class> referrer_class,
213 ObjPtr<mirror::Class> resolved_class,
  /art/compiler/optimizing/
reference_type_propagation.h 68 MutableHandle<T> NewHandle(ObjPtr<T> object) REQUIRES_SHARED(Locks::mutator_lock_) {
  /art/runtime/entrypoints/quick/
quick_dexcache_entrypoints.cc 42 ObjPtr<mirror::ClassLoader> class_loader = outer_method->GetClassLoader();
  /art/runtime/mirror/
method_handle_impl.h 82 ALWAYS_INLINE ObjPtr<mirror::Class> GetTargetClass() REQUIRES_SHARED(Locks::mutator_lock_);
  /art/runtime/gc/
verification.cc 83 void Verification::LogHeapCorruption(ObjPtr<mirror::Object> holder,
213 std::string Verification::FirstPathFromRootSet(ObjPtr<mirror::Object> target) const {
  /art/runtime/interpreter/
interpreter.cc 39 ALWAYS_INLINE static ObjPtr<mirror::Object> ObjArg(uint32_t arg)
41 return ObjPtr<mirror::Object>(reinterpret_cast<mirror::Object*>(arg));
47 ObjPtr<mirror::Object> receiver,
364 ObjPtr<mirror::Object> receiver,
421 ObjPtr<mirror::Object> o =
559 ObjPtr<mirror::Class> klass = class_linker->ResolveType(
617 ObjPtr<mirror::Class> declaring_class = method->GetDeclaringClass();
637 ObjPtr<mirror::Object> receiver = is_static ? nullptr : shadow_frame->GetVRegReference(0);
  /art/runtime/native/
java_lang_Thread.cc 114 ObjPtr<mirror::Object> object = soa.Decode<mirror::Object>(java_object);
181 ObjPtr<mirror::Object> lock = soa.Decode<mirror::Object>(java_lock);
  /external/clang/lib/StaticAnalyzer/Checkers/
DynamicTypeChecker.cpp 154 static bool hasDefinition(const ObjCObjectPointerType *ObjPtr) {
155 const ObjCInterfaceDecl *Decl = ObjPtr->getInterfaceDecl();
  /art/runtime/verifier/
verifier_deps.cc 93 ObjPtr<mirror::Class> klass) {
95 ObjPtr<mirror::DexCache> dex_cache = klass->GetDexCache();
118 ObjPtr<mirror::Class> klass)
254 bool VerifierDeps::IsInClassPath(ObjPtr<mirror::Class> klass) const {
267 ObjPtr<mirror::DexCache> dex_cache = klass->GetDexCache();
348 std::vector<ObjPtr<mirror::Class>> boundaries;
353 ObjPtr<mirror::Class> direct = mirror::Class::GetDirectInterface(thread, current, i);
368 ObjPtr<mirror::IfTable> iftable = source->GetIfTable();
373 ObjPtr<mirror::Class> direct = mirror::Class::GetDirectInterface(thread, itf, j);
384 for (const ObjPtr<mirror::Class>& boundary : boundaries)
    [all...]

Completed in 1821 milliseconds

1 2 3 4 5 67 8 91011