Searched refs:uuid32 (Results 1 - 20 of 20) sorted by relevance
/system/bt/btcore/include/ |
H A D | uuid.h | 73 // |uuid|, |uuid16| and |uuid32| must not be NULL. 75 bool uuid_128_to_32(const bt_uuid_t *uuid, uint32_t *uuid32);
|
/system/bt/btcore/test/ |
H A D | uuid_test.cpp | 127 uint32_t uuid32 = 0xffffffff; local 130 EXPECT_FALSE(uuid_128_to_32(uuid, &uuid32)); 132 EXPECT_EQ((uint32_t)0xffffffff, uuid32); 135 EXPECT_TRUE(uuid_128_to_32(uuid, &uuid32)); 137 EXPECT_NE((uint32_t)0xffffffff, uuid32); 138 EXPECT_EQ((uint32_t)0, uuid32);
|
/system/bt/btcore/src/ |
H A D | uuid.c | 119 bool uuid_128_to_32(const bt_uuid_t *uuid, uint32_t *uuid32) { argument 121 assert(uuid32 != NULL); 126 *uuid32 = (uuid->uu[0] << 24) + (uuid->uu[1] << 16) + (uuid->uu[2] << 8) + uuid->uu[3];
|
/system/bt/btif/src/ |
H A D | btif_gatt_util.c | 96 p_dest->uu.uuid32 = (p_src->uu[13] << 8) + p_src->uu[12]; 97 p_dest->uu.uuid32 += (p_src->uu[15] << 24) + (p_src->uu[14] << 16); 186 p_dest->uu[14] = (p_src->uu.uuid32 >> 16) & 0xff; 187 p_dest->uu[15] = (p_src->uu.uuid32 >> 24) & 0xff; 235 return(UINT16) p_uuid->uu.uuid32;
|
H A D | btif_gatt_multi_adv_util.c | 450 *p_uuid_out32++ = bt_uuid.uu.uuid32;
|
/system/bt/stack/pan/ |
H A D | pan_main.c | 134 if (remote_uuid->uu.uuid32 & 0xFFFF0000) 137 remote_uuid->uu.uuid16 = (UINT16)remote_uuid->uu.uuid32; 168 if (local_uuid->uu.uuid32 & 0xFFFF0000) 171 local_uuid->uu.uuid16 = (UINT16)local_uuid->uu.uuid32;
|
/system/bt/stack/bnep/ |
H A D | bnep_utils.c | 203 UINT32_TO_BE_STREAM (p, p_bcb->dst_uuid.uu.uuid32); 204 UINT32_TO_BE_STREAM (p, p_bcb->src_uuid.uu.uuid32); 642 BE_STREAM_TO_UINT32 (p_bcb->src_uuid.uu.uuid32, p_setup); 643 BE_STREAM_TO_UINT32 (p_bcb->dst_uuid.uu.uuid32, p_setup); 1390 return (src_uuid->uu.uuid32 & 0x0000FFFF);
|
/system/bt/stack/sdp/ |
H A D | sdp_utils.c | 758 return (p_uuid1->uu.uuid32 == p_uuid2->uu.uuid32); 794 return (BOOLEAN)(p_btuuid->uu.uuid32 == p_attr->attr_value.v.u32);
|
H A D | sdp_api.c | 364 p_uuid->uu.uuid32 = p_sattr->attr_value.v.u32;
|
H A D | sdp_discovery.c | 94 UINT32_TO_BE_STREAM (p_out, p_uuid_list->uu.uuid32);
|
/system/bt/stack/gatt/ |
H A D | gatt_utils.c | 1020 return src.uu.uuid32 == tar.uu.uuid32; 1032 gatt_convert_uuid32_to_uuid128(su, src.uu.uuid32); 1047 gatt_convert_uuid32_to_uuid128(tu, tar.uu.uuid32); 1077 gatt_convert_uuid32_to_uuid128(p, uuid.uu.uuid32); 1139 STREAM_TO_UINT32(p_uuid_rec->uu.uuid32, p_uuid); 1493 UINT32_TO_BE_STREAM (p, p_uuid->uu.uuid32); 2298 sprintf(str_buf, "0x%08x", (unsigned int)bt_uuid.uu.uuid32);
|
H A D | gatt_db.c | 357 attr_uuid.uu.uuid32 = ((tGATT_ATTR32 *)p_attr)->uuid; 965 p_attr32->uuid = p_uuid->uu.uuid32; 1001 GATT_TRACE_DEBUG("=====> handle = [0x%04x] uuid32 = [0x%08x] perm=0x%02x ", 1208 gatt_convert_uuid32_to_uuid128(p_attr->p_value->uuid.uu.uuid128, p_service->uu.uuid32);
|
H A D | gatt_cl.c | 111 gatt_convert_uuid32_to_uuid128(cl_req.find_type_value.value, p_clcb->uuid.uu.uuid32);
|
/system/bt/stack/btm/ |
H A D | btm_inq.c | 2837 UINT32 uuid32; local 2847 STREAM_TO_UINT32 (uuid32, p_uuid); 2848 if (uuid32 < 0x10000) 2849 uuid16 = (UINT16) uuid32;
|
H A D | btm_ble_adv_filter.c | 867 UINT32_TO_STREAM(p, p_uuid_cond->uuid.uu.uuid32);
|
H A D | btm_ble_gap.c | 1548 UINT32_TO_STREAM(p, p_data->p_service_data->service_uuid.uu.uuid32);
|
/system/bt/bta/sdp/ |
H A D | bta_sdp_act.c | 90 su.uu.uuid32 = ntohl(u32);
|
/system/bt/stack/include/ |
H A D | bt_types.h | 435 UINT32 uuid32; member in union:__anon974::__anon975
|
/system/bt/bta/jv/ |
H A D | bta_jv_act.c | 853 su.uu.uuid32 = ntohl(u32); 854 APPL_TRACE_DEBUG("shorten to 32 bits uuid: %x", su.uu.uuid32);
|
/system/bt/bta/dm/ |
H A D | bta_dm_act.c | 3966 UINT32_TO_STREAM(p, bta_dm_cb.custom_uuid[custom_uuid_idx].uu.uuid32);
|
Completed in 193 milliseconds