Home | History | Annotate | Download | only in hal

Lines Matching defs:property

38 int FakeHALSetAdapterProperty(const bt_property_t* /* property */) {
113 bt_property_t property;
114 property.len = sizeof(hal_name);
115 property.val = &hal_name;
116 property.type = BT_PROPERTY_BDNAME;
118 NotifyAdapterPropertiesChanged(1, &property);
123 bt_property_t property;
124 property.len = sizeof(bt_bdaddr_t);
125 property.val = (void*)address;
126 property.type = BT_PROPERTY_BDADDR;
128 NotifyAdapterPropertiesChanged(1, &property);
133 bt_property_t property;
134 property.len = sizeof(*features);
135 property.val = (void*)features;
136 property.type = BT_PROPERTY_LOCAL_LE_FEATURES;
138 NotifyAdapterPropertiesChanged(1, &property);