HomeSort by relevance Sort by last modified time
    Searched refs:batteryPresent (Results 1 - 8 of 8) sorted by null

  /frameworks/base/core/java/android/os/
BatteryProperties.java 29 public boolean batteryPresent;
48 batteryPresent = other.batteryPresent;
70 batteryPresent = p.readInt() == 1 ? true : false;
87 p.writeInt(batteryPresent ? 1 : 0);
  /frameworks/native/services/batteryservice/
BatteryProperties.cpp 40 batteryPresent = p->readInt32() == 1 ? true : false;
58 p->writeInt32(batteryPresent ? 1 : 0);
  /frameworks/native/services/batteryservice/include/batteryservice/
BatteryService.h 48 bool batteryPresent;
  /hardware/interfaces/health/1.0/
types.hal 188 bool batteryPresent;
  /hardware/interfaces/health/1.0/default/
convert.cpp 113 info.batteryPresent = p->batteryPresent;
133 p->batteryPresent = info.batteryPresent;
  /frameworks/base/services/core/java/com/android/server/
BatteryService.java 357 + ", batteryPresent=" + mBatteryProps.batteryPresent
383 mBatteryProps.batteryPresent != mLastBatteryPresent ||
415 mBatteryProps.batteryPresent != mLastBatteryPresent ||
418 mBatteryProps.batteryStatus, mBatteryProps.batteryHealth, mBatteryProps.batteryPresent ? 1 : 0,
522 mLastBatteryPresent = mBatteryProps.batteryPresent;
546 intent.putExtra(BatteryManager.EXTRA_PRESENT, mBatteryProps.batteryPresent);
562 ", present:" + mBatteryProps.batteryPresent +
    [all...]
  /system/core/healthd/
BatteryMonitor.cpp 73 props->batteryPresent = false;
201 props.batteryPresent = getBooleanField(mHealthdConfig->batteryPresentPath);
203 props.batteryPresent = mBatteryDevicePresent;
230 props.batteryPresent = true;
300 if (props.batteryPresent) {
433 props.batteryStatus, props.batteryHealth, props.batteryPresent);
  /packages/apps/Settings/src/com/android/settings/
SettingsActivity.java 173 boolean batteryPresent = Utils.isBatteryPresent(intent);
175 if (mBatteryPresent != batteryPresent) {
176 mBatteryPresent = batteryPresent;
    [all...]

Completed in 1364 milliseconds