Searched refs:prop_type (Results 1 – 8 of 8) sorted by relevance
/system/bt/gd/rust/linux/stack/src/ |
D | bluetooth.rs | 143 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/ |
D | btif_shim.h | 47 int GetAdapterProperty(int prop_type) const; 51 int GetRemoteDeviceProperty(const RustRawAddress& address, int prop_type) const;
|
D | btif_shim.cc | 52 …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/ |
D | real_shill_provider.cc | 141 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/ |
D | connection_manager.cc | 185 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/ |
D | btif.rs | 86 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/ |
D | JavaGen.cpp | 377 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/ |
D | main.rs | 99 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()
|