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

Commit 9734b225 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Log battery stats before ScanClient gets removed" into oc-dev

parents fd0ce1ad 997b3bb8
Loading
Loading
Loading
Loading
+9 −11
Original line number Diff line number Diff line
@@ -269,6 +269,15 @@ public class ScanManager {
            if (client == null) return;

            if (mRegularScanClients.contains(client)) {
                // Update BatteryStats with this workload.
                try {
                    // The ScanClient passed in just holds the scannerId. We retrieve the real
                    // client, which may have workSource set.
                    ScanClient workClient = mScanNative.getRegularScanClient(client.scannerId);
                    if (workClient != null) mBatteryStats.noteBleScanStopped(workClient.workSource);
                } catch (RemoteException e) {
                    /* ignore */
                }

                mScanNative.stopRegularScan(client);

@@ -279,17 +288,6 @@ public class ScanManager {
                if (!mScanNative.isOpportunisticScanClient(client)) {
                    mScanNative.configureRegularScanParams();
                }

                // Update BatteryStats with this workload.
                try {
                    // The ScanClient passed in just holds the scannerId. We retrieve the real client,
                    // which may have workSource set.
                    ScanClient workClient = mScanNative.getRegularScanClient(client.scannerId);
                    if (workClient != null)
                        mBatteryStats.noteBleScanStopped(workClient.workSource);
                } catch (RemoteException e) {
                    /* ignore */
                }
            } else {
                mScanNative.stopBatchScan(client);
            }