Home
last modified time | relevance | path

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

/system/bt/stack/gatt/
Datt_protocol.cc472 if (!GATT_HANDLE_IS_VALID(p_msg->browse.s_handle) || in attp_send_cl_msg()
473 !GATT_HANDLE_IS_VALID(p_msg->browse.e_handle) || in attp_send_cl_msg()
488 if (!GATT_HANDLE_IS_VALID(handle)) return GATT_ILLEGAL_PARAMETER; in attp_send_cl_msg()
503 if (!GATT_HANDLE_IS_VALID(p_msg->attr_value.handle)) in attp_send_cl_msg()
Dgatt_cl.cc636 if (!GATT_HANDLE_IS_VALID(value.handle)) { in gatt_process_notification()
741 if (!GATT_HANDLE_IS_VALID(handle)) { in gatt_process_read_by_type_rsp()
759 if (!GATT_HANDLE_IS_VALID(handle)) { in gatt_process_read_by_type_rsp()
783 if (!GATT_HANDLE_IS_VALID(record_value.incl_service.s_handle) || in gatt_process_read_by_type_rsp()
784 !GATT_HANDLE_IS_VALID(record_value.incl_service.e_handle)) { in gatt_process_read_by_type_rsp()
841 if (!GATT_HANDLE_IS_VALID(record_value.dclr_value.val_handle)) { in gatt_process_read_by_type_rsp()
Dgatt_api.cc424 if (!GATT_HANDLE_IS_VALID(attr_handle)) return GATT_ILLEGAL_PARAMETER; in GATTS_HandleValueIndication()
433 if (GATT_HANDLE_IS_VALID(p_tcb->indicate_handle)) { in GATTS_HandleValueIndication()
484 if (!GATT_HANDLE_IS_VALID(attr_handle)) { in GATTS_HandleValueNotification()
637 if (!GATT_HANDLE_IS_VALID(start_handle) || in GATTC_Discover()
638 !GATT_HANDLE_IS_VALID(end_handle) || in GATTC_Discover()
Dgatt_sr.cc577 if (s_hdl > e_hdl || !GATT_HANDLE_IS_VALID(s_hdl) || in read_handles()
578 !GATT_HANDLE_IS_VALID(e_hdl)) { in read_handles()
1036 if (GATT_HANDLE_IS_VALID(handle)) { in gatts_process_attribute_req()
1159 if (!GATT_HANDLE_IS_VALID(handle)) { in gatts_process_value_conf()
/system/bt/bta/gatt/
Dbta_gattc_cache.cc262 if (!GATT_HANDLE_IS_VALID(start_handle) || in bta_gattc_sdp_callback()
263 !GATT_HANDLE_IS_VALID(end_handle)) { in bta_gattc_sdp_callback()
/system/bt/stack/include/
Dgatt_api.h113 #define GATT_HANDLE_IS_VALID(x) ((x) != 0) macro