Home | History | Annotate | Download | only in gatt

Lines Matching refs:handle

46                                                 UINT16 handle, UINT16 offset, UINT32 trans_id);
305 ** s_handle: starting handle of the range we are looking for.
306 ** e_handle: ending handle of the range we are looking for.
338 while (p_attr && p_attr->handle <= e_handle)
351 if (p_attr->handle >= s_handle && gatt_uuid_compare(type, attr_uuid))
359 UINT16_TO_STREAM (p, p_attr->handle);
365 status = gatts_send_app_read_request(p_tcb, op_code, p_attr->handle, 0, trans_id);
389 *p_cur_handle = p_attr->handle;
434 return p_attr->handle;
486 p_char_decl->p_value->char_decl.char_val_handle = p_char_val->handle;
490 return p_char_val->handle;
574 return p_char_dscptr->handle;
585 ** Description Query attribute value by attribute handle.
588 ** handle: Attribute handle to read.
603 UINT16 handle, UINT16 offset,
618 while (p_attr && handle >= p_attr->handle)
620 if (p_attr->handle == handle)
628 status = gatts_send_app_read_request(p_tcb, op_code, p_attr->handle, offset, trans_id);
646 ** handle: Attribute handle to read.
660 UINT16 handle,
671 while (p_attr && handle >= p_attr->handle)
673 if (p_attr->handle == handle)
694 ** handle: handle of the attribute to write.
705 UINT16 handle, UINT16 offset, UINT8 *p_data,
714 GATT_TRACE_DEBUG6( "gatts_write_attr_perm_check op_code=0x%0x handle=0x%04x offset=%d len=%d sec_flag=0x%0x key_size=%d",
715 op_code, handle, offset, len, sec_flag, key_size);
723 if (p_attr->handle == handle)
898 GATT_TRACE_DEBUG2("handle space full. handle_max = %d next_handle = %d",
931 p_attr16->handle = p_db->next_handle++;
950 GATT_TRACE_DEBUG3("=====> handle = [0x%04x] uuid = [0x%04x] perm=0x%02x ",
951 p_attr16->handle, p_attr16->uuid, p_attr16->permission);
955 GATT_TRACE_DEBUG4("=====> handle = [0x%04x] uuid128 = [0x%02x:0x%02x] perm=0x%02x ",
956 p_attr128->handle, p_attr128->uuid[0],p_attr128->uuid[1],
1085 UINT16 handle, UINT16 offset, UINT32 trans_id)
1092 i_rcb = gatt_sr_find_i_rcb_by_handle(handle);
1098 trans_id = gatt_sr_enqueue_cmd(p_tcb, op_code, handle);
1106 sr_data.read_req.handle = handle;