Searched defs:mBackgroundThrottlePackageWhitelist (Results 1 - 2 of 2) sorted by last modified time

/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiServiceImpl.java159 private final ArraySet<String> mBackgroundThrottlePackageWhitelist = new ArraySet<>(); field in class:WifiServiceImpl
624 if (mBackgroundThrottlePackageWhitelist.contains(packageName)) {
2141 mBackgroundThrottlePackageWhitelist.clear();
2143 mBackgroundThrottlePackageWhitelist.addAll(Arrays.asList(setting.split(",")));
/frameworks/base/services/core/java/com/android/server/
H A DLocationManagerService.java232 private final ArraySet<String> mBackgroundThrottlePackageWhitelist = new ArraySet<>(); field in class:LocationManagerService
1796 return mBackgroundThrottlePackageWhitelist.toArray(
1797 new String[mBackgroundThrottlePackageWhitelist.size()]);
1809 mBackgroundThrottlePackageWhitelist.clear();
1810 mBackgroundThrottlePackageWhitelist.addAll(
1812 mBackgroundThrottlePackageWhitelist.addAll(
1821 if (mBackgroundThrottlePackageWhitelist.contains(identity.mPackageName)) {
3103 if (!mBackgroundThrottlePackageWhitelist.isEmpty()) {
3105 for (String packageName : mBackgroundThrottlePackageWhitelist) {

Completed in 83 milliseconds