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

/art/runtime/mirror/
H A Dclass-inl.h563 inline void Class::SetIFieldsPtr(LengthPrefixedArray<ArtField>* new_ifields) { argument
565 return SetFieldPtr<false>(OFFSET_OF_OBJECT_MEMBER(Class, ifields_), new_ifields);
568 inline void Class::SetIFieldsPtrUnchecked(LengthPrefixedArray<ArtField>* new_ifields) { argument
569 SetFieldPtr<false, true, kVerifyNone>(OFFSET_OF_OBJECT_MEMBER(Class, ifields_), new_ifields); local
1071 LengthPrefixedArray<ArtField>* const new_ifields = visitor(ifields); local
1072 if (ifields != new_ifields) {
1073 dest->SetIFieldsPtrUnchecked(new_ifields);

Completed in 252 milliseconds