Lines Matching refs:mBootFlagValue
28 private String mBootFlagValue; field in AconfigdFlagInfo
43 mBootFlagValue = builder.mBootFlagValue; in AconfigdFlagInfo()
44 if (mBootFlagValue == null) { in AconfigdFlagInfo()
71 return mBootFlagValue; in getBootFlagValue()
109 mBootFlagValue = mDefaultFlagValue == null ? mBootFlagValue : mDefaultFlagValue; in updateBootFlagValue()
111 mBootFlagValue = mServerFlagValue == null ? mBootFlagValue : mServerFlagValue; in updateBootFlagValue()
112 mBootFlagValue = mLocalFlagValue == null ? mBootFlagValue : mLocalFlagValue; in updateBootFlagValue()
129 && Objects.equals(mBootFlagValue, other.mBootFlagValue) in equals()
143 mBootFlagValue, in hashCode()
159 mBootFlagValue, in dump()
176 if (!Objects.equals(mBootFlagValue, other.mBootFlagValue)) { in dumpDiff()
179 "bootFlagValue: %s -> %s\n", mBootFlagValue, other.mBootFlagValue)); in dumpDiff()
228 private String mBootFlagValue; field in AconfigdFlagInfo.Builder
255 mBootFlagValue = nullOrEmpty(bootFlagValue) ? null : bootFlagValue; in setBootFlagValue()