HomeSort by relevance Sort by last modified time
    Searched refs:CarNavigationInstrumentCluster (Results 1 - 13 of 13) sorted by null

  /packages/services/Car/car-lib/src/android/car/navigation/
CarNavigationInstrumentCluster.aidl 18 parcelable CarNavigationInstrumentCluster
ICarNavigationEventListener.aidl 18 import android.car.navigation.CarNavigationInstrumentCluster;
25 void onInstrumentClusterStart(in CarNavigationInstrumentCluster instrumentCluster) = 0;
CarNavigationInstrumentCluster.java 31 public class CarNavigationInstrumentCluster implements 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 createCustomImageCluster(int minIntervalMs
    [all...]
ICarNavigation.aidl 19 import android.car.navigation.CarNavigationInstrumentCluster;
32 CarNavigationInstrumentCluster getInstrumentClusterInfo() = 4;
CarNavigationManager.java 45 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/
CarNavigationInstrumentCluster.java 31 public class CarNavigationInstrumentCluster extends 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 createCustomImageCluster(int minIntervalMs
    [all...]
CarNavigationManagerEmbedded.java 105 private static CarNavigationInstrumentCluster convert(
106 android.car.navigation.CarNavigationInstrumentCluster ic) {
110 return new CarNavigationInstrumentCluster(ic.getMinIntervalMs(), ic.getType(),
125 android.car.navigation.CarNavigationInstrumentCluster instrumentCluster) {
CarNavigationManager.java 34 void onInstrumentClusterStart(CarNavigationInstrumentCluster instrumentCluster);
  /packages/services/Car/car-lib/src/android/car/cluster/renderer/
InstrumentClusterRenderer.java 21 import android.car.navigation.CarNavigationInstrumentCluster;
54 abstract public CarNavigationInstrumentCluster getNavigationProperties();
  /packages/services/Car/car-cluster-demo-renderer/src/android/car/cluster/demorenderer/
DemoInstrumentClusterRenderer.java 21 import android.car.navigation.CarNavigationInstrumentCluster;
77 public CarNavigationInstrumentCluster getNavigationProperties() {
  /packages/services/Car/tests/android_car_api_test/src/com/android/car/apitest/
CarNavigationManagerTest.java 22 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/
CarNavigationManagerTest.java 25 import android.support.car.navigation.CarNavigationInstrumentCluster;
57 public void onInstrumentClusterStart(CarNavigationInstrumentCluster instrumentCluster) {
  /packages/services/Car/service/src/com/android/car/cluster/
CarNavigationService.java 20 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 607 milliseconds