Home | History | Annotate | Download | only in gatt

Lines Matching refs:indication

586 ** Description      This function sends a handle value indication to a client.
589 ** attr_handle: Attribute handle of this handle value indication.
600 tGATT_VALUE indication;
619 indication.conn_id = conn_id;
620 indication.handle = attr_handle;
621 indication.len = val_len;
622 memcpy (indication.value, p_val, val_len);
623 indication.auth_req = GATT_AUTH_REQ_NONE;
627 GATT_TRACE_DEBUG ("Add a pending indication");
628 if ((p_buf = gatt_add_pending_ind(p_tcb, &indication)) !=NULL)
640 if ( (p_msg = attp_build_sr_msg (p_tcb, GATT_HANDLE_VALUE_IND, (tGATT_SR_MSG *)&indication)) != NULL)
646 p_tcb->indicate_handle = indication.handle;
661 ** attr_handle: Attribute handle of this handle value indication.