Merge "Change switch ratio when new package has reported during device boot up." into rvc-dev

This commit is contained in:
TreeHugger Robot
2020-04-20 14:40:38 +00:00
committed by Android (Google) Code Review

View File

@@ -5750,7 +5750,7 @@ public class AppOpsService extends IAppOpsService.Stub {
*/
private void switchPackageIfBootTimeOrRarelyUsedLocked(@NonNull String packageName) {
if (mSampledPackage == null) {
if (ThreadLocalRandom.current().nextFloat() < 0.1f) {
if (ThreadLocalRandom.current().nextFloat() < 0.5f) {
mSamplingStrategy = SAMPLING_STRATEGY_BOOT_TIME_SAMPLING;
resampleAppOpForPackageLocked(packageName);
}