Home
last modified time | relevance | path

Searched refs:CarDiagnosticEvent (Results 1 – 16 of 16) sorted by relevance

/packages/services/Car/service/src/com/android/car/
DCarDiagnosticService.java22 import android.car.diagnostic.CarDiagnosticEvent;
102 private CarDiagnosticEvent setInitialLiveFrame() { in setInitialLiveFrame()
103 CarDiagnosticEvent liveFrame = null; in setInitialLiveFrame()
123 private CarDiagnosticEvent setRecentmostLiveFrame(final CarDiagnosticEvent event) { in setRecentmostLiveFrame()
131 private CarDiagnosticEvent setRecentmostFreezeFrame(final CarDiagnosticEvent event) { in setRecentmostFreezeFrame()
154 private void processDiagnosticData(List<CarDiagnosticEvent> events) { in processDiagnosticData()
155 ArrayMap<CarDiagnosticService.DiagnosticClient, List<CarDiagnosticEvent>> eventsByClient = in processDiagnosticData()
161 for (CarDiagnosticEvent event : events) { in processDiagnosticData()
179 List<CarDiagnosticEvent> clientEvents = eventsByClient.computeIfAbsent(client, in processDiagnosticData()
187 for (ArrayMap.Entry<CarDiagnosticService.DiagnosticClient, List<CarDiagnosticEvent>> entry : in processDiagnosticData()
[all …]
/packages/services/Car/car-lib/src/android/car/diagnostic/
DCarDiagnosticEvent.java39 public final class CarDiagnosticEvent implements Parcelable { class
67 public CarDiagnosticEvent(Parcel in) { in CarDiagnosticEvent() method in CarDiagnosticEvent
168 public static final Parcelable.Creator<CarDiagnosticEvent> CREATOR =
169 new Parcelable.Creator<CarDiagnosticEvent>() {
170 public CarDiagnosticEvent createFromParcel(Parcel in) {
171 return new CarDiagnosticEvent(in);
174 public CarDiagnosticEvent[] newArray(int size) {
175 return new CarDiagnosticEvent[size];
179 private CarDiagnosticEvent( in CarDiagnosticEvent() method in CarDiagnosticEvent
300 public CarDiagnosticEvent build() { in build()
[all …]
DCarDiagnosticManager.java68 private final SingleMessageHandler<CarDiagnosticEvent> mHandlerCallback;
78 mHandlerCallback = new SingleMessageHandler<CarDiagnosticEvent>( in CarDiagnosticManager()
81 protected void handleEvent(CarDiagnosticEvent event) { in CarDiagnosticManager()
110 void onDiagnosticEvent(CarDiagnosticEvent carDiagnosticEvent); in onDiagnosticEvent()
207 public @Nullable CarDiagnosticEvent getLatestLiveFrame() { in getLatestLiveFrame()
241 public @Nullable CarDiagnosticEvent getFreezeFrame(long timestamp) { in getFreezeFrame()
348 List<CarDiagnosticEvent> events) { in handleOnDiagnosticEvents()
353 public void onDiagnosticEvents(List<CarDiagnosticEvent> events) { in onDiagnosticEvents()
366 void onDiagnosticEvent(final CarDiagnosticEvent event) { in onDiagnosticEvent()
375 final CarDiagnosticEvent eventToDispatch = hasVendorExtensionPermission in onDiagnosticEvent()
DICarDiagnostic.aidl19 import android.car.diagnostic.CarDiagnosticEvent;
33 CarDiagnosticEvent getLatestLiveFrame() = 2; in getLatestLiveFrame()
43 CarDiagnosticEvent getFreezeFrame(long timestamp) = 4; in getFreezeFrame()
DICarDiagnosticEventListener.aidl19 import android.car.diagnostic.CarDiagnosticEvent;
25 void onDiagnosticEvents(in List<CarDiagnosticEvent> events) = 0;
DCarDiagnosticEvent.aidl19 parcelable CarDiagnosticEvent;
/packages/services/Car/car-lib/api/
Dsystem-lint-baseline.txt2 AllUpper: android.car.diagnostic.CarDiagnosticEvent.SparkIgnitionMonitors#EGR:
22 AutoBoxing: android.car.diagnostic.CarDiagnosticEvent#getFuelSystemStatus():
24 AutoBoxing: android.car.diagnostic.CarDiagnosticEvent#getFuelType():
26 AutoBoxing: android.car.diagnostic.CarDiagnosticEvent#getSecondaryAirStatus():
28 AutoBoxing: android.car.diagnostic.CarDiagnosticEvent#getSystemFloatSensor(int):
30 AutoBoxing: android.car.diagnostic.CarDiagnosticEvent#getSystemIntegerSensor(int):
32 AutoBoxing: android.car.diagnostic.CarDiagnosticEvent#getVendorFloatSensor(int):
34 AutoBoxing: android.car.diagnostic.CarDiagnosticEvent#getVendorIntegerSensor(int):
250 MissingNullability: android.car.diagnostic.CarDiagnosticEvent#CREATOR:
251 … Missing nullability on field `CREATOR` in class `class android.car.diagnostic.CarDiagnosticEvent`
[all …]
Dsystem-current.txt304 public final class CarDiagnosticEvent implements android.os.Parcelable {
305 ctor public CarDiagnosticEvent(android.os.Parcel);
307 …method @android.car.diagnostic.CarDiagnosticEvent.FuelSystemStatus.Status @Nullable public Integer…
308 …method @android.car.diagnostic.CarDiagnosticEvent.FuelType.Type @Nullable public Integer getFuelTy…
309 …method @Nullable public android.car.diagnostic.CarDiagnosticEvent.CommonIgnitionMonitors getIgniti…
310 …method @android.car.diagnostic.CarDiagnosticEvent.SecondaryAirStatus.Status @Nullable public Integ…
323 …blic static final android.os.Parcelable.Creator<android.car.diagnostic.CarDiagnosticEvent> CREATOR;
329 public static class CarDiagnosticEvent.Builder {
330 method @Deprecated public android.car.diagnostic.CarDiagnosticEvent.Builder atTimestamp(long);
331 method public android.car.diagnostic.CarDiagnosticEvent build();
[all …]
/packages/services/Car/tests/carservice_test/src/com/android/car/
DCarDiagnosticManagerTest.java26 import android.car.diagnostic.CarDiagnosticEvent;
27 import android.car.diagnostic.CarDiagnosticEvent.CommonIgnitionMonitors;
28 import android.car.diagnostic.CarDiagnosticEvent.CompressionIgnitionMonitors;
29 import android.car.diagnostic.CarDiagnosticEvent.FuelSystemStatus;
30 import android.car.diagnostic.CarDiagnosticEvent.FuelType;
31 import android.car.diagnostic.CarDiagnosticEvent.SecondaryAirStatus;
32 import android.car.diagnostic.CarDiagnosticEvent.SparkIgnitionMonitors;
259 CarDiagnosticEvent liveFrame = mCarDiagnosticManager.getLatestLiveFrame(); in testLiveFrameRead()
306 CarDiagnosticEvent liveFrame = listener.getLastEvent(); in testLiveFrameEvent()
325 CarDiagnosticEvent liveFrame = listener.getLastEvent(); in testMissingSensorRead()
[all …]
DCarDiagnosticConstantsTest.java149 android.car.diagnostic.CarDiagnosticEvent.FuelSystemStatus.class); in testFuelSystemStatus()
154 android.car.diagnostic.CarDiagnosticEvent.FuelType.class); in testFuelType()
159 android.car.diagnostic.CarDiagnosticEvent.SecondaryAirStatus.class); in testSecondaryAirStatus()
164 android.car.diagnostic.CarDiagnosticEvent.CommonIgnitionMonitors.class); in testIgnitionMonitors()
167 android.car.diagnostic.CarDiagnosticEvent.CompressionIgnitionMonitors.class); in testIgnitionMonitors()
170 android.car.diagnostic.CarDiagnosticEvent.SparkIgnitionMonitors.class); in testIgnitionMonitors()
/packages/services/Car/service/src/com/android/car/hal/
DDiagnosticHalService.java22 import android.car.diagnostic.CarDiagnosticEvent;
361 private CarDiagnosticEvent createCarDiagnosticEvent(VehiclePropValue value) { in createCarDiagnosticEvent()
367 CarDiagnosticEvent.Builder builder = in createCarDiagnosticEvent()
369 ? CarDiagnosticEvent.Builder.newFreezeFrameBuilder() in createCarDiagnosticEvent()
370 : CarDiagnosticEvent.Builder.newLiveFrameBuilder()) in createCarDiagnosticEvent()
402 void onDiagnosticEvents(List<CarDiagnosticEvent> events); in onDiagnosticEvents()
406 private final LinkedList<CarDiagnosticEvent> mEventsToDispatch = new LinkedList<>();
411 CarDiagnosticEvent event = createCarDiagnosticEvent(value); in onHalEvents()
477 public CarDiagnosticEvent getCurrentLiveFrame() { in getCurrentLiveFrame()
510 public CarDiagnosticEvent getFreezeFrame(long timestamp) { in getFreezeFrame()
/packages/services/Car/tests/DiagnosticTools/src/com/google/android/car/diagnostictools/
DLiveDataActivity.java21 import android.car.diagnostic.CarDiagnosticEvent;
60 CarDiagnosticEvent event, MetadataProcessing mMetadataProcessing) { in processSensorInfoIntoWrapper()
100 CarDiagnosticEvent event) { in processSensorInfoIntoWrapper()
167 public void onDiagnosticEvent(CarDiagnosticEvent event) { in onDiagnosticEvent()
DDTCDetailActivity.java22 import android.car.diagnostic.CarDiagnosticEvent;
109 CarDiagnosticEvent freezeFrame = in onCreate()
/packages/services/Car/tests/android_car_api_test/src/android/car/apitest/
DCarDiagnosticManagerTest.java24 import android.car.diagnostic.CarDiagnosticEvent;
51 CarDiagnosticEvent liveFrame = mCarDiagnosticManager.getLatestLiveFrame(); in testLiveFrame()
68 CarDiagnosticEvent freezeFrame = mCarDiagnosticManager.getFreezeFrame(timestamp); in testFreezeFrames()
/packages/services/Car/tests/vehiclehal_test/src/com/android/car/vehiclehal/test/
DCarDiagnosticTest.java21 import android.car.diagnostic.CarDiagnosticEvent;
73 public void onDiagnosticEvent(CarDiagnosticEvent event) { in onDiagnosticEvent()
79 final CarDiagnosticEvent event) { in fromCarDiagnosticEvent()
/packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/diagnostic/
DDiagnosticTestFragment.java21 import android.car.diagnostic.CarDiagnosticEvent;
54 public void onDiagnosticEvent(CarDiagnosticEvent carDiagnosticEvent) { in onDiagnosticEvent()