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

Commit 3a4a9419 authored by Rubin Xu's avatar Rubin Xu Committed by Automerger Merge Worker
Browse files

Merge "Get HAL services with retry" into rvc-dev am: 884aa6af am: 39d11fd8 am: ac8ba31b

Change-Id: Id98d3b36f27cbb26e3303ae1cd8c897ca3aefb7d
parents 97dd17f4 ac8ba31b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -824,7 +824,7 @@ public class LockSettingsService extends ILockSettings.Stub {

    private void getAuthSecretHal() {
        try {
            mAuthSecretService = IAuthSecret.getService();
            mAuthSecretService = IAuthSecret.getService(/* retry */ true);
        } catch (NoSuchElementException e) {
            Slog.i(TAG, "Device doesn't implement AuthSecret HAL");
        } catch (RemoteException e) {
+1 −1
Original line number Diff line number Diff line
@@ -391,7 +391,7 @@ public class SyntheticPasswordManager {
    @VisibleForTesting
    protected IWeaver getWeaverService() throws RemoteException {
        try {
            return IWeaver.getService();
            return IWeaver.getService(/* retry */ true);
        } catch (NoSuchElementException e) {
            Slog.i(TAG, "Device does not support weaver");
            return null;
+1 −1
Original line number Diff line number Diff line
@@ -38,7 +38,7 @@ class VendorLock extends OemLock {

    static IOemLock getOemLockHalService() {
        try {
            return IOemLock.getService();
            return IOemLock.getService(/* retry */ true);
        } catch (NoSuchElementException e) {
            Slog.i(TAG, "OemLock HAL not present on device");
            return null;