IBatteryStats.aidl revision a1f1a3c573acd91024fda0ceb3b921c73b186963
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.os.WorkSource;
22import android.telephony.SignalStrength;
23
24interface IBatteryStats {
25    // These first methods are also called by native code, so must
26    // be kept in sync with frameworks/native/include/binder/IBatteryStats.h
27    void noteStartSensor(int uid, int sensor);
28    void noteStopSensor(int uid, int sensor);
29
30    // Remaining methods are only used in Java.
31    byte[] getStatistics();
32
33    void addIsolatedUid(int isolatedUid, int appUid);
34    void removeIsolatedUid(int isolatedUid, int appUid);
35
36    void noteEvent(int code, String name, int uid);
37
38    void noteStartWakelock(int uid, int pid, String name, String historyName,
39            int type, boolean unimportantForLogging);
40    void noteStopWakelock(int uid, int pid, String name, int type);
41
42    void noteStartWakelockFromSource(in WorkSource ws, int pid, String name, String historyName,
43            int type, boolean unimportantForLogging);
44    void noteStopWakelockFromSource(in WorkSource ws, int pid, String name, int type);
45
46    void noteVibratorOn(int uid, long durationMillis);
47    void noteVibratorOff(int uid);
48    void noteStartGps(int uid);
49    void noteStopGps(int uid);
50    void noteScreenOn();
51    void noteScreenBrightness(int brightness);
52    void noteScreenOff();
53    void noteInputEvent();
54    void noteUserActivity(int uid, int event);
55    void noteDataConnectionActive(String label, boolean active);
56    void notePhoneOn();
57    void notePhoneOff();
58    void notePhoneSignalStrength(in SignalStrength signalStrength);
59    void notePhoneDataConnectionState(int dataType, boolean hasData);
60    void notePhoneState(int phoneState);
61    void noteWifiOn();
62    void noteWifiOff();
63    void noteWifiRunning(in WorkSource ws);
64    void noteWifiRunningChanged(in WorkSource oldWs, in WorkSource newWs);
65    void noteWifiStopped(in WorkSource ws);
66    void noteWifiState(int wifiState, String accessPoint);
67    void noteBluetoothOn();
68    void noteBluetoothOff();
69    void noteBluetoothState(int bluetoothState);
70    void noteFullWifiLockAcquired(int uid);
71    void noteFullWifiLockReleased(int uid);
72    void noteWifiScanStarted(int uid);
73    void noteWifiScanStopped(int uid);
74    void noteWifiMulticastEnabled(int uid);
75    void noteWifiMulticastDisabled(int uid);
76    void noteFullWifiLockAcquiredFromSource(in WorkSource ws);
77    void noteFullWifiLockReleasedFromSource(in WorkSource ws);
78    void noteWifiScanStartedFromSource(in WorkSource ws);
79    void noteWifiScanStoppedFromSource(in WorkSource ws);
80    void noteWifiBatchedScanStartedFromSource(in WorkSource ws, int csph);
81    void noteWifiBatchedScanStoppedFromSource(in WorkSource ws);
82    void noteWifiMulticastEnabledFromSource(in WorkSource ws);
83    void noteWifiMulticastDisabledFromSource(in WorkSource ws);
84    void noteNetworkInterfaceType(String iface, int type);
85    void noteNetworkStatsEnabled();
86    void setBatteryState(int status, int health, int plugType, int level, int temp, int volt);
87    long getAwakeTimeBattery();
88    long getAwakeTimePlugged();
89}
90