Home
last modified time | relevance | path

Searched refs:standby (Results 1 – 13 of 13) sorted by relevance

/aosp14/frameworks/base/core/proto/android/server/
H A Djobscheduler.proto211 // How often we recalculate runnability based on apps' standby bucket
216 // Mapping: standby bucket -> number of heartbeats between each sweep of
245 // How much time each app will have to run jobs within their standby bucket window.
250 // The quota window size of the particular standby bucket. Apps in this standby bucket are
254 // The quota window size of the particular standby bucket. Apps in this standby bucket are
258 // The quota window size of the particular standby bucket. Apps in this standby bucket are
262 // The quota window size of the particular standby bucket. Apps in this standby bucket are
266 // The quota window size of the particular standby bucket. Apps in this standby bucket are
272 // The maximum number of jobs an app can run within this particular standby bucket's
275 // The maximum number of jobs an app can run within this particular standby bucket's
[all …]
H A Dappstatetracker.proto32 // True if the forced app standby feature is enabled in settings.
35 // Whether all apps are forced standby or not.
65 // Whether force app standby for small battery device setting is enabled
H A Dpowermanagerservice.proto469 // Set of app ids that are exempt form low power standby
/aosp14/frameworks/base/core/java/android/service/vr/
H A DIVrManager.aidl114 void setStandbyEnabled(boolean standby); in setStandbyEnabled() argument
/aosp14/frameworks/base/core/java/android/app/
H A DVrManager.java211 public void setStandbyEnabled(boolean standby) { in setStandbyEnabled() argument
213 mService.setStandbyEnabled(standby); in setStandbyEnabled()
/aosp14/frameworks/base/services/core/java/com/android/server/content/
H A DSyncManager.md3 ## App-standby and Sync Manager
28 exempted from app-standby throttling.
97 triggered, which elevates the standby bucket of the associated sync adapters' packages to `ACTIVE`
103 the `ACTIVE` bucket, which greatly relaxes app-standby throttling. But they're still subject
/aosp14/frameworks/base/services/core/java/com/android/server/hdmi/
H A DHdmiCecLocalDevicePlayback.java230 mService.standby(); in run()
374 mService.standby(); in onActiveSourceLost()
H A DHdmiCecLocalDeviceSource.java167 mService.standby(); in toggleAndFollowTvPower()
H A DHdmiCecLocalDevice.java729 mService.standby(); in handleStandby()
741 mService.standby(); in handleUserControlPressed()
H A DHdmiControlService.java3583 void standby() { in standby() method in HdmiControlService
/aosp14/frameworks/base/services/core/java/com/android/server/vr/
H A DVrManagerService.java296 private void setStandbyEnabled(boolean standby) { in setStandbyEnabled() argument
302 mStandby = standby; in setStandbyEnabled()
621 public void setStandbyEnabled(boolean standby) {
623 VrManagerService.this.setStandbyEnabled(standby);
/aosp14/frameworks/base/services/tests/servicestests/src/com/android/server/hdmi/
H A DHdmiCecLocalDeviceTvTest.java465 HdmiCecMessage standby = HdmiCecMessageBuilder.buildStandby(ADDR_TV, ADDR_BROADCAST); in tvSendStandbyOnSleep_Enabled() local
466 assertThat(mNativeWrapper.getResultMessages()).contains(standby); in tvSendStandbyOnSleep_Enabled()
477 HdmiCecMessage standby = HdmiCecMessageBuilder.buildStandby(ADDR_TV, ADDR_BROADCAST); in tvSendStandbyOnSleep_Disabled() local
478 assertThat(mNativeWrapper.getResultMessages()).doesNotContain(standby); in tvSendStandbyOnSleep_Disabled()
H A DHdmiCecLocalDeviceTest.java164 void standby() { in SetUp()