HomeSort by relevance Sort by last modified time
    Searched refs:attr_id (Results 1 - 24 of 24) sorted by null

  /external/bluetooth/bluedroid/bta/gatt/
bta_gatts_utils.c 157 tBTA_GATTS_SRVC_CB * bta_gatts_find_srvc_cb_by_attr_id(tBTA_GATTS_CB *p_cb, UINT16 attr_id)
167 attr_id >= p_cb->srvc_cb[i].service_id &&
168 attr_id < p_cb->srvc_cb[i + 1].service_id) ||
173 attr_id >= p_cb->srvc_cb[i].service_id) ||
176 attr_id >= p_cb->srvc_cb[i].service_id)
bta_gatts_act.c 401 UINT16 attr_id = 0; local
404 attr_id = GATTS_AddIncludeService(p_msg->api_add_incl_srvc.hdr.layer_specific,
409 cb_data.add_result.attr_id = attr_id;
411 if (attr_id)
435 UINT16 attr_id = 0; local
438 attr_id = GATTS_AddCharacteristic(p_msg->api_add_char.hdr.layer_specific,
444 cb_data.add_result.attr_id = attr_id;
449 if (attr_id)
473 UINT16 attr_id = 0; local
    [all...]
bta_gatts_int.h 119 UINT16 attr_id; member in struct:__anon2972
254 extern tBTA_GATTS_SRVC_CB * bta_gatts_find_srvc_cb_by_attr_id(tBTA_GATTS_CB *p_cb, UINT16 attr_id);
bta_gatts_api.c 380 ** attr_id - attribute ID to indicate.
388 void BTA_GATTS_HandleValueIndication (UINT16 conn_id, UINT16 attr_id, UINT16 data_len,
400 p_buf->attr_id = attr_id;
  /external/bluetooth/bluedroid/stack/avrc/
avrc_pars_tg.c 89 p_result->list_app_values.attr_id = *p++;
90 if (!AVRC_IS_VALID_ATTRIBUTE(p_result->list_app_values.attr_id))
128 p_app_set[xx].attr_id = *p++;
130 if (!avrc_is_valid_player_attrib_value(p_app_set[xx].attr_id, p_app_set[xx].attr_val))
152 BE_STREAM_TO_UINT8 (p_result->get_app_val_txt.attr_id, p);
153 if (!AVRC_IS_VALID_ATTRIBUTE(p_result->get_app_val_txt.attr_id))
158 if ( (len - 2/* attr_id & num_val */) != p_result->get_app_val_txt.num_val)
166 if (!avrc_is_valid_player_attrib_value(p_result->get_app_val_txt.attr_id,
avrc_bld_tg.c 252 if (avrc_is_valid_player_attrib_value(p_rsp->p_vals[xx].attr_id, p_rsp->p_vals[xx].attr_val))
255 UINT8_TO_BE_STREAM(p_data, p_rsp->p_vals[xx].attr_id);
341 UINT8_TO_BE_STREAM(p_data, p_rsp->p_attrs[xx].attr_id);
470 if (!AVRC_IS_VALID_MEDIA_ATTRIBUTE(p_rsp->p_attrs[xx].attr_id))
472 AVRC_TRACE_ERROR2("avrc_bld_get_elem_attrs_rsp invalid attr id[%d]: %d", xx, p_rsp->p_attrs[xx].attr_id);
479 UINT32_TO_BE_STREAM(p_data, p_rsp->p_attrs[xx].attr_id);
613 if (avrc_is_valid_player_attrib_value(p_rsp->param.player_setting.attr_id[xx],
616 UINT8_TO_BE_STREAM(p_data, p_rsp->param.player_setting.attr_id[xx]);
  /external/bluetooth/bluedroid/stack/include/
sdp_api.h 118 UINT16 attr_id; /* Attribute ID */ member in struct:t_sdp_disc_attr
285 UINT16 attr_id,
300 UINT16 attr_id);
483 SDP_API extern BOOLEAN SDP_AddAttribute (UINT32 handle, UINT16 attr_id,
502 SDP_API extern BOOLEAN SDP_AddSequence (UINT32 handle, UINT16 attr_id,
519 SDP_API extern BOOLEAN SDP_AddUuidSequence (UINT32 handle, UINT16 attr_id,
616 SDP_API extern BOOLEAN SDP_DeleteAttribute (UINT32 handle, UINT16 attr_id);
avrc_defs.h 902 UINT8 attr_id; member in struct:__anon3613
908 UINT8 attr_id; member in struct:__anon3614
939 UINT32 attr_id; \/* Use AVRC_MEDIA_ATTR_ID_TITLE, AVRC_MEDIA_ATTR_ID_ARTIST, AVRC_MEDIA_ATTR_ID_ALBUM, member in struct:__anon3617
980 UINT8 attr_id; member in struct:__anon3622
1019 UINT8 attr_id; member in struct:__anon3626
1291 UINT8 attr_id[AVRC_MAX_APP_SETTINGS]; member in struct:__anon3651
    [all...]
btm_api.h     [all...]
  /external/bluetooth/bluedroid/stack/sdp/
sdp_db.c 398 BOOLEAN SDP_AddAttribute (UINT32 handle, UINT16 attr_id, UINT8 attr_type,
424 handle,attr_id,attr_type,attr_len,p_val,num_array);
429 handle,attr_id,attr_type,attr_len,p_val,*p_val);
434 handle,attr_id,attr_type,attr_len,p_val,p_val);
450 if (p_attr->id == attr_id)
452 SDP_DeleteAttribute (handle, attr_id);
455 if (p_attr->id > attr_id)
472 p_attr->id = attr_id;
503 attr_id, attr_len );
511 attr_id == ATTR_ID_EXT_BRCM_VERSION
    [all...]
sdp_api.c 262 tSDP_DISC_REC *SDP_FindAttributeInDb (tSDP_DISCOVERY_DB *p_db, UINT16 attr_id,
283 if (p_attr->attr_id == attr_id)
307 tSDP_DISC_ATTR *SDP_FindAttributeInRec (tSDP_DISC_REC *p_rec, UINT16 attr_id)
315 if (p_attr->attr_id == attr_id)
347 if ((p_attr->attr_id == ATTR_ID_SERVICE_CLASS_ID_LIST)
399 else if (p_attr->attr_id == ATTR_ID_SERVICE_ID)
438 if ((p_attr->attr_id == ATTR_ID_SERVICE_CLASS_ID_LIST)
456 else if (p_attr->attr_id == ATTR_ID_SERVICE_ID
    [all...]
sdp_discovery.c 54 UINT16 attr_id, tSDP_DISC_ATTR *p_parent_attr, UINT8 nest_level);
787 UINT16 attr_id; local
826 BE_STREAM_TO_UINT16 (attr_id, p);
829 p = add_attr (p, p_ccb->p_db, p_rec, attr_id, NULL, 0);
896 UINT16 attr_id, tSDP_DISC_ATTR *p_parent_attr, UINT8 nest_level)
929 p_attr->attr_id = attr_id;
    [all...]
  /hardware/libhardware/include/hardware/
bt_rc.h 115 uint8_t id; /* can be attr_id or value_id */
120 uint32_t attr_id; member in struct:__anon32873
135 typedef void (* btrc_list_player_app_values_callback)(btrc_player_attr_t attr_id);
150 typedef void (* btrc_get_player_app_values_text_callback) (uint8_t attr_id, uint8_t num_val, uint8_t *p_vals);
219 /** Returns the current application attribute values for each of the specified attr_id */
  /system/media/audio_route/
audio_route.c 340 const XML_Char *attr_id = NULL; local
356 attr_id = attr[i + 1];
408 if (attr_id) {
410 id = atoi((char *)attr_id);
425 if (attr_id)
426 mixer_value.index = atoi((char *)attr_id);
  /external/bluetooth/bluedroid/bta/jv/
bta_jv_api.c 896 tBTA_JV_STATUS BTA_JvAddAttribute(UINT32 handle, UINT16 attr_id,
907 p_msg->attr_id = attr_id;
928 tBTA_JV_STATUS BTA_JvDeleteAttribute(UINT32 handle, UINT16 attr_id)
938 p_msg->attr_id = attr_id;
    [all...]
bta_jv_int.h 381 UINT16 attr_id; member in struct:__anon3285
bta_jv_act.c     [all...]
  /external/bluetooth/bluedroid/btif/src/
btif_gatt_server.c 231 p_data->add_result.attr_id);
244 p_data->add_result.attr_id);
258 p_data->add_result.attr_id);
btif_rc.c     [all...]
  /external/bluetooth/bluedroid/bta/include/
bta_jv_api.h     [all...]
bta_gatt_api.h 517 UINT16 attr_id; member in struct:__anon3148
    [all...]
  /external/bluetooth/bluedroid/stack/hid/
hidh_api.c 77 void hidh_get_str_attr( tSDP_DISC_REC *p_rec, UINT16 attr_id, UINT16 max_len, char *str )
82 if ((p_attr = SDP_FindAttributeInRec(p_rec, attr_id)) != NULL)
  /packages/apps/Bluetooth/jni/
com_android_bluetooth_avrcp.cpp 290 pAttrs[i].attr_id = attr[i];
  /external/bluetooth/bluedroid/bta/hl/
bta_hl_sdp.c 609 if ((p_attr->attr_id == ATTR_ID_SERVICE_CLASS_ID_LIST)

Completed in 392 milliseconds