IBatteryStats.aidl revision e9b06d754af03faf27012fbed1e7559ec1ba7c79
1/*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.internal.app;
18
19import com.android.internal.os.BatteryStatsImpl;
20
21import android.telephony.SignalStrength;
22
23interface IBatteryStats {
24    byte[] getStatistics();
25    void noteStartWakelock(int uid, String name, int type);
26    void noteStopWakelock(int uid, String name, int type);
27    void noteStartSensor(int uid, int sensor);
28    void noteStopSensor(int uid, int sensor);
29    void noteStartGps(int uid);
30    void noteStopGps(int uid);
31    void noteScreenOn();
32    void noteScreenBrightness(int brightness);
33    void noteScreenOff();
34    void noteInputEvent();
35    void noteUserActivity(int uid, int event);
36    void notePhoneOn();
37    void notePhoneOff();
38    void notePhoneSignalStrength(in SignalStrength signalStrength);
39    void notePhoneDataConnectionState(int dataType, boolean hasData);
40    void noteWifiOn(int uid);
41    void noteWifiOff(int uid);
42    void noteWifiRunning();
43    void noteWifiStopped();
44    void noteBluetoothOn();
45    void noteBluetoothOff();
46    void noteFullWifiLockAcquired(int uid);
47    void noteFullWifiLockReleased(int uid);
48    void noteScanWifiLockAcquired(int uid);
49    void noteScanWifiLockReleased(int uid);
50    void noteWifiMulticastEnabled(int uid);
51    void noteWifiMulticastDisabled(int uid);
52    void setOnBattery(boolean onBattery, int level);
53    void recordCurrentLevel(int level);
54    long getAwakeTimeBattery();
55    long getAwakeTimePlugged();
56}
57