• Home
  • Raw
  • Download

Lines Matching refs:UINT32

44 static BOOLEAN find_uuid_in_seq (UINT8 *p , UINT32 seq_len, UINT8 *p_his_uuid,
118 static BOOLEAN find_uuid_in_seq (UINT8 *p , UINT32 seq_len, UINT8 *p_uuid, in find_uuid_in_seq()
123 UINT32 len; in find_uuid_in_seq()
161 tSDP_RECORD *sdp_db_find_record (UINT32 handle) in sdp_db_find_record()
279 UINT32 SDP_CreateRecord (void) in SDP_CreateRecord()
282 UINT32 handle; in SDP_CreateRecord()
329 BOOLEAN SDP_DeleteRecord (UINT32 handle) in SDP_DeleteRecord()
395 BOOLEAN SDP_AddAttribute (UINT32 handle, UINT16 attr_id, UINT8 attr_type, in SDP_AddAttribute()
396 UINT32 attr_len, UINT8 *p_val) in SDP_AddAttribute()
412 UINT32 i; in SDP_AddAttribute()
413 UINT32 len = (attr_len > 200) ? 200 : attr_len; in SDP_AddAttribute()
527 BOOLEAN SDP_AddSequence (UINT32 handle, UINT16 attr_id, UINT16 num_elem, in SDP_AddSequence()
584 … result = SDP_AddAttribute (handle, attr_id, DATA_ELE_SEQ_DESC_TYPE,(UINT32) (p - p_buff), p_buff); in SDP_AddSequence()
605 BOOLEAN SDP_AddUuidSequence (UINT32 handle, UINT16 attr_id, UINT16 num_uuids, in SDP_AddUuidSequence()
630 … result = SDP_AddAttribute (handle, attr_id, DATA_ELE_SEQ_DESC_TYPE,(UINT32) (p - p_buff), p_buff); in SDP_AddUuidSequence()
650 BOOLEAN SDP_AddProtocolList (UINT32 handle, UINT16 num_elem, in SDP_AddProtocolList()
659 …result = SDP_AddAttribute (handle, ATTR_ID_PROTOCOL_DESC_LIST,DATA_ELE_SEQ_DESC_TYPE, (UINT32) off… in SDP_AddProtocolList()
680 BOOLEAN SDP_AddAdditionProtoLists (UINT32 handle, UINT16 num_elem, in SDP_AddAdditionProtoLists()
706 (UINT32) (p - p_buff), p_buff); in SDP_AddAdditionProtoLists()
727 BOOLEAN SDP_AddProfileDescriptorList (UINT32 handle, UINT16 profile_uuid, in SDP_AddProfileDescriptorList()
749 …result = SDP_AddAttribute (handle, ATTR_ID_BT_PROFILE_DESC_LIST,DATA_ELE_SEQ_DESC_TYPE, (UINT32) (… in SDP_AddProfileDescriptorList()
771 BOOLEAN SDP_AddLanguageBaseAttrIDList (UINT32 handle, UINT16 lang, in SDP_AddLanguageBaseAttrIDList()
793 (UINT32) (p - p_buff), p_buff); in SDP_AddLanguageBaseAttrIDList()
814 BOOLEAN SDP_AddServiceClassIdList (UINT32 handle, UINT16 num_services, in SDP_AddServiceClassIdList()
832 (UINT32) (p - p_buff), p_buff); in SDP_AddServiceClassIdList()
851 BOOLEAN SDP_DeleteAttribute (UINT32 handle, UINT16 attr_id) in SDP_DeleteAttribute()
857 UINT32 len; /* Number of bytes in the entry */ in SDP_DeleteAttribute()
925 INT32 SDP_ReadRecord(UINT32 handle, UINT8 *p_data, INT32 *p_data_len) in SDP_ReadRecord()
947 if (p_attr->len > (UINT32)(rem_len - 6)) in SDP_ReadRecord()