Home
last modified time | relevance | path

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

/btstack/src/classic/
H A Dsdp_client.c426 uint16_t attributeListByteCount = big_endian_read_16(packet,offset); in sdp_client_parse_service_search_attribute_response() local
428 if (attributeListByteCount > sdp_client_mtu){ in sdp_client_parse_service_search_attribute_response()
434 if ((offset + attributeListByteCount) > size) return; in sdp_client_parse_service_search_attribute_response()
435 sdp_client_parse_attribute_lists(packet+offset, attributeListByteCount); in sdp_client_parse_service_search_attribute_response()
436 offset+=attributeListByteCount; in sdp_client_parse_service_search_attribute_response()
707 uint16_t attributeListByteCount = big_endian_read_16(packet,offset); in sdp_client_parse_service_attribute_response() local
709 if (attributeListByteCount > sdp_client_mtu){ in sdp_client_parse_service_attribute_response()
715 if (offset+attributeListByteCount > size) return; in sdp_client_parse_service_attribute_response()
716 sdp_client_parse_attribute_lists(packet+offset, attributeListByteCount); in sdp_client_parse_service_attribute_response()
717 offset+=attributeListByteCount; in sdp_client_parse_service_attribute_response()
H A Dsdp_server.c348 uint16_t attributeListByteCount = pos - 7; in sdp_handle_service_attribute_request() local
363 big_endian_store_16(sdp_response_buffer, 5, attributeListByteCount); in sdp_handle_service_attribute_request()