Searched refs:CarNavigationInstrumentCluster (Results 1 - 13 of 13) sorted by relevance

/packages/services/Car/car-lib/src/android/car/navigation/
H A DCarNavigationInstrumentCluster.aidl18 parcelable CarNavigationInstrumentCluster
H A DICarNavigationEventListener.aidl18 import android.car.navigation.CarNavigationInstrumentCluster;
25 void onInstrumentClusterStart(in CarNavigationInstrumentCluster instrumentCluster) = 0;
H A DCarNavigationInstrumentCluster.java31 public class CarNavigationInstrumentCluster implements Parcelable { class in inherits:Parcelable
56 public static final Parcelable.Creator<CarNavigationInstrumentCluster> CREATOR
57 = new Parcelable.Creator<CarNavigationInstrumentCluster>() {
58 public CarNavigationInstrumentCluster createFromParcel(Parcel in) {
59 return new CarNavigationInstrumentCluster(in);
62 public CarNavigationInstrumentCluster[] newArray(int size) {
63 return new CarNavigationInstrumentCluster[size];
67 public static CarNavigationInstrumentCluster createCluster(int minIntervalMs) {
68 return new CarNavigationInstrumentCluster(minIntervalMs, ClusterType.IMAGE_CODES_ONLY, 0, 0,
72 public static CarNavigationInstrumentCluster createCustomImageCluste
105 public CarNavigationInstrumentCluster(CarNavigationInstrumentCluster that) { method in class:CarNavigationInstrumentCluster
117 private CarNavigationInstrumentCluster( method in class:CarNavigationInstrumentCluster
144 private CarNavigationInstrumentCluster(Parcel in) { method in class:CarNavigationInstrumentCluster
[all...]
H A DICarNavigation.aidl19 import android.car.navigation.CarNavigationInstrumentCluster;
32 CarNavigationInstrumentCluster getInstrumentClusterInfo() = 4;
H A DCarNavigationManager.java45 void onInstrumentClusterStart(CarNavigationInstrumentCluster instrumentCluster);
86 private CarNavigationInstrumentCluster mInstrumentCluster;
257 private void handleOnStart(CarNavigationInstrumentCluster instrumentCluster) {
259 mInstrumentCluster = new CarNavigationInstrumentCluster(instrumentCluster);
275 public void onInstrumentClusterStart(CarNavigationInstrumentCluster instrumentClusterInfo) {
/packages/services/Car/car-support-lib/src/android/support/car/navigation/
H A DCarNavigationInstrumentCluster.java31 public class CarNavigationInstrumentCluster extends ExtendableParcelable { class in inherits:ExtendableParcelable
63 public static final Parcelable.Creator<CarNavigationInstrumentCluster> CREATOR
64 = new Parcelable.Creator<CarNavigationInstrumentCluster>() {
65 public CarNavigationInstrumentCluster createFromParcel(Parcel in) {
66 return new CarNavigationInstrumentCluster(in);
69 public CarNavigationInstrumentCluster[] newArray(int size) {
70 return new CarNavigationInstrumentCluster[size];
74 public static CarNavigationInstrumentCluster createCluster(int minIntervalMs) {
75 return new CarNavigationInstrumentCluster(minIntervalMs, ClusterType.IMAGE_CODES_ONLY,
79 public static CarNavigationInstrumentCluster createCustomImageCluste
112 public CarNavigationInstrumentCluster(CarNavigationInstrumentCluster that) { method in class:CarNavigationInstrumentCluster
125 CarNavigationInstrumentCluster( method in class:CarNavigationInstrumentCluster
155 private CarNavigationInstrumentCluster(Parcel in) { method in class:CarNavigationInstrumentCluster
[all...]
H A DCarNavigationManagerEmbedded.java105 private static CarNavigationInstrumentCluster convert(
106 android.car.navigation.CarNavigationInstrumentCluster ic) {
110 return new CarNavigationInstrumentCluster(ic.getMinIntervalMs(), ic.getType(),
125 android.car.navigation.CarNavigationInstrumentCluster instrumentCluster) {
H A DCarNavigationManager.java34 void onInstrumentClusterStart(CarNavigationInstrumentCluster instrumentCluster);
/packages/services/Car/car-lib/src/android/car/cluster/renderer/
H A DInstrumentClusterRenderer.java21 import android.car.navigation.CarNavigationInstrumentCluster;
54 abstract public CarNavigationInstrumentCluster getNavigationProperties();
/packages/services/Car/car-cluster-demo-renderer/src/android/car/cluster/demorenderer/
H A DDemoInstrumentClusterRenderer.java21 import android.car.navigation.CarNavigationInstrumentCluster;
77 public CarNavigationInstrumentCluster getNavigationProperties() {
/packages/services/Car/tests/android_car_api_test/src/com/android/car/apitest/
H A DCarNavigationManagerTest.java22 import android.car.navigation.CarNavigationInstrumentCluster;
63 public void onInstrumentClusterStart(CarNavigationInstrumentCluster instrumentCluster) {
/packages/services/Car/tests/android_support_car_api_test/src/com/android/support/car/apitest/
H A DCarNavigationManagerTest.java25 import android.support.car.navigation.CarNavigationInstrumentCluster;
57 public void onInstrumentClusterStart(CarNavigationInstrumentCluster instrumentCluster) {
/packages/services/Car/service/src/com/android/car/cluster/
H A DCarNavigationService.java20 import android.car.navigation.CarNavigationInstrumentCluster;
54 private volatile CarNavigationInstrumentCluster mInstrumentClusterInfo = null;
156 public CarNavigationInstrumentCluster getInstrumentClusterInfo() {
206 mInstrumentClusterInfo = CarNavigationInstrumentCluster.createCluster(1000);
229 public boolean onInstrumentClusterStart(CarNavigationInstrumentCluster clusterInfo) {

Completed in 104 milliseconds