Searched defs:bt_uuid (Results 1 - 4 of 4) sorted by relevance

/external/bluetooth/bluedroid/btif/src/
H A Dbtif_gatt_test.c76 static char * format_uuid(tBT_UUID bt_uuid, char *str_buf) argument
80 if (bt_uuid.len == LEN_UUID_16)
82 sprintf(str_buf, "0x%04x", bt_uuid.uu.uuid16);
84 else if (bt_uuid.len == LEN_UUID_128)
87 bt_uuid.uu.uuid128[15], bt_uuid.uu.uuid128[14],
88 bt_uuid.uu.uuid128[13], bt_uuid.uu.uuid128[12],
89 bt_uuid.uu.uuid128[11], bt_uuid
[all...]
H A Dbtif_gatt_multi_adv_util.c390 tBT_UUID bt_uuid; local
391 memset(&bt_uuid, 0, sizeof(tBT_UUID));
392 btif_to_bta_uuid(&bt_uuid, &uuid);
394 switch(bt_uuid.len)
414 *p_uuid_out16++ = bt_uuid.uu.uuid16;
437 *p_uuid_out32++ = bt_uuid.uu.uuid32;
454 bt_uuid.uu.uuid128, LEN_UUID_128);
455 BTIF_TRACE_DEBUG("%x,%x,%x,%x,%x,%x,%x,%x,%x,%x,%x,%x,%x,%x,%x,%x", bt_uuid.uu.uuid128[0],
456 bt_uuid.uu.uuid128[1],bt_uuid
[all...]
/external/bluetooth/bluedroid/stack/gap/
H A Dgap_conn.c128 tBT_UUID bt_uuid = {2, {GAP_PROTOCOL_ID}}; local
227 if (p_rem_bda && ((cid = L2CA_CONNECT_REQ (p_ccb->psm, p_rem_bda, &p_ccb->ertm_info, &bt_uuid)) != 0))
731 tBT_UUID bt_uuid = {2, {GAP_PROTOCOL_ID}}; local
762 L2CA_CONNECT_RSP (bd_addr, l2cap_id, l2cap_cid, L2CAP_CONN_OK, L2CAP_CONN_OK, &p_ccb->ertm_info, &bt_uuid);
/external/bluetooth/bluedroid/stack/gatt/
H A Dgatt_utils.c2281 void gatt_dbg_display_uuid(tBT_UUID bt_uuid) argument
2286 if (bt_uuid.len == LEN_UUID_16)
2288 sprintf(str_buf, "0x%04x", bt_uuid.uu.uuid16);
2290 else if (bt_uuid.len == LEN_UUID_32)
2292 sprintf(str_buf, "0x%08x", (unsigned int)bt_uuid.uu.uuid32);
2294 else if (bt_uuid.len == LEN_UUID_128)
2297 bt_uuid.uu.uuid128[15], bt_uuid.uu.uuid128[14],
2298 bt_uuid.uu.uuid128[13], bt_uuid
[all...]

Completed in 87 milliseconds