Home
last modified time | relevance | path

Searched refs:prop_type (Results 1 – 8 of 8) sorted by relevance

/system/bt/gd/rust/linux/stack/src/
Dbluetooth.rs143 let prop_type = PropertyType::from_i32(prop.prop_type); in adapter_properties_changed() localVariable
145 if prop_type.is_none() { in adapter_properties_changed()
149 match prop_type.unwrap() { in adapter_properties_changed()
/system/bt/gd/rust/topshim/btif/
Dbtif_shim.h47 int GetAdapterProperty(int prop_type) const;
51 int GetRemoteDeviceProperty(const RustRawAddress& address, int prop_type) const;
Dbtif_shim.cc52 …BtProperty prop = {.prop_type = properties[i].type, .len = properties[i].len, .val = std::move(val… in prop_to_vec()
242 .type = static_cast<bt_property_type_t>(prop.prop_type), in convert_to_cprop()
261 int BluetoothIntf::GetRemoteDeviceProperty(const RustRawAddress& address, int prop_type) const { in GetRemoteDeviceProperty()
263 return intf_->get_remote_device_property(&addr, static_cast<bt_property_type_t>(prop_type)); in GetRemoteDeviceProperty()
/system/update_engine/update_manager/
Dreal_shill_provider.cc141 const auto& prop_type = properties.find(shill::kTypeProperty); in ProcessDefaultService() local
142 if (prop_type == properties.end()) { in ProcessDefaultService()
147 string type_str = prop_type->second.TryGet<string>(); in ProcessDefaultService()
/system/update_engine/cros/
Dconnection_manager.cc185 const auto& prop_type = properties.find(shill::kTypeProperty); in GetServicePathProperties() local
186 if (prop_type == properties.end()) { in GetServicePathProperties()
192 string type_str = prop_type->second.TryGet<string>(); in GetServicePathProperties()
/system/bt/gd/rust/topshim/src/
Dbtif.rs86 prop_type: i32, field
119 fn GetAdapterProperty(&self, prop_type: i32) -> i32; in GetAdapterProperty()
123 fn GetRemoteDeviceProperty(&self, address: &RustRawAddress, prop_type: i32) -> i32; in GetRemoteDeviceProperty()
307 pub fn get_adapter_property(&mut self, prop_type: i32) -> i32 { in get_adapter_property()
308 self.internal.GetAdapterProperty(prop_type) in get_adapter_property()
/system/tools/sysprop/
DJavaGen.cpp377 std::string prop_type = GetJavaTypeName(prop); in GenerateJavaClass() local
416 writer.Write("public static %s %s() {\n", prop_type.c_str(), in GenerateJavaClass()
419 writer.Write("public static Optional<%s> %s() {\n", prop_type.c_str(), in GenerateJavaClass()
450 prop_type.c_str()); in GenerateJavaClass()
/system/bt/gd/rust/linux/adapter/src/
Dmain.rs99 let proptype = match btif::BtPropertyType::from_i32(p.prop_type) { in mainloop()
118 let proptype = match btif::BtPropertyType::from_i32(p.prop_type) { in mainloop()
129 let proptype = match btif::BtPropertyType::from_i32(p.prop_type) { in mainloop()