Home
last modified time | relevance | path

Searched refs:GATT_HANDLE_IS_VALID (Results 1 – 6 of 6) sorted by relevance

/hal_espressif-latest/components/bt/host/bluedroid/stack/gatt/
Datt_protocol.c563 if (GATT_HANDLE_IS_VALID (p_msg->browse.s_handle) && in attp_send_cl_msg()
564 GATT_HANDLE_IS_VALID (p_msg->browse.e_handle) && in attp_send_cl_msg()
581 if (GATT_HANDLE_IS_VALID (handle)) { in attp_send_cl_msg()
598 if (GATT_HANDLE_IS_VALID (p_msg->attr_value.handle)) { in attp_send_cl_msg()
Dgatt_cl.c663 if (!GATT_HANDLE_IS_VALID(value.handle)) { in gatt_process_notification()
810 if (!GATT_HANDLE_IS_VALID(handle)) { in gatt_process_read_by_type_rsp()
828 if (!GATT_HANDLE_IS_VALID(handle)) { in gatt_process_read_by_type_rsp()
845 if (!GATT_HANDLE_IS_VALID(record_value.incl_service.s_handle) || in gatt_process_read_by_type_rsp()
846 !GATT_HANDLE_IS_VALID(record_value.incl_service.e_handle)) { in gatt_process_read_by_type_rsp()
893 if (!GATT_HANDLE_IS_VALID(record_value.dclr_value.val_handle)) { in gatt_process_read_by_type_rsp()
Dgatt_api.c616 if (! GATT_HANDLE_IS_VALID (attr_handle)) { in GATTS_HandleValueIndication()
626 if (GATT_HANDLE_IS_VALID(p_tcb->indicate_handle)) { in GATTS_HandleValueIndication()
688 if (GATT_HANDLE_IS_VALID (attr_handle)) { in GATTS_HandleValueNotification()
950 if (!GATT_HANDLE_IS_VALID(p_param->s_handle) || in GATTC_Discover()
951 !GATT_HANDLE_IS_VALID(p_param->e_handle) || in GATTC_Discover()
1773 if (!GATT_HANDLE_IS_VALID (p_hlv->handle)) { in GATTS_HandleMultiValueNotification()
Dgatt_sr.c879 if (s_hdl > e_hdl || !GATT_HANDLE_IS_VALID(s_hdl) || !GATT_HANDLE_IS_VALID(e_hdl)) { in gatts_validate_packet_format()
1572 if (GATT_HANDLE_IS_VALID(handle)) { in gatts_process_attribute_req()
1713 if (GATT_HANDLE_IS_VALID(handle)) { in gatts_process_value_conf()
/hal_espressif-latest/components/bt/host/bluedroid/bta/gatt/
Dbta_gattc_cache.c736 if (!GATT_HANDLE_IS_VALID(s_handle) || !GATT_HANDLE_IS_VALID(e_handle)) { in bta_gattc_srvc_in_list()
869 … if (GATT_HANDLE_IS_VALID(start_handle) && GATT_HANDLE_IS_VALID(end_handle) && in bta_gattc_sdp_callback()
/hal_espressif-latest/components/bt/host/bluedroid/stack/include/stack/
Dgatt_api.h121 #define GATT_HANDLE_IS_VALID(x) ((x) != 0) macro