HomeSort by relevance Sort by last modified time
    Searched defs:vehicle (Results 1 - 25 of 33) sorted by null

1 2

  /hardware/interfaces/automotive/vehicle/2.0/default/impl/vhal_v2_0/
CommBase.h 26 namespace vehicle { namespace in namespace:android::hardware::automotive
80 } // namespace vehicle
EmulatedVehicleHal.h 39 namespace vehicle { namespace in namespace:android::hardware::automotive
44 /** Implementation of VehicleHal that connected to emulator instead of real vehicle network. */
91 } // namespace vehicle
PipeComm.h 27 namespace vehicle { namespace in namespace:android::hardware::automotive
71 } // namespace vehicle
SocketComm.h 27 namespace vehicle { namespace in namespace:android::hardware::automotive
88 } // namespace vehicle
PipeComm.cpp 19 #include <android/hardware/automotive/vehicle/2.0/IVehicle.h>
31 namespace vehicle { namespace in namespace:android::hardware::automotive
100 } // namespace vehicle
VehicleEmulator.h 33 namespace vehicle { namespace in namespace:android::hardware::automotive
69 * Emulates vehicle by providing controlling interface from host side either through ADB or Pipe.
111 } // namespace vehicle
DefaultConfig.h 20 #include <android/hardware/automotive/vehicle/2.0/IVehicle.h>
26 namespace vehicle { namespace in namespace:android::hardware::automotive
85 .initialValue = {.stringValue = "Toy Vehicle"}},
365 } // namespace vehicle
FakeValueGenerator.h 22 #include <android/hardware/automotive/vehicle/2.0/types.h>
29 namespace vehicle { namespace in namespace:android::hardware::automotive
120 } // namespace vehicle
SocketComm.cpp 19 #include <android/hardware/automotive/vehicle/2.0/IVehicle.h>
33 namespace vehicle { namespace in namespace:android::hardware::automotive
187 } // namespace vehicle
  /hardware/interfaces/automotive/vehicle/2.0/default/tests/
VehiclePropConfigIndex_test.cpp 26 namespace vehicle { namespace in namespace:android::hardware::automotive
74 } // namespace vehicle
SubscriptionManager_test.cpp 30 namespace vehicle { namespace in namespace:android::hardware::automotive
235 } // namespace vehicle
VehicleHalTestUtils.h 20 #include <android/hardware/automotive/vehicle/2.0/types.h>
29 namespace vehicle { namespace in namespace:android::hardware::automotive
130 // Methods from ::android::hardware::automotive::vehicle::V2_0::IVehicleCallback follow.
226 } // namespace vehicle
VehicleObjectPool_test.cpp 28 namespace vehicle { namespace in namespace:android::hardware::automotive
128 } // namespace vehicle
  /hardware/interfaces/automotive/vehicle/2.0/default/common/include/vhal_v2_0/
Obd2SensorStore.h 22 #include <android/hardware/automotive/vehicle/2.0/types.h>
27 namespace vehicle { namespace in namespace:android::hardware::automotive
79 } // namespace vehicle
VehicleHalManager.h 29 #include <android/hardware/automotive/vehicle/2.0/IVehicle.h>
40 namespace vehicle { namespace in namespace:android::hardware::automotive
118 } // namespace vehicle
VehiclePropConfigIndex.h 22 #include <android/hardware/automotive/vehicle/2.0/IVehicle.h>
27 namespace vehicle { namespace in namespace:android::hardware::automotive
31 * This is thread-safe immutable class to hold vehicle property configuration
75 } // namespace vehicle
VehiclePropertyStore.h 25 #include <android/hardware/automotive/vehicle/2.0/IVehicle.h>
30 namespace vehicle { namespace in namespace:android::hardware::automotive
35 * vehicle property values.
99 } // namespace vehicle
VehicleUtils.h 24 #include <android/hardware/automotive/vehicle/2.0/types.h>
29 namespace vehicle { namespace in namespace:android::hardware::automotive
81 } // namespace vehicle
VehicleHal.h 20 #include <android/hardware/automotive/vehicle/2.0/IVehicle.h>
26 namespace vehicle { namespace in namespace:android::hardware::automotive
30 * This is a low-level vehicle hal interface that should be implemented by
51 * times for the same vehicle property to update subscribed areas or sample
55 * @param areas a bitwise vehicle areas or 0 for all supported areas
67 * @param property vehicle property to unsubscribe
91 /* Propagates property change events to vehicle HAL clients. */
96 /* Propagates error during set operation to the vehicle HAL clients. */
110 } // namespace vehicle
SubscriptionManager.h 29 #include <android/hardware/automotive/vehicle/2.0/IVehicle.h>
37 namespace vehicle { namespace in namespace:android::hardware::automotive
177 } // namespace vehicle
  /hardware/interfaces/automotive/vehicle/2.0/default/common/src/
VehicleUtils.cpp 17 #define LOG_TAG "automotive.vehicle@2.0-impl"
26 namespace vehicle { namespace in namespace:android::hardware::automotive
127 } // namespace vehicle
Obd2SensorStore.cpp 25 namespace vehicle { namespace in namespace:android::hardware::automotive
105 } // namespace vehicle
VehicleObjectPool.cpp 17 #define LOG_TAG "automotive.vehicle@2.0-impl"
28 namespace vehicle { namespace in namespace:android::hardware::automotive
160 } // namespace vehicle
  /external/protobuf/java/core/src/test/java/com/google/protobuf/
NestedBuildersTest.java 33 import protobuf_unittest.Vehicle;
50 Vehicle.Builder vehicleBuilder = Vehicle.newBuilder();
66 Vehicle vehicle = vehicleBuilder.build(); local
67 assertEquals(4, vehicle.getWheelCount());
69 Wheel wheel = vehicle.getWheel(i);
73 assertEquals(10, vehicle.getEngine().getLiters());
82 vehicle = vehicleBuilder.build();
84 Wheel wheel = vehicle.getWheel(i)
182 Vehicle vehicle = vehicleBuilder.buildPartial(); local
    [all...]
  /packages/services/Car/tests/vehiclehal_test/src/com/android/car/vehiclehal/test/
Utils.java 20 import android.hardware.automotive.vehicle.V2_0.IVehicle;
21 import android.hardware.automotive.vehicle.V2_0.VehiclePropConfig;
22 import android.hardware.automotive.vehicle.V2_0.VehiclePropValue;
40 static boolean isVhalPropertyAvailable(IVehicle vehicle, int prop) throws RemoteException {
41 return vehicle.getAllPropConfigs()
47 IVehicle vehicle,
50 vehicle = Objects.requireNonNull(vehicle);
54 vehicle.get(
68 IVehicle vehicle,
    [all...]

Completed in 450 milliseconds

1 2