Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 53833e16 authored by Android Build Coastguard Worker's avatar Android Build Coastguard Worker
Browse files

Snap for 13513381 from 664d3e7b to 25Q3-release

Change-Id: Ida6a5ca4512840d891e5b53a4379503b6096c0dd
parents f097f9ab 664d3e7b
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -263,6 +263,7 @@ $(call add-clean-step, rm -rf $(PRODUCT_OUT)/system/priv-app/InProcessTethering)
$(call add-clean-step, rm -rf $(PRODUCT_OUT)/system/app/OsuLogin)
$(call add-clean-step, rm -rf $(PRODUCT_OUT)/system_other/system/app/OsuLogin)
$(call add-clean-step, rm -rf $(OUT_DIR)/host/linux-x86/testcases/ravenwood-runtime)
$(call add-clean-step, rm -rf $(OUT_DIR)/host/linux-x86/testcases/ravenwood-runtime)
# ******************************************************************
# NEWER CLEAN STEPS MUST BE AT THE END OF THE LIST ABOVE THIS BANNER
# ******************************************************************
+9 −0
Original line number Diff line number Diff line
@@ -117,4 +117,13 @@ flag {
    }
}

flag {
    name: "deviceidlejobcontroller_off_main_thread"
    namespace: "backstage_power"
    description: "Move the broadcast receiver in DeviceIdleJobController off the main thread."
    bug: "414140833"
    metadata {
        purpose: PURPOSE_BUGFIX
    }
}
+3 −1
Original line number Diff line number Diff line
@@ -41,6 +41,7 @@ import com.android.internal.util.ArrayUtils;
import com.android.server.AppSchedulingModuleThread;
import com.android.server.DeviceIdleInternal;
import com.android.server.LocalServices;
import com.android.server.job.Flags;
import com.android.server.job.JobSchedulerService;
import com.android.server.job.StateControllerProto;
import com.android.server.job.StateControllerProto.DeviceIdleJobsController.TrackedJob;
@@ -154,7 +155,8 @@ public final class DeviceIdleJobsController extends StateController {
        filter.addAction(PowerManager.ACTION_POWER_SAVE_WHITELIST_CHANGED);
        filter.addAction(PowerManager.ACTION_POWER_SAVE_TEMP_WHITELIST_CHANGED);
        mContext.registerReceiverAsUser(
                mBroadcastReceiver, UserHandle.ALL, filter, null, null);
                mBroadcastReceiver, UserHandle.ALL, filter, null,
                Flags.deviceidlejobcontrollerOffMainThread() ? mHandler : null);
    }

    void updateIdleMode(boolean enabled) {
+1 −0
Original line number Diff line number Diff line
@@ -47098,6 +47098,7 @@ package android.telephony {
    field public static final int RESULT_RIL_SUBSCRIPTION_NOT_AVAILABLE = 128; // 0x80
    field public static final int RESULT_RIL_SYSTEM_ERR = 108; // 0x6c
    field public static final int RESULT_SMS_BLOCKED_DURING_EMERGENCY = 29; // 0x1d
    field @FlaggedApi("com.android.internal.telephony.flags.satellite_25q4_apis") public static final int RESULT_SMS_SEND_FAIL_AFTER_MAX_RETRY = 138; // 0x8a
    field public static final int RESULT_SMS_SEND_RETRY_FAILED = 30; // 0x1e
    field public static final int RESULT_SYSTEM_ERROR = 15; // 0xf
    field public static final int RESULT_UNEXPECTED_EVENT_STOP_SENDING = 28; // 0x1c
+1 −121

File changed.

Preview size limit exceeded, changes collapsed.

Loading