Home | History | Annotate | Download | only in service

Lines Matching refs:property

264       bt_property_t* property = properties + i;
265 switch (property->type) {
268 BtAddrString(reinterpret_cast<RawAddress*>(property->val));
274 bt_bdname_t* hal_name = reinterpret_cast<bt_bdname_t*>(property->val);
282 if (property->len != sizeof(bt_local_le_features_t)) {
283 LOG(WARNING) << "Malformed value received for property: "
288 reinterpret_cast<bt_local_le_features_t*>(property->val);
294 VLOG(1) << "Unhandled adapter property: "
295 << BtPropertyText(property->type);
338 // Sends a request to set the given HAL adapter property type and value.
343 bt_property_t property;
344 property.len = length;
345 property.val = value;
346 property.type = type;
350 &property);
352 VLOG(1) << "Failed to set property";
383 // adapter property has been received from the stack.