Home | History | Annotate | Download | only in btm

Lines Matching refs:uuid16

150 static UINT8        btm_convert_uuid_to_eir_service( UINT16 uuid16 );
2986 ** Parameters uuid16 - UUID 16-bit
2993 static UINT8 btm_convert_uuid_to_eir_service( UINT16 uuid16 )
2999 if( uuid16 == BTM_EIR_UUID_LKUP_TBL[xx])
3015 ** uuid16 - UUID 16-bit
3021 BOOLEAN BTM_HasEirService( UINT32 *p_eir_uuid, UINT16 uuid16 )
3026 service_id = btm_convert_uuid_to_eir_service(uuid16);
3043 ** uuid16 - UUID 16-bit
3050 tBTM_EIR_SEARCH_RESULT BTM_HasInquiryEirService( tBTM_INQ_RESULTS *p_results, UINT16 uuid16 )
3053 if( BTM_HasEirService( p_results->eir_uuid, uuid16 ))
3075 ** uuid16 - UUID 16-bit
3080 void BTM_AddEirService( UINT32 *p_eir_uuid, UINT16 uuid16 )
3085 service_id = btm_convert_uuid_to_eir_service(uuid16);
3098 ** uuid16 - UUID 16-bit
3103 void BTM_RemoveEirService( UINT32 *p_eir_uuid, UINT16 uuid16 )
3108 service_id = btm_convert_uuid_to_eir_service(uuid16);
3316 UINT16 uuid16 = 0;
3324 STREAM_TO_UINT16 (uuid16, p_uuid);
3329 uuid16 = (UINT16) uuid32;
3347 STREAM_TO_UINT16(uuid16, p_uuid);
3356 return( uuid16);
3375 UINT16 uuid16;
3396 STREAM_TO_UINT16(uuid16, p_uuid_data);
3397 BTM_AddEirService( p_results->eir_uuid, uuid16 );
3406 uuid16 = btm_convert_uuid_to_uuid16( p_uuid_data, LEN_UUID_32 );
3408 if( uuid16 )
3409 BTM_AddEirService( p_results->eir_uuid, uuid16 );
3418 uuid16 = btm_convert_uuid_to_uuid16( p_uuid_data, LEN_UUID_128 );
3420 if( uuid16 )
3421 BTM_AddEirService( p_results->eir_uuid, uuid16 );