Home
last modified time | relevance | path

Searched refs:p_uuid1 (Results 1 – 2 of 2) sorted by relevance

/device/soc/esp/esp32/components/bt/host/bluedroid/stack/sdp/
Dsdp_utils.c654 BOOLEAN sdpu_compare_uuid_arrays (UINT8 *p_uuid1, UINT32 len1, UINT8 *p_uuid2, UINT16 len2) in sdpu_compare_uuid_arrays() argument
668 return ((p_uuid1[0] == p_uuid2[0]) && (p_uuid1[1] == p_uuid2[1])); in sdpu_compare_uuid_arrays()
671 return ( (p_uuid1[0] == p_uuid2[0]) && (p_uuid1[1] == p_uuid2[1]) in sdpu_compare_uuid_arrays()
672 && (p_uuid1[2] == p_uuid2[2]) && (p_uuid1[3] == p_uuid2[3]) ); in sdpu_compare_uuid_arrays()
674 return (memcmp (p_uuid1, p_uuid2, (size_t)len1) == 0); in sdpu_compare_uuid_arrays()
679 return ( (p_uuid1[0] == 0) && (p_uuid1[1] == 0) in sdpu_compare_uuid_arrays()
680 && (p_uuid1[2] == p_uuid2[0]) && (p_uuid1[3] == p_uuid2[1]) ); in sdpu_compare_uuid_arrays()
683 memcpy (nu1, p_uuid1, MAX_UUID_SIZE); in sdpu_compare_uuid_arrays()
699 && (p_uuid2[2] == p_uuid1[0]) && (p_uuid2[3] == p_uuid1[1]) ); in sdpu_compare_uuid_arrays()
706 memcpy (nu1, p_uuid1, (size_t)len1); in sdpu_compare_uuid_arrays()
[all …]
/device/soc/esp/esp32/components/bt/host/bluedroid/stack/sdp/include/
Dsdpint.h279 extern BOOLEAN sdpu_compare_uuid_arrays (UINT8 *p_uuid1, UINT32 len1, UINT8 *p_uuid2, UINT16 len2);
280 extern BOOLEAN sdpu_compare_bt_uuids (tBT_UUID *p_uuid1, tBT_UUID *p_uuid2);