Home
last modified time | relevance | path

Searched refs:att_value (Results 1 – 7 of 7) sorted by relevance

/external/bluetooth/bluedroid/stack/srvc/
Dsrvc_dis.c284 pp = p_data->att_value.value; in dis_c_cmpl_cback()
290 if (p_data->att_value.len == DIS_SYSTEM_ID_SIZE) in dis_c_cmpl_cback()
299 if (p_data->att_value.len == DIS_PNP_ID_SIZE) in dis_c_cmpl_cback()
319 if ((p_str = (UINT8 *)GKI_getbuf((UINT16)(p_data->att_value.len + 1))) != NULL) in dis_c_cmpl_cback()
322 memcpy(p_str, p_data->att_value.value, p_data->att_value.len); in dis_c_cmpl_cback()
323 p_str[p_data->att_value.len] = 0; in dis_c_cmpl_cback()
/external/chromium_org/chrome/installer/setup/
Dinstall.cc295 void EscapeXmlAttributeValueInSingleQuotes(base::string16* att_value) { in EscapeXmlAttributeValueInSingleQuotes() argument
296 base::ReplaceChars(*att_value, base::ASCIIToUTF16("&"), in EscapeXmlAttributeValueInSingleQuotes()
297 base::ASCIIToUTF16("&"), att_value); in EscapeXmlAttributeValueInSingleQuotes()
298 base::ReplaceChars(*att_value, base::ASCIIToUTF16("'"), in EscapeXmlAttributeValueInSingleQuotes()
299 base::ASCIIToUTF16("'"), att_value); in EscapeXmlAttributeValueInSingleQuotes()
300 base::ReplaceChars(*att_value, base::ASCIIToUTF16("<"), in EscapeXmlAttributeValueInSingleQuotes()
301 base::ASCIIToUTF16("&lt;"), att_value); in EscapeXmlAttributeValueInSingleQuotes()
Dinstall.h55 void EscapeXmlAttributeValueInSingleQuotes(base::string16* att_value);
/external/bluetooth/bluedroid/bta/gatt/
Dbta_gattc_act.c1319 p_data->p_cmpl->att_value.handle, in bta_gattc_read_cmpl()
1326 p_data->p_cmpl->att_value.handle); in bta_gattc_read_cmpl()
1332 &p_data->p_cmpl->att_value, in bta_gattc_read_cmpl()
1996 p_data->att_value.handle, p_data->handle); in bta_gattc_proc_other_indication()
2000 p_notify->len = p_data->att_value.len; in bta_gattc_proc_other_indication()
2002 memcpy(p_notify->value, p_data->att_value.value, p_data->att_value.len); in bta_gattc_proc_other_indication()
2020 UINT16 handle = p_data->att_value.handle; in bta_gattc_process_indicate()
/external/bluetooth/bluedroid/stack/gatt/
Dgatt_utils.c2128 memset(&cb_data.att_value, 0, sizeof(tGATT_VALUE)); in gatt_end_operation()
2129 cb_data.att_value.handle = p_clcb->s_handle; in gatt_end_operation()
2130 cb_data.att_value.len = p_clcb->counter; in gatt_end_operation()
2132 memcpy (cb_data.att_value.value, p_data, cb_data.att_value.len); in gatt_end_operation()
2137 memset(&cb_data.att_value, 0, sizeof(tGATT_VALUE)); in gatt_end_operation()
2139 cb_data.att_value.handle = p_clcb->s_handle; in gatt_end_operation()
2144 cb_data.att_value = *((tGATT_VALUE *) p_data); in gatt_end_operation()
/external/bluetooth/bluedroid/stack/include/
Dgatt_api.h482 tGATT_VALUE att_value; member
/external/bluetooth/bluedroid/stack/gap/
Dgap_ble.c625 pp = p_data->att_value.value; in gap_ble_c_cmpl_cback()