Home | History | Annotate | Download | only in display

Lines Matching refs:deviceInfo

193         DisplayDeviceInfo deviceInfo = mPrimaryDisplayDevice.getDisplayDeviceInfoLocked();
194 if (!Objects.equal(mPrimaryDisplayDeviceInfo, deviceInfo)) {
197 if ((deviceInfo.flags & DisplayDeviceInfo.FLAG_SUPPORTS_PROTECTED_BUFFERS) != 0) {
200 if ((deviceInfo.flags & DisplayDeviceInfo.FLAG_SECURE) != 0) {
203 if ((deviceInfo.flags & DisplayDeviceInfo.FLAG_PRIVATE) != 0) {
206 if ((deviceInfo.flags & DisplayDeviceInfo.FLAG_PRESENTATION) != 0) {
209 mBaseDisplayInfo.type = deviceInfo.type;
210 mBaseDisplayInfo.address = deviceInfo.address;
211 mBaseDisplayInfo.name = deviceInfo.name;
212 mBaseDisplayInfo.uniqueId = deviceInfo.uniqueId;
213 mBaseDisplayInfo.appWidth = deviceInfo.width;
214 mBaseDisplayInfo.appHeight = deviceInfo.height;
215 mBaseDisplayInfo.logicalWidth = deviceInfo.width;
216 mBaseDisplayInfo.logicalHeight = deviceInfo.height;
218 mBaseDisplayInfo.refreshRate = deviceInfo.refreshRate;
220 deviceInfo.supportedRefreshRates, deviceInfo.supportedRefreshRates.length);
221 mBaseDisplayInfo.logicalDensityDpi = deviceInfo.densityDpi;
222 mBaseDisplayInfo.physicalXDpi = deviceInfo.xDpi;
223 mBaseDisplayInfo.physicalYDpi = deviceInfo.yDpi;
224 mBaseDisplayInfo.appVsyncOffsetNanos = deviceInfo.appVsyncOffsetNanos;
225 mBaseDisplayInfo.presentationDeadlineNanos = deviceInfo.presentationDeadlineNanos;
226 mBaseDisplayInfo.state = deviceInfo.state;
227 mBaseDisplayInfo.smallestNominalAppWidth = deviceInfo.width;
228 mBaseDisplayInfo.smallestNominalAppHeight = deviceInfo.height;
229 mBaseDisplayInfo.largestNominalAppWidth = deviceInfo.width;
230 mBaseDisplayInfo.largestNominalAppHeight = deviceInfo.height;
231 mBaseDisplayInfo.ownerUid = deviceInfo.ownerUid;
232 mBaseDisplayInfo.ownerPackageName = deviceInfo.ownerPackageName;
234 mPrimaryDisplayDeviceInfo = deviceInfo;