OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:BatteryService
(Results
1 - 3
of
3
) sorted by null
/frameworks/native/services/sensorservice/
BatteryService.cpp
28
#include "
BatteryService
.h"
33
BatteryService
::
BatteryService
() {
41
status_t
BatteryService
::noteStartSensor(int uid, int handle) {
52
status_t
BatteryService
::noteStopSensor(int uid, int handle) {
63
bool
BatteryService
::addSensor(uid_t uid, int handle) {
75
bool
BatteryService
::removeSensor(uid_t uid, int handle) {
85
void
BatteryService
::enableSensorImpl(uid_t uid, int handle) {
94
void
BatteryService
::disableSensorImpl(uid_t uid, int handle) {
104
void
BatteryService
::cleanupImpl(uid_t uid)
[
all
...]
BatteryService.h
25
class
BatteryService
: public Singleton<
BatteryService
> {
30
friend class Singleton<
BatteryService
>;
33
BatteryService
();
59
BatteryService
::getInstance().enableSensorImpl(uid, handle);
62
BatteryService
::getInstance().disableSensorImpl(uid, handle);
65
BatteryService
::getInstance().cleanupImpl(uid);
/frameworks/base/services/java/com/android/server/
BatteryService.java
54
* <p>
BatteryService
monitors the charging status, and charge level of the device
83
public final class
BatteryService
extends Binder {
84
private static final String TAG =
BatteryService
.class.getSimpleName();
140
public
BatteryService
(Context context, LightsService lights) {
715
* Synchronize on
BatteryService
.
[
all
...]
Completed in 1707 milliseconds