1/* 2 * Copyright (C) 2025 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17syntax = "proto3"; 18 19package android.hardware.automotive.vehicle.proto; 20 21/* Must be in sync with RawPropValues.aidl. */ 22message RawPropValues { 23 /* This is used for properties of types VehiclePropertyType#INT 24 * and VehiclePropertyType#INT_VEC */ 25 repeated int32 int32_values = 1; 26 27 /* This is used for properties of types VehiclePropertyType#FLOAT 28 * and VehiclePropertyType#FLOAT_VEC */ 29 repeated float float_values = 2; 30 31 /* This is used for properties of type VehiclePropertyType#INT64 */ 32 repeated int64 int64_values = 3; 33 34 /* This is used for properties of type VehiclePropertyType#BYTES */ 35 bytes byte_values = 4; 36 37 /* This is used for properties of type VehiclePropertyType#STRING */ 38 string string_value = 5; 39}; 40