Home
last modified time | relevance | path

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

/art/runtime/openjdkjvmti/
Dti_object.h42 static jvmtiError GetObjectSize(jvmtiEnv* env, jobject object, jlong* size_ptr);
Dti_object.cc41 jvmtiError ObjectUtil::GetObjectSize(jvmtiEnv* env ATTRIBUTE_UNUSED, in GetObjectSize() function in openjdkjvmti::ObjectUtil
DOpenjdkJvmTi.cc820 static jvmtiError GetObjectSize(jvmtiEnv* env, jobject object, jlong* size_ptr) { in GetObjectSize() function in openjdkjvmti::JvmtiFunctions
822 return ObjectUtil::GetObjectSize(env, object, size_ptr); in GetObjectSize()
1900 JvmtiFunctions::GetObjectSize,
/art/test/920-objects/
Dobjects.cc34 jvmtiError result = jvmti_env->GetObjectSize(object, &size); in Java_art_Test920_getObjectSize()
/art/runtime/entrypoints/quick/
Dquick_alloc_entrypoints.cc44 size_t byte_count = klass->GetObjectSize(); in artAllocObjectFromCode()
/art/runtime/mirror/
Dclass-inl.h44 inline uint32_t Class::GetObjectSize() { in GetObjectSize() function
600 ? MemberOffset(RoundUp(super_class->GetObjectSize<kVerifyFlags, kReadBarrierOption>(), in GetFirstReferenceInstanceFieldOffset()
Dobject-inl.h389 template GetObjectSize<kNewFlags, kReadBarrierOption>(); in SizeOf()
Dclass.cc166 h_this->SetObjectSizeAllocFastPath(RoundUp(h_this->GetObjectSize(), kObjectAlignment)); in SetStatus()
Dclass.h601 uint32_t GetObjectSize() REQUIRES_SHARED(Locks::mutator_lock_);
/art/runtime/openjdkjvmti/include/
Djvmti.h1774 jvmtiError (JNICALL *GetObjectSize) (jvmtiEnv* env,
2238 jvmtiError GetObjectSize(jobject object, in GetObjectSize() function
2240 return functions->GetObjectSize(this, object, size_ptr); in GetObjectSize()
/art/compiler/debug/
Delf_debug_info_writer.h329 info_.WriteUdata(DW_AT_byte_size, type->GetObjectSize()); in Write()
/art/runtime/
Dclass_linker.cc442 java_lang_Object->GetObjectSize(), in InitWithoutImage()
591 CHECK_EQ(java_lang_Object->GetObjectSize(), mirror::Object::InstanceSize()); in InitWithoutImage()
596 CHECK_EQ(java_lang_DexCache->GetObjectSize(), mirror::DexCache::InstanceSize()); in InitWithoutImage()
599 CHECK_EQ(dalvik_system_ClassExt->GetObjectSize(), mirror::ClassExt::InstanceSize()); in InitWithoutImage()
723 CHECK_EQ(java_lang_ref_Reference->GetObjectSize(), mirror::Reference::InstanceSize()); in InitWithoutImage()
742 CHECK_EQ(class_root->GetObjectSize(), mirror::ClassLoader::InstanceSize()); in InitWithoutImage()
969 self, java_lang_Object, java_lang_Object->GetObjectSize(), VoidFunctor())); in InitFromBootImage()
7635 field_offset = MemberOffset(super_class->GetObjectSize()); in LinkFields()
7746 size_t previous_size = klass->GetObjectSize(); in LinkFields()
7816 uint32_t start_offset = RoundUp(super_class->GetObjectSize(), in CreateReferenceInstanceOffsets()
Dclass_linker_test.cc496 size_t expected_size = RoundUp(is_static ? klass->GetClassSize() : klass->GetObjectSize(), in Check()
/art/runtime/hprof/
Dhprof.cc1220 __ AddU4(klass->GetObjectSize()); // instance size in DumpHeapClass()
/art/runtime/gc/
Dheap.cc3994 (c->IsVariableSize() || c->GetObjectSize() == byte_count)) in CheckPreconditionsForAllocObject()
3999 << " ObjectSize=" << c->GetObjectSize() in CheckPreconditionsForAllocObject()
/art/runtime/gc/collector/
Dconcurrent_copying.cc2086 CHECK_EQ(byte_size, (java_lang_Object_->GetObjectSize<kVerifyNone, kWithoutReadBarrier>())); in FillWithDummyObject()