Home | History | Annotate | Download | only in gatt

Lines Matching refs:indication

585 ** Description      This function sends a handle value indication to a client.
588 ** attr_handle: Attribute handle of this handle value indication.
599 tGATT_VALUE indication;
618 indication.conn_id = conn_id;
619 indication.handle = attr_handle;
620 indication.len = val_len;
621 memcpy (indication.value, p_val, val_len);
622 indication.auth_req = GATT_AUTH_REQ_NONE;
626 GATT_TRACE_DEBUG ("Add a pending indication");
627 if ((p_buf = gatt_add_pending_ind(p_tcb, &indication)) !=NULL)
639 if ( (p_msg = attp_build_sr_msg (p_tcb, GATT_HANDLE_VALUE_IND, (tGATT_SR_MSG *)&indication)) != NULL)
645 p_tcb->indicate_handle = indication.handle;
660 ** attr_handle: Attribute handle of this handle value indication.