blob: 8e0a9a2b74fd92c15658f978de7362424a143b64 [file]
/*
* Copyright (C) 2020 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package android.system.suspend.internal;
import android.system.suspend.internal.SuspendInfo;
import android.system.suspend.internal.WakeLockInfo;
import android.system.suspend.internal.WakeupInfo;
/**
* Interface exposed by the suspend hal that allows framework to toggle the suspend loop and
* monitor native wakelocks.
* @hide
*/
interface ISuspendControlServiceInternal {
/**
* Starts automatic system suspension.
*
* @param token token registering automatic system suspension.
* When all registered tokens die automatic system suspension is disabled.
* @return true on success, false otherwise.
*/
boolean enableAutosuspend(IBinder token);
/**
* Suspends the system even if there are wakelocks being held.
*/
boolean forceSuspend();
/**
* Returns a list of wake lock stats.
*/
WakeLockInfo[] getWakeLockStats();
/**
* Returns a list of wakeup stats.
*/
WakeupInfo[] getWakeupStats();
/**
* Returns stats related to suspend.
*/
SuspendInfo getSuspendStats();
}