Searched defs:chargeLastFull (Results 1 - 1 of 1) sorted by relevance

/illumos-gate/usr/src/cmd/hal/hald/
H A Dutil_pm.c85 * @param chargeLastFull The last "full" charge of the battery (typically mWh)
91 int chargeLastFull)
100 if (chargeLastFull > 0)
101 percentage = ((double) chargeLevel / (double) chargeLastFull) * 100;
103 HAL_WARNING (("chargeLastFull %i, percentage returning -1!", chargeLastFull));
126 * @param chargeLastFull The last "full" charge of the battery (typically mWh)
136 int chargeLastFull,
144 if (chargeRate < 0 || chargeLevel < 0 || chargeLastFull < 0) {
145 HAL_WARNING (("chargeRate, chargeLevel or chargeLastFull <
89 util_compute_percentage_charge(const char *id, int chargeLevel, int chargeLastFull) argument
133 util_compute_time_remaining(const char *id, int chargeRate, int chargeLevel, int chargeLastFull, gboolean isDischarging, gboolean isCharging, gboolean guessChargeRate) argument
[all...]

Completed in 71 milliseconds