Searched defs:anomalies (Results 1 - 5 of 5) sorted by relevance
/packages/apps/Settings/src/com/android/settings/fuelgauge/anomaly/ |
H A D | AnomalySummaryPreferenceController.java | 84 * Update anomaly preference based on {@code anomalies}, also store a reference 85 * of {@paramref anomalies}, which would be used in {@link #onPreferenceTreeClick(Preference)} 87 * @param anomalies used to update the summary, this method will store a reference of it 89 public void updateAnomalySummaryPreference(List<Anomaly> anomalies) { argument 91 mAnomalies = anomalies;
|
H A D | AnomalyUtils.java | 121 * @return the list of anomalies 125 final List<Anomaly> anomalies = new ArrayList<>(); 128 anomalies.addAll(getAnomalyDetector(type).detectAnomalies( 133 return anomalies; 141 * @param anomalies contains the data to log 145 public void logAnomalies(MetricsFeatureProvider provider, List<Anomaly> anomalies, argument 147 for (int i = 0, size = anomalies.size(); i < size; i++) { 148 logAnomaly(provider, anomalies.get(i), contextId);
|
/packages/apps/Settings/src/com/android/settings/fuelgauge/ |
H A D | PowerUsageAnomalyDetails.java | 44 * Fragment to show a list of anomaly apps, where user could handle these anomalies 67 InstrumentedPreferenceFragment fragment, List<Anomaly> anomalies) { 69 args.putParcelableList(EXTRA_ANOMALY_LIST, anomalies); 66 startBatteryAbnormalPage(SettingsActivity caller, InstrumentedPreferenceFragment fragment, List<Anomaly> anomalies) argument
|
H A D | AdvancedPowerUsageDetail.java | 124 BatteryEntry entry, String usagePercent, List<Anomaly> anomalies) { 155 args.putParcelableList(EXTRA_ANOMALY_LIST, anomalies); 176 BatteryEntry entry, String usagePercent, List<Anomaly> anomalies) { 178 entry, usagePercent, anomalies); 122 startBatteryDetailPage(Activity caller, BatteryUtils batteryUtils, InstrumentedPreferenceFragment fragment, BatteryStatsHelper helper, int which, BatteryEntry entry, String usagePercent, List<Anomaly> anomalies) argument 174 startBatteryDetailPage(Activity caller, InstrumentedPreferenceFragment fragment, BatteryStatsHelper helper, int which, BatteryEntry entry, String usagePercent, List<Anomaly> anomalies) argument
|
H A D | PowerUsageSummary.java | 369 void updateAnomalySparseArray(List<Anomaly> anomalies) { argument 371 for (final Anomaly anomaly : anomalies) {
|
Completed in 79 milliseconds