Home
last modified time | relevance | path

Searched refs:mSupportedHdrTypes (Results 1 – 3 of 3) sorted by relevance

/frameworks/native/libs/ui/
DHdrCapabilities.cpp36 mSupportedHdrTypes.size() * sizeof(int32_t); in getFlattenedSize()
49 buf[3] = static_cast<int32_t>(mSupportedHdrTypes.size()); in flatten()
50 for (size_t i = 0, c = mSupportedHdrTypes.size(); i < c; ++i) { in flatten()
51 buf[4 + i] = mSupportedHdrTypes[i]; in flatten()
79 mSupportedHdrTypes.reserve(itemCount); in unflatten()
81 mSupportedHdrTypes[i] = buf[4 + i]; in unflatten()
/frameworks/native/include/ui/
DHdrCapabilities.h33 : mSupportedHdrTypes(types), in HdrCapabilities()
43 : mSupportedHdrTypes(), in HdrCapabilities()
51 return mSupportedHdrTypes; in getSupportedHdrTypes()
64 std::vector<int32_t /*android_hdr_t*/> mSupportedHdrTypes;
/frameworks/base/core/java/android/view/
DDisplay.java1301 private @HdrType int[] mSupportedHdrTypes = new int[0]; field in Display.HdrCapabilities
1317 mSupportedHdrTypes = supportedHdrTypes; in HdrCapabilities()
1328 return mSupportedHdrTypes; in getSupportedHdrTypes()
1360 return Arrays.equals(mSupportedHdrTypes, that.mSupportedHdrTypes) in equals()
1369 hash = hash * 17 + Arrays.hashCode(mSupportedHdrTypes); in hashCode()
1397 mSupportedHdrTypes = new int[types]; in readFromParcel()
1399 mSupportedHdrTypes[i] = source.readInt(); in readFromParcel()
1408 dest.writeInt(mSupportedHdrTypes.length); in writeToParcel()
1409 for (int i = 0; i < mSupportedHdrTypes.length; ++i) { in writeToParcel()
1410 dest.writeInt(mSupportedHdrTypes[i]); in writeToParcel()