IBatteryStats.aidl revision 32dbefda71c50bf848da21fb5d1255273439f90d
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 noteAirplaneMode(boolean isAirplaneMode);
41    void noteWifiOn(int uid);
42    void noteWifiOff(int uid);
43    void noteWifiRunning();
44    void noteWifiStopped();
45    void noteBluetoothOn();
46    void noteBluetoothOff();
47    void noteFullWifiLockAcquired(int uid);
48    void noteFullWifiLockReleased(int uid);
49    void noteScanWifiLockAcquired(int uid);
50    void noteScanWifiLockReleased(int uid);
51    void noteWifiMulticastEnabled(int uid);
52    void noteWifiMulticastDisabled(int uid);
53    void setOnBattery(boolean onBattery, int level);
54    void recordCurrentLevel(int level);
55    long getAwakeTimeBattery();
56    long getAwakeTimePlugged();
57}
58