Home
last modified time | relevance | path

Searched refs:isNavigationStateSupported (Results 1 – 4 of 4) sorted by relevance

/aosp12/packages/services/Car/service/src/com/android/car/hal/
H A DClusterHalService.java169 public boolean isNavigationStateSupported() { in isNavigationStateSupported() method in ClusterHalService
271 if (!isNavigationStateSupported()) return; in sendNavigationState()
304 writer.println("mIsNavigationStateSupported:" + isNavigationStateSupported()); in dump()
/aosp12/packages/services/Car/tests/carservice_unit_test/src/com/android/car/hal/
H A DClusterHalServiceTest.java123 assertThat(mClusterHalService.isNavigationStateSupported()).isFalse(); in testTakeProperties_noProperties()
133 assertThat(mClusterHalService.isNavigationStateSupported()).isFalse(); in testTakeProperties_doNotTakePartialProperties()
144 assertThat(mClusterHalService.isNavigationStateSupported()).isFalse(); in testTakeProperties_coreProperties()
156 assertThat(mClusterHalService.isNavigationStateSupported()).isTrue(); in testTakeProperties_fullProperties()
/aosp12/packages/services/Car/tests/carservice_unit_test/src/com/android/car/cluster/
H A DClusterHomeServiceUnitTest.java125 when(mClusterHalService.isNavigationStateSupported()).thenReturn(true); in setUp()
/aosp12/packages/services/Car/service/src/com/android/car/cluster/
H A DClusterHomeService.java257 if (!mClusterHalService.isNavigationStateSupported()) { in sendNavigationState()