/aosp14/frameworks/base/services/tests/displayservicetests/src/com/android/server/display/mode/ |
H A D | DisplayModeDirectorTest.java | 214 assertThat(modeSpecs.primary.physical.min).isEqualTo(0f); in testDisplayModeVoting() 218 assertThat(modeSpecs.appRequest.physical.min).isEqualTo(0f); in testDisplayModeVoting() 241 assertThat(modeSpecs.primary.physical.min) in testDisplayModeVoting() 243 assertThat(modeSpecs.primary.physical.max) in testDisplayModeVoting() 249 assertThat(modeSpecs.appRequest.physical.min) in testDisplayModeVoting() 251 assertThat(modeSpecs.appRequest.physical.max) in testDisplayModeVoting() 352 assertThat(desiredSpecs.primary.physical.max) in testFlickerHasLowerPriorityThanUserAndRangeIsSingle() 367 assertThat(desiredSpecs.primary.physical.max) in testFlickerHasLowerPriorityThanUserAndRangeIsSingle() 382 assertThat(desiredSpecs.primary.physical.max) in testFlickerHasLowerPriorityThanUserAndRangeIsSingle() 397 assertThat(desiredSpecs.primary.physical.max) in testFlickerHasLowerPriorityThanUserAndRangeIsSingle() [all …]
|
/aosp14/frameworks/base/services/tests/displayservicetests/src/com/android/server/display/ |
H A D | BrightnessMappingStrategyTest.java | 222 BrightnessMappingStrategy physical = BrightnessMappingStrategy.create(res, ddc, mMockDwbc); in testPhysicalStrategyMappingAtControlPoints() local 223 assertNotNull("BrightnessMappingStrategy should not be null", physical); in testPhysicalStrategyMappingAtControlPoints() 230 physical.getBrightness(LUX_LEVELS[i]), in testPhysicalStrategyMappingAtControlPoints() 240 BrightnessMappingStrategy physical = BrightnessMappingStrategy.create(res, ddc, mMockDwbc); in testPhysicalStrategyMappingBetweenControlPoints() local 241 assertNotNull("BrightnessMappingStrategy should not be null", physical); in testPhysicalStrategyMappingBetweenControlPoints() 246 final float brightness = physical.getBrightness(lux); in testPhysicalStrategyMappingBetweenControlPoints() 395 assertNull(physical); in testPhysicalStrategyRequiresNitsMapping() 398 physical = BrightnessMappingStrategy.create(res, ddc, mMockDwbc); in testPhysicalStrategyRequiresNitsMapping() 399 assertNull(physical); in testPhysicalStrategyRequiresNitsMapping() 402 physical = BrightnessMappingStrategy.create(res, ddc, mMockDwbc); in testPhysicalStrategyRequiresNitsMapping() [all …]
|
H A D | LocalDisplayAdapterTest.java | 1083 final DisplayAddress.Physical physical = (DisplayAddress.Physical) info.address; in assertDisplayDpi() local 1084 assertNotNull(physical); in assertDisplayDpi() 1085 assertEquals(expectedPort, physical.getPort()); in assertDisplayDpi()
|
/aosp14/frameworks/base/services/core/java/com/android/server/display/mode/ |
H A D | VotesStorage.java | 156 } else if (vote.refreshRateRanges.physical.max == Float.POSITIVE_INFINITY) { in getMaxPhysicalRefreshRate() 159 return (int) vote.refreshRateRanges.physical.max; in getMaxPhysicalRefreshRate()
|
H A D | DisplayModeDirector.java | 283 final float minPhysicalRefreshRate = Math.max(vote.refreshRateRanges.physical.min, in summarizeVotes() 288 vote.refreshRateRanges.physical.max); in summarizeVotes() 293 vote.refreshRateRanges.physical.max); in summarizeVotes() 1061 primary.physical.min = other.primary.physical.min; in copyFrom() 1062 primary.physical.max = other.primary.physical.max; in copyFrom() 1066 appRequest.physical.min = other.appRequest.physical.min; in copyFrom() 1067 appRequest.physical.max = other.appRequest.physical.max; in copyFrom()
|
/aosp14/frameworks/base/cmds/incident_helper/testdata/ |
H A D | procrank.txt | 7 ZRAM: 6828K physical used for 31076K in swap (524284K total swap)
|
/aosp14/frameworks/base/core/java/android/view/ |
H A D | SurfaceControl.java | 1987 public final RefreshRateRange physical; field in SurfaceControl.RefreshRateRanges 1995 physical = new RefreshRateRange(); in RefreshRateRanges() 1999 public RefreshRateRanges(RefreshRateRange physical, RefreshRateRange render) { in RefreshRateRanges() argument 2000 this.physical = new RefreshRateRange(physical.min, physical.max); in RefreshRateRanges() 2018 return physical.equals(rates.physical) && render.equals( in equals() 2024 return Objects.hash(physical, render); in hashCode() 2029 return "physical: " + physical + " render: " + render; in toString() 2036 this.physical.copyFrom(other.physical); in copyFrom() 2090 new RefreshRateRanges(primaryRanges.physical, primaryRanges.render); in DesiredDisplayModeSpecs() 2092 new RefreshRateRanges(appRequestRanges.physical, appRequestRanges.render); in DesiredDisplayModeSpecs()
|
/aosp14/frameworks/base/services/core/java/com/android/server/hdmi/ |
H A D | HdmiCecLocalDevice.java | 91 public ActiveSource(int logical, int physical) { in ActiveSource() argument 93 physicalAddress = physical; in ActiveSource() 100 public static ActiveSource of(int logical, int physical) { in of() argument 101 return new ActiveSource(logical, physical); in of() 113 public boolean equals(int logical, int physical) { in equals() argument 114 return logicalAddress == logical && physicalAddress == physical; in equals()
|
/aosp14/system/core/fs_mgr/ |
H A D | README.overlayfs.md | 103 Since landing a filesystem on the alternate super physical device 104 without differentiating if it is setup to support logical or physical,
|
/aosp14/frameworks/base/core/proto/android/os/ |
H A D | ps.proto | 47 // Resident set size. How many physical pages are associated with the
|
/aosp14/frameworks/base/proto/src/ |
H A D | ipconnectivity.proto | 9 // NetworkId represents the id given by the system to a physical network on the 22 // LinkLayer describes a physical link layer technology used by a network. 551 // Represents the id given by the system to a physical network on the device.
|
/aosp14/frameworks/base/core/proto/android/server/ |
H A D | powerstatsservice.proto | 179 * ordinal should be give their physical order. No other meaning is
|
/aosp14/frameworks/base/core/jni/ |
H A D | android_view_SurfaceControl.cpp | 203 jfieldID physical; member 1320 ranges.physical = makeRange(env->GetObjectField(obj, gRefreshRateRangesClassInfo.physical)); in nativeSetDesiredDisplayModeSpecs() 1355 rangeToJava(ranges.physical), rangeToJava(ranges.render)); in nativeGetDesiredDisplayModeSpecs() 2475 gRefreshRateRangesClassInfo.physical = in register_android_view_SurfaceControl()
|
/aosp14/system/core/fastboot/ |
H A D | README.md | 230 Otherwise the partition is physical.
|
/aosp14/system/core/init/ |
H A D | README.md | 299 of the device's physical memory (only if memcg is mounted).
|