Lines Matching full:uuid

95     buf = os_mbuf_extend(*om, ble_uuid_length(svc->uuid));  in STATS_NAME()
100 ble_uuid_flat(svc->uuid, buf); in STATS_NAME()
127 /* Only include the service UUID if it has a 16-bit representation. */ in ble_gatts_inc_access()
128 uuid16 = ble_uuid_u16(entry->svc->uuid); in ble_gatts_inc_access()
251 buf = os_mbuf_extend(*om, ble_uuid_length(chr->uuid)); in ble_gatts_chr_def_access()
256 ble_uuid_flat(chr->uuid, buf); in ble_gatts_chr_def_access()
264 if (chr->uuid == NULL) { in ble_gatts_chr_is_sane()
537 if (dsc->uuid == NULL) { in ble_gatts_dsc_is_sane()
563 rc = ble_att_svr_register(dsc->uuid, dsc->att_flags, dsc->min_key_size, in ble_gatts_register_dsc()
840 rc = ble_att_svr_register(chr->uuid, att_flags, chr->min_key_size, in ble_gatts_register_chr()
871 for (dsc = chr->descriptors; dsc->uuid != NULL; dsc++) { in ble_gatts_register_chr()
886 ble_gatts_svc_type_to_uuid(uint8_t svc_type, const ble_uuid_t **uuid) in ble_gatts_svc_type_to_uuid() argument
890 *uuid = uuid_pri; in ble_gatts_svc_type_to_uuid()
894 *uuid = uuid_sec; in ble_gatts_svc_type_to_uuid()
911 if (svc->uuid == NULL) { in ble_gatts_svc_is_sane()
925 const ble_uuid_t *uuid; in ble_gatts_register_svc() local
939 uuid = NULL; in ble_gatts_register_svc()
941 rc = ble_gatts_svc_type_to_uuid(svc->type, &uuid); in ble_gatts_register_svc()
947 rc = ble_att_svr_register(uuid, BLE_ATT_F_READ, 0, out_handle, in ble_gatts_register_svc()
975 for (chr = svc->characteristics; chr->uuid != NULL; chr++) { in ble_gatts_register_svc()
1176 ble_uuid16_t uuid = BLE_UUID16_INIT(BLE_ATT_UUID_CHARACTERISTIC); in ble_gatts_start() local
1253 while ((ha = ble_att_svr_find_by_uuid(ha, &uuid.u, 0xffff)) != NULL) { in ble_gatts_start()
1758 ble_gatts_find_svc_entry(const ble_uuid_t *uuid) in ble_gatts_find_svc_entry() argument
1765 if (ble_uuid_cmp(uuid, entry->svc->uuid) == 0) { in ble_gatts_find_svc_entry()
1825 ble_gatts_find_svc(const ble_uuid_t *uuid, uint16_t *out_handle) in ble_gatts_find_svc() argument
1829 entry = ble_gatts_find_svc_entry(uuid); in ble_gatts_find_svc()
2012 for (c = 0; svc->characteristics[c].uuid != NULL; c++) { in ble_gatts_count_resources()
2044 for (d = 0; chr->descriptors[d].uuid != NULL; d++) { in ble_gatts_count_resources()