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

/art/runtime/mirror/
H A Dclass-inl.h683 inline void Class::SetIFieldsPtr(LengthPrefixedArray<ArtField>* new_ifields) { argument
685 return SetFieldPtr<false>(OFFSET_OF_OBJECT_MEMBER(Class, ifields_), new_ifields);
688 inline void Class::SetIFieldsPtrUnchecked(LengthPrefixedArray<ArtField>* new_ifields) { argument
689 SetFieldPtr<false, true, kVerifyNone>(OFFSET_OF_OBJECT_MEMBER(Class, ifields_), new_ifields); local
1116 LengthPrefixedArray<ArtField>* const new_ifields = visitor(ifields); local
1117 if (ifields != new_ifields) {
1118 dest->SetIFieldsPtrUnchecked(new_ifields);

Completed in 54 milliseconds