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

/frameworks/base/core/java/com/android/internal/os/
H A DBatteryStatsHelper.java80 private PowerProfile mPowerProfile; field in class:BatteryStatsHelper
267 return mPowerProfile;
271 mPowerProfile = new PowerProfile(mContext);
282 mPowerProfile = new PowerProfile(mContext);
369 mCpuPowerCalculator = new CpuPowerCalculator(mPowerProfile);
374 mMemoryPowerCalculator = new MemoryPowerCalculator(mPowerProfile);
379 mWakelockPowerCalculator = new WakelockPowerCalculator(mPowerProfile);
384 mMobileRadioPowerCalculator = new MobileRadioPowerCalculator(mPowerProfile, mStats);
390 final boolean hasWifiPowerReporting = checkHasWifiPowerReporting(mStats, mPowerProfile);
393 new WifiPowerCalculator(mPowerProfile)
[all...]
H A DBatteryStatsImpl.java626 private PowerProfile mPowerProfile; field in class:BatteryStatsImpl
7545 if (mBsi.mPowerProfile != null && mBsi.mPowerProfile.getNumCpuClusters() != numCpuClusters) {
7553 if (mBsi.mPowerProfile != null &&
7554 mBsi.mPowerProfile.getNumSpeedStepsInCpuCluster(cluster) != numSpeeds) {
8936 mPowerProfile = profile;
8941 final int numClusters = mPowerProfile.getNumCpuClusters();
8945 final int numSpeedSteps = mPowerProfile.getNumSpeedStepsInCpuCluster(i);
8948 firstCpuOfCluster += mPowerProfile.getNumCoresInCpuCluster(i);
8953 mEstimatedBatteryCapacity = (int) mPowerProfile
[all...]

Completed in 82 milliseconds