Home
last modified time | relevance | path

Searched refs:enum_type (Results 1 – 3 of 3) sorted by relevance

/packages/services/Car/tools/emulator/
DVehicleHalProto_pb2.py201 message_type=None, enum_type=None, containing_type=None,
208 message_type=None, enum_type=None, containing_type=None,
215 message_type=None, enum_type=None, containing_type=None,
222 message_type=None, enum_type=None, containing_type=None,
229 message_type=None, enum_type=None, containing_type=None,
236 message_type=None, enum_type=None, containing_type=None,
243 message_type=None, enum_type=None, containing_type=None,
274 message_type=None, enum_type=None, containing_type=None,
281 message_type=None, enum_type=None, containing_type=None,
288 message_type=None, enum_type=None, containing_type=None,
[all …]
/packages/modules/Bluetooth/system/gd/packet/
Dendian_inserter.h89 using enum_type = typename std::underlying_type_t<Enum>; in insert() local
90 …static_assert(std::is_unsigned_v<enum_type>, "Enum type is signed. Did you forget to specify the e… in insert()
91 insert<enum_type>(static_cast<enum_type>(value), it); in insert()
/packages/modules/Bluetooth/system/gd/rust/linux/dbus_projection/src/
Dlib.rs256 ($enum_type:ty) => {
257 impl DBusArg for $enum_type {
266 ) -> Result<$enum_type, Box<dyn std::error::Error>> {
267 match <$enum_type>::from_u32(data) {
272 stringify!($enum_type)
277 fn to_dbus(data: $enum_type) -> Result<u32, Box<dyn std::error::Error>> {
281 fn log(data: &$enum_type) -> String {