Home
last modified time | relevance | path

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

/art/runtime/entrypoints/
Dentrypoint_utils.h120 size_t expected_size)
136 size_t expected_size)
Dentrypoint_utils-inl.h317 size_t expected_size) { in FindFieldFromCode() argument
380 resolved_field->FieldSize() != expected_size)) { in FindFieldFromCode()
383 expected_size * (32 / sizeof(int32_t)), in FindFieldFromCode()
414 Thread* self, size_t expected_size) \
604 size_t expected_size) { in FindFieldFast() argument
648 resolved_field->FieldSize() != expected_size)) { in FindFieldFast()
/art/libdexfile/dex/
Ddex_file_verifier.cc364 uint32_t expected_size = header_->file_size_; in CheckHeader() local
365 if (size_ != expected_size) { in CheckHeader()
366 ErrorStringPrintf("Bad file size (%zd, expected %u)", size_, expected_size); in CheckHeader()
1796 uint32_t expected_size; in CheckIntraIdSection() local
1802 expected_size = header_->string_ids_size_; in CheckIntraIdSection()
1806 expected_size = header_->type_ids_size_; in CheckIntraIdSection()
1810 expected_size = header_->proto_ids_size_; in CheckIntraIdSection()
1814 expected_size = header_->field_ids_size_; in CheckIntraIdSection()
1818 expected_size = header_->method_ids_size_; in CheckIntraIdSection()
1822 expected_size = header_->class_defs_size_; in CheckIntraIdSection()
[all …]
/art/runtime/
Dclass_loader_context_test.cc41 void VerifyContextSize(ClassLoaderContext* context, size_t expected_size) { in VerifyContextSize() argument
43 ASSERT_EQ(expected_size, context->class_loader_chain_.size()); in VerifyContextSize()
Dclass_linker_test.cc484 size_t expected_size = RoundUp(is_static ? klass->GetClassSize() : klass->GetObjectSize(), in Check() local
486 if (sizeof(T) != expected_size) { in Check()
489 << " Java=" << expected_size in Check()