Home | History | Annotate | Download | only in btm

Lines Matching defs:uuid16

150 static UINT8        btm_convert_uuid_to_eir_service( UINT16 uuid16 );
2948 ** Parameters uuid16 - UUID 16-bit
2955 static UINT8 btm_convert_uuid_to_eir_service( UINT16 uuid16 )
2961 if( uuid16 == BTM_EIR_UUID_LKUP_TBL[xx])
2977 ** uuid16 - UUID 16-bit
2983 BOOLEAN BTM_HasEirService( UINT32 *p_eir_uuid, UINT16 uuid16 )
2988 service_id = btm_convert_uuid_to_eir_service(uuid16);
3005 ** uuid16 - UUID 16-bit
3012 tBTM_EIR_SEARCH_RESULT BTM_HasInquiryEirService( tBTM_INQ_RESULTS *p_results, UINT16 uuid16 )
3015 if( BTM_HasEirService( p_results->eir_uuid, uuid16 ))
3037 ** uuid16 - UUID 16-bit
3042 void BTM_AddEirService( UINT32 *p_eir_uuid, UINT16 uuid16 )
3047 service_id = btm_convert_uuid_to_eir_service(uuid16);
3060 ** uuid16 - UUID 16-bit
3065 void BTM_RemoveEirService( UINT32 *p_eir_uuid, UINT16 uuid16 )
3070 service_id = btm_convert_uuid_to_eir_service(uuid16);
3278 UINT16 uuid16 = 0;
3286 STREAM_TO_UINT16 (uuid16, p_uuid);
3291 uuid16 = (UINT16) uuid32;
3309 STREAM_TO_UINT16(uuid16, p_uuid);
3318 return( uuid16);
3337 UINT16 uuid16;
3358 STREAM_TO_UINT16(uuid16, p_uuid_data);
3359 BTM_AddEirService( p_results->eir_uuid, uuid16 );
3368 uuid16 = btm_convert_uuid_to_uuid16( p_uuid_data, LEN_UUID_32 );
3370 if( uuid16 )
3371 BTM_AddEirService( p_results->eir_uuid, uuid16 );
3380 uuid16 = btm_convert_uuid_to_uuid16( p_uuid_data, LEN_UUID_128 );
3382 if( uuid16 )
3383 BTM_AddEirService( p_results->eir_uuid, uuid16 );