OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BatteryProperty
(Results
1 - 16
of
16
) sorted by null
/frameworks/base/core/java/android/os/
BatteryProperty.aidl
19
parcelable
BatteryProperty
;
BatteryProperty.java
29
public class
BatteryProperty
implements Parcelable {
35
public
BatteryProperty
() {
48
* frameworks/native/services/batteryservice/
BatteryProperty
.cpp
51
private
BatteryProperty
(Parcel p) {
63
public static final Parcelable.Creator<
BatteryProperty
> CREATOR
64
= new Parcelable.Creator<
BatteryProperty
>() {
65
public
BatteryProperty
createFromParcel(Parcel p) {
66
return new
BatteryProperty
(p);
69
public
BatteryProperty
[] newArray(int size) {
70
return new
BatteryProperty
[size]
[
all
...]
IBatteryPropertiesRegistrar.aidl
20
import android.os.
BatteryProperty
;
29
int getProperty(in int id, out
BatteryProperty
prop);
BatteryManager.java
20
import android.os.
BatteryProperty
;
249
BatteryProperty
prop = new
BatteryProperty
();
/frameworks/native/services/batteryservice/
BatteryProperty.cpp
27
* frameworks/base/core/java/android/os/
BatteryProperty
.java
30
status_t
BatteryProperty
::readFromParcel(Parcel* p) {
35
status_t
BatteryProperty
::writeToParcel(Parcel* p) const {
Android.mk
6
BatteryProperty
.cpp \
IBatteryPropertiesRegistrar.cpp
48
status_t getProperty(int id, struct
BatteryProperty
*val) {
92
struct
BatteryProperty
val;
/frameworks/native/include/batteryservice/
IBatteryPropertiesRegistrar.h
38
virtual status_t getProperty(int id, struct
BatteryProperty
*val) = 0;
BatteryService.h
47
// must be kept in sync with definitions in
BatteryProperty
.java
49
BATTERY_PROP_CHARGE_COUNTER = 1, // equals
BatteryProperty
.CHARGE_COUNTER constant
50
BATTERY_PROP_CURRENT_NOW = 2, // equals
BatteryProperty
.CURRENT_NOW constant
51
BATTERY_PROP_CURRENT_AVG = 3, // equals
BatteryProperty
.CURRENT_AVG constant
52
BATTERY_PROP_CAPACITY = 4, // equals
BatteryProperty
.CAPACITY constant
53
BATTERY_PROP_ENERGY_COUNTER = 5, // equals
BatteryProperty
.ENERGY_COUNTER constant
78
struct
BatteryProperty
{
/system/core/healthd/
BatteryPropertiesRegistrar.h
42
status_t getProperty(int id, struct
BatteryProperty
*val);
BatteryPropertiesRegistrar.cpp
76
status_t BatteryPropertiesRegistrar::getProperty(int id, struct
BatteryProperty
*val) {
healthd.cpp
174
status_t healthd_get_property(int id, struct
BatteryProperty
*val) {
BatteryMonitor.cpp
374
status_t BatteryMonitor::getProperty(int id, struct
BatteryProperty
*val) {
/system/core/healthd/include/healthd/
BatteryMonitor.h
44
status_t getProperty(int id, struct
BatteryProperty
*val);
healthd.h
81
struct android::
BatteryProperty
*val);
/bootable/recovery/
recovery.cpp
[
all
...]
Completed in 567 milliseconds