Home | History | Annotate | Download | only in service

Lines Matching defs:property

261       bt_property_t* property = properties + i;
262 switch (property->type) {
265 property->val));
271 bt_bdname_t* hal_name = reinterpret_cast<bt_bdname_t*>(property->val);
279 if (property->len != sizeof(bt_local_le_features_t)) {
280 LOG(WARNING) << "Malformed value received for property: "
285 reinterpret_cast<bt_local_le_features_t*>(property->val);
291 VLOG(1) << "Unhandled adapter property: "
292 << BtPropertyText(property->type);
330 // Sends a request to set the given HAL adapter property type and value.
335 bt_property_t property;
336 property.len = length;
337 property.val = value;
338 property.type = type;
341 set_adapter_property(&property);
343 VLOG(1) << "Failed to set property";
374 // adapter property has been received from the stack.