Searched refs:prop_type (Results 1 – 9 of 9) sorted by relevance
/aosp12/frameworks/base/tools/aapt2/tools/ |
H A D | extract_unicode_properties.py | 16 def __init__(self, first_char, last_char, prop_type): argument 19 self.prop_type = prop_type 25 if self.last_char + 1 == other.first_char and self.prop_type == other.prop_type: 33 if enum_int & self.prop_type: 49 prop_type = props[prop_type_str] 53 chars_out[char].prop_type |= prop_type
|
/aosp12/system/bt/gd/rust/linux/stack/src/ |
H A 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()
|
/aosp12/system/update_engine/update_manager/ |
H A 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()
|
/aosp12/system/update_engine/cros/ |
H A 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()
|
/aosp12/system/bt/gd/rust/topshim/src/ |
H A 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()
|
/aosp12/system/bt/gd/rust/topshim/btif/ |
H A D | btif_shim.h | 47 int GetAdapterProperty(int prop_type) const; 51 int GetRemoteDeviceProperty(const RustRawAddress& address, int prop_type) const;
|
H A 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()
|
/aosp12/system/tools/sysprop/ |
H A 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()
|
/aosp12/system/bt/gd/rust/linux/adapter/src/ |
H A 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()
|