Skip to content
Snippets Groups Projects
Commit 3763485e authored by Xiao Lei's avatar Xiao Lei Committed by Henrik Baard
Browse files

Fix CTS issue in BootControl HIDL

V1.2 version of BootControl HAL is unavailable in some devices.
At this time, a NoSuchElementException exception will be thrown
when getting service. We must catch this exception and handle it.

Bug: 297229888
Change-Id: Ib108211c7146c53a6405cb9510e7d504e5f1ecfe
parent 5908abd4
No related branches found
No related tags found
No related merge requests found
......@@ -22,6 +22,8 @@ import android.os.IBinder;
import android.os.RemoteException;
import android.util.Slog;
import java.util.NoSuchElementException;
public class BootControlHIDL implements IBootControl {
private static final String TAG = "BootControlHIDL";
......@@ -32,7 +34,7 @@ public class BootControlHIDL implements IBootControl {
public static boolean isServicePresent() {
try {
android.hardware.boot.V1_0.IBootControl.getService(true);
} catch (RemoteException e) {
} catch (RemoteException | NoSuchElementException e) {
return false;
}
return true;
......@@ -41,7 +43,7 @@ public class BootControlHIDL implements IBootControl {
public static boolean isV1_2ServicePresent() {
try {
android.hardware.boot.V1_2.IBootControl.getService(true);
} catch (RemoteException e) {
} catch (RemoteException | NoSuchElementException e) {
return false;
}
return true;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment