Home | History | Annotate | Download | only in btm

Lines Matching defs:uuid16

150 static UINT8        btm_convert_uuid_to_eir_service( UINT16 uuid16 );
2822 ** Parameters uuid16 - UUID 16-bit
2829 static UINT8 btm_convert_uuid_to_eir_service( UINT16 uuid16 )
2835 if( uuid16 == BTM_EIR_UUID_LKUP_TBL[xx])
2851 ** uuid16 - UUID 16-bit
2857 BOOLEAN BTM_HasEirService( UINT32 *p_eir_uuid, UINT16 uuid16 )
2862 service_id = btm_convert_uuid_to_eir_service(uuid16);
2879 ** uuid16 - UUID 16-bit
2886 tBTM_EIR_SEARCH_RESULT BTM_HasInquiryEirService( tBTM_INQ_RESULTS *p_results, UINT16 uuid16 )
2889 if( BTM_HasEirService( p_results->eir_uuid, uuid16 ))
2911 ** uuid16 - UUID 16-bit
2916 void BTM_AddEirService( UINT32 *p_eir_uuid, UINT16 uuid16 )
2921 service_id = btm_convert_uuid_to_eir_service(uuid16);
2934 ** uuid16 - UUID 16-bit
2939 void BTM_RemoveEirService( UINT32 *p_eir_uuid, UINT16 uuid16 )
2944 service_id = btm_convert_uuid_to_eir_service(uuid16);
3152 UINT16 uuid16 = 0;
3160 STREAM_TO_UINT16 (uuid16, p_uuid);
3165 uuid16 = (UINT16) uuid32;
3183 STREAM_TO_UINT16(uuid16, p_uuid);
3192 return( uuid16);
3211 UINT16 uuid16;
3232 STREAM_TO_UINT16(uuid16, p_uuid_data);
3233 BTM_AddEirService( p_results->eir_uuid, uuid16 );
3242 uuid16 = btm_convert_uuid_to_uuid16( p_uuid_data, LEN_UUID_32 );
3244 if( uuid16 )
3245 BTM_AddEirService( p_results->eir_uuid, uuid16 );
3254 uuid16 = btm_convert_uuid_to_uuid16( p_uuid_data, LEN_UUID_128 );
3256 if( uuid16 )
3257 BTM_AddEirService( p_results->eir_uuid, uuid16 );