Searched defs:new_sfields (Results 1 - 1 of 1) sorted by relevance

/art/runtime/mirror/
H A Dclass-inl.h600 inline void Class::SetSFieldsPtr(LengthPrefixedArray<ArtField>* new_sfields) { argument
601 DCHECK((IsRetired() && new_sfields == nullptr) ||
603 SetFieldPtr<false>(OFFSET_OF_OBJECT_MEMBER(Class, sfields_), new_sfields); local
606 inline void Class::SetSFieldsPtrUnchecked(LengthPrefixedArray<ArtField>* new_sfields) { argument
607 SetFieldPtr<false, true, kVerifyNone>(OFFSET_OF_OBJECT_MEMBER(Class, sfields_), new_sfields); local
1071 LengthPrefixedArray<ArtField>* const new_sfields = visitor(sfields); local
1072 if (sfields != new_sfields) {
1073 dest->SetSFieldsPtrUnchecked(new_sfields);

Completed in 79 milliseconds