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

Commit def1b8fb authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "Log battery stats before ScanClient gets removed"

parents f4c034ba e80d6cf9
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);
            }