Select one of the symbols to view example projects that use it.
 
Outline
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include "btc/btc_util.h"
#include "bta/bta_av_api.h"
#include "bta/bta_ag_api.h"
#include "bta/bta_hh_api.h"
#include "bta/bta_hd_api.h"
#include "common/bt_defs.h"
#include "stack/btm_api.h"
#include "bta/bta_api.h"
#define ISDIGIT
#define ISXDIGIT
devclass2uint(UINT8 *)
uint2devclass(UINT32, UINT8 *)
base_uuid_be
uuid128_be_to_esp_uuid(esp_bt_uuid_t *, uint8_t *)
uuid_to_string_legacy(bt_uuid_t *, char *)
btc_hci_to_esp_status(uint8_t)
btc_btm_status_to_esp_status(uint8_t)
btc_bta_status_to_esp_status(uint8_t)
bta_to_btc_uuid(esp_bt_uuid_t *, tBT_UUID *)
btc_to_bta_uuid(tBT_UUID *, esp_bt_uuid_t *)
Files
loading...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/bt/host/bluedroid/btc/core/btc_util.c
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2015-2024 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ /************************************************************************************ * * Filename: btc_util.c * * Description: Miscellaneous helper functions * * ***********************************************************************************//* ... */ #include <stdio.h> #include <stdlib.h> #include <string.h> #include <ctype.h> #include "btc/btc_util.h"5 includes #if (BTA_AV_INCLUDED == TRUE) #include "bta/bta_av_api.h" #endif ///BTA_AV_INCLUDED == TRUE #if (BTA_AG_INCLUDED == TRUE) #include "bta/bta_ag_api.h" #endif ///BTA_AG_INCLUDED == TRUE #if (BTA_HH_INCLUDED == TRUE) #include "bta/bta_hh_api.h" #endif ///BTA_HH_INCLUDED == TRUE #include "bta/bta_hd_api.h" #include "common/bt_defs.h" #include "stack/btm_api.h" #include "bta/bta_api.h" /************************************************************************************ ** Constants & Macros ************************************************************************************//* ... */ #define ISDIGIT(a) ((a>='0') && (a<='9')) #define ISXDIGIT(a) (((a>='0') && (a<='9'))||((a>='A') && (a<='F'))||((a>='a') && (a<='f'))) /************************************************************************************ ** Local type definitions ************************************************************************************//* ... */ /************************************************************************************ ** Static variables ************************************************************************************//* ... */ /************************************************************************************ ** Static functions ************************************************************************************//* ... */ /************************************************************************************ ** Externs ************************************************************************************//* ... */ /************************************************************************************ ** Functions ************************************************************************************//* ... */ /***************************************************************************** ** Logging helper functions *****************************************************************************//* ... */ #if(BTA_AV_INCLUDED == TRUE) const char *dump_rc_event(UINT8 event) { switch (event) { CASE_RETURN_STR(BTA_AV_RC_OPEN_EVT) CASE_RETURN_STR(BTA_AV_RC_CLOSE_EVT) CASE_RETURN_STR(BTA_AV_REMOTE_CMD_EVT) CASE_RETURN_STR(BTA_AV_REMOTE_RSP_EVT) CASE_RETURN_STR(BTA_AV_VENDOR_CMD_EVT) CASE_RETURN_STR(BTA_AV_VENDOR_RSP_EVT) CASE_RETURN_STR(BTA_AV_META_MSG_EVT) CASE_RETURN_STR(BTA_AV_RC_FEAT_EVT) default: return "UNKNOWN_EVENT";... }{...} }{...} const char *dump_rc_notification_event_id(UINT8 event_id) { switch (event_id) { CASE_RETURN_STR(AVRC_EVT_PLAY_STATUS_CHANGE) CASE_RETURN_STR(AVRC_EVT_TRACK_CHANGE) CASE_RETURN_STR(AVRC_EVT_TRACK_REACHED_END) CASE_RETURN_STR(AVRC_EVT_TRACK_REACHED_START) CASE_RETURN_STR(AVRC_EVT_PLAY_POS_CHANGED) CASE_RETURN_STR(AVRC_EVT_BATTERY_STATUS_CHANGE) CASE_RETURN_STR(AVRC_EVT_SYSTEM_STATUS_CHANGE) CASE_RETURN_STR(AVRC_EVT_APP_SETTING_CHANGE) CASE_RETURN_STR(AVRC_EVT_VOLUME_CHANGE) default: return "Unhandled Event ID";... }{...} }{...} const char *dump_rc_pdu(UINT8 pdu) { switch (pdu) { CASE_RETURN_STR(AVRC_PDU_LIST_PLAYER_APP_ATTR) CASE_RETURN_STR(AVRC_PDU_LIST_PLAYER_APP_VALUES) CASE_RETURN_STR(AVRC_PDU_GET_CUR_PLAYER_APP_VALUE) CASE_RETURN_STR(AVRC_PDU_SET_PLAYER_APP_VALUE) CASE_RETURN_STR(AVRC_PDU_GET_PLAYER_APP_ATTR_TEXT) CASE_RETURN_STR(AVRC_PDU_GET_PLAYER_APP_VALUE_TEXT) CASE_RETURN_STR(AVRC_PDU_INFORM_DISPLAY_CHARSET) CASE_RETURN_STR(AVRC_PDU_INFORM_BATTERY_STAT_OF_CT) CASE_RETURN_STR(AVRC_PDU_GET_ELEMENT_ATTR) CASE_RETURN_STR(AVRC_PDU_GET_PLAY_STATUS) CASE_RETURN_STR(AVRC_PDU_REGISTER_NOTIFICATION) CASE_RETURN_STR(AVRC_PDU_REQUEST_CONTINUATION_RSP) CASE_RETURN_STR(AVRC_PDU_ABORT_CONTINUATION_RSP) CASE_RETURN_STR(AVRC_PDU_SET_ABSOLUTE_VOLUME) default: return "Unknown PDU";... }{...} }{...} /* ... */#endif ///BTA_AV_INCLUDED == TRUE #if (BTA_AG_INCLUDED == TRUE) const char* dump_hf_conn_state(UINT16 event) { switch(event) { CASE_RETURN_STR(ESP_HF_CONNECTION_STATE_DISCONNECTED) CASE_RETURN_STR(ESP_HF_CONNECTION_STATE_CONNECTING) CASE_RETURN_STR(ESP_HF_CONNECTION_STATE_CONNECTED) CASE_RETURN_STR(ESP_HF_CONNECTION_STATE_SLC_CONNECTED) CASE_RETURN_STR(ESP_HF_CONNECTION_STATE_DISCONNECTING) default: return "UNKNOWN MSG ID";... }{...} }{...} const char* dump_hf_event(UINT16 event) { switch(event) { CASE_RETURN_STR(BTA_AG_ENABLE_EVT) CASE_RETURN_STR(BTA_AG_REGISTER_EVT) CASE_RETURN_STR(BTA_AG_OPEN_EVT) CASE_RETURN_STR(BTA_AG_CLOSE_EVT) CASE_RETURN_STR(BTA_AG_CONN_EVT) CASE_RETURN_STR(BTA_AG_AUDIO_OPEN_EVT) CASE_RETURN_STR(BTA_AG_AUDIO_CLOSE_EVT) CASE_RETURN_STR(BTA_AG_SPK_EVT) CASE_RETURN_STR(BTA_AG_MIC_EVT) CASE_RETURN_STR(BTA_AG_AT_CKPD_EVT) CASE_RETURN_STR(BTA_AG_DISABLE_EVT) #if (BTM_WBS_INCLUDED == TRUE) CASE_RETURN_STR(BTA_AG_WBS_EVT) #endif CASE_RETURN_STR(BTA_AG_AT_A_EVT) CASE_RETURN_STR(BTA_AG_AT_D_EVT) CASE_RETURN_STR(BTA_AG_AT_CHLD_EVT) CASE_RETURN_STR(BTA_AG_AT_CHUP_EVT) CASE_RETURN_STR(BTA_AG_AT_CIND_EVT) CASE_RETURN_STR(BTA_AG_AT_VTS_EVT) CASE_RETURN_STR(BTA_AG_AT_BINP_EVT) CASE_RETURN_STR(BTA_AG_AT_BLDN_EVT) CASE_RETURN_STR(BTA_AG_AT_BVRA_EVT) CASE_RETURN_STR(BTA_AG_AT_NREC_EVT) CASE_RETURN_STR(BTA_AG_AT_CNUM_EVT) CASE_RETURN_STR(BTA_AG_AT_BTRH_EVT) CASE_RETURN_STR(BTA_AG_AT_CLCC_EVT) CASE_RETURN_STR(BTA_AG_AT_COPS_EVT) CASE_RETURN_STR(BTA_AG_AT_UNAT_EVT) CASE_RETURN_STR(BTA_AG_AT_CBC_EVT) CASE_RETURN_STR(BTA_AG_AT_BAC_EVT) CASE_RETURN_STR(BTA_AG_AT_BCS_EVT) default: return "UNKNOWN MSG ID";... }{...} }{...} const char* dump_hf_call_state(esp_hf_call_status_t call_state) { switch(call_state) { CASE_RETURN_STR(ESP_HF_CALL_STATUS_NO_CALLS) CASE_RETURN_STR(ESP_HF_CALL_STATUS_CALL_IN_PROGRESS) default: return "UNKNOWN CALL STATE";... }{...} }{...} const char* dump_hf_call_setup_state(esp_hf_call_setup_status_t call_setup_state) { switch(call_setup_state) { CASE_RETURN_STR(ESP_HF_CALL_SETUP_STATUS_IDLE) CASE_RETURN_STR(ESP_HF_CALL_SETUP_STATUS_INCOMING) CASE_RETURN_STR(ESP_HF_CALL_SETUP_STATUS_OUTGOING_DIALING) CASE_RETURN_STR(ESP_HF_CALL_SETUP_STATUS_OUTGOING_ALERTING) default: return "UNKNOWN CALL SETUP STATE";... }{...} }{...} /* ... */ #endif // #if (BTA_AG_INCLUDED == TRUE) #if (BTA_HH_INCLUDED == TRUE) const char *dump_hh_event(uint16_t event) { switch (event) { CASE_RETURN_STR(BTA_HH_ENABLE_EVT) CASE_RETURN_STR(BTA_HH_DISABLE_EVT) CASE_RETURN_STR(BTA_HH_OPEN_EVT) CASE_RETURN_STR(BTA_HH_CLOSE_EVT) CASE_RETURN_STR(BTA_HH_GET_RPT_EVT) CASE_RETURN_STR(BTA_HH_SET_RPT_EVT) CASE_RETURN_STR(BTA_HH_GET_PROTO_EVT) CASE_RETURN_STR(BTA_HH_SET_PROTO_EVT) CASE_RETURN_STR(BTA_HH_GET_IDLE_EVT) CASE_RETURN_STR(BTA_HH_SET_IDLE_EVT) CASE_RETURN_STR(BTA_HH_GET_DSCP_EVT) CASE_RETURN_STR(BTA_HH_ADD_DEV_EVT) CASE_RETURN_STR(BTA_HH_RMV_DEV_EVT) CASE_RETURN_STR(BTA_HH_VC_UNPLUG_EVT) CASE_RETURN_STR(BTA_HH_DATA_EVT) CASE_RETURN_STR(BTA_HH_API_ERR_EVT) CASE_RETURN_STR(BTA_HH_UPDATE_SCPP_EVT) CASE_RETURN_STR(BTA_HH_DATA_IND_EVT) default: return "UNKNOWN MSG ID";... }{...} }{...} /* ... */#endif ///BTA_HH_INCLUDED #if BTA_HD_INCLUDED == TRUE const char* dump_hd_event(uint16_t event) { switch (event) { CASE_RETURN_STR(BTA_HD_ENABLE_EVT) CASE_RETURN_STR(BTA_HD_DISABLE_EVT) CASE_RETURN_STR(BTA_HD_REGISTER_APP_EVT) CASE_RETURN_STR(BTA_HD_UNREGISTER_APP_EVT) CASE_RETURN_STR(BTA_HD_OPEN_EVT) CASE_RETURN_STR(BTA_HD_CLOSE_EVT) CASE_RETURN_STR(BTA_HD_GET_REPORT_EVT) CASE_RETURN_STR(BTA_HD_SET_REPORT_EVT) CASE_RETURN_STR(BTA_HD_SET_PROTOCOL_EVT) CASE_RETURN_STR(BTA_HD_INTR_DATA_EVT) CASE_RETURN_STR(BTA_HD_VC_UNPLUG_EVT) //CASE_RETURN_STR(BTA_HD_CONN_STATE_EVT) CASE_RETURN_STR(BTA_HD_API_ERR_EVT) default: return "UNKNOWN MSG ID";... }{...} }{...} /* ... */#endif ///BTA_HD_INCLUDED UINT32 devclass2uint(DEV_CLASS dev_class) { UINT32 cod = 0; if (dev_class != NULL) { /* if COD is 0, irrespective of the device type set it to Unclassified device */ cod = (dev_class[2]) | (dev_class[1] << 8) | (dev_class[0] << 16); }{...} return cod; }{ ... } void uint2devclass(UINT32 cod, DEV_CLASS dev_class) { dev_class[2] = (UINT8)cod; dev_class[1] = (UINT8)(cod >> 8); dev_class[0] = (UINT8)(cod >> 16); }{ ... } static const UINT8 base_uuid_be[] = {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x80, 0x00, 0x00, 0x80, 0x5F, 0x9B, 0x34, 0xFB}{...}; void uuid128_be_to_esp_uuid(esp_bt_uuid_t *u, uint8_t* uuid128) { if (memcmp(base_uuid_be+4, uuid128 + 4, 12) != 0) { u->len = ESP_UUID_LEN_128; uint8_t *p_i = uuid128 + ESP_UUID_LEN_128 - 1; uint8_t *p_o = u->uuid.uuid128; uint8_t *p_end = p_o + ESP_UUID_LEN_128; for (; p_o != p_end; *p_o++ = *p_i--) ; }{...} else if (uuid128[0] == 0 && uuid128[1] == 0) { u->len = 2; u->uuid.uuid16 = (uuid128[2] << 8) + uuid128[3]; }{...} else { u->len = 4; u->uuid.uuid32 = (uuid128[2] << 8) + uuid128[3]; u->uuid.uuid32 += (uuid128[0] << 24) + (uuid128[1] << 16); }{...} return; }{ ... } void uuid_to_string_legacy(bt_uuid_t *p_uuid, char *str) { uint32_t uuid0, uuid4; uint16_t uuid1, uuid2, uuid3, uuid5; memcpy(&uuid0, &(p_uuid->uu[0]), 4); memcpy(&uuid1, &(p_uuid->uu[4]), 2); memcpy(&uuid2, &(p_uuid->uu[6]), 2); memcpy(&uuid3, &(p_uuid->uu[8]), 2); memcpy(&uuid4, &(p_uuid->uu[10]), 4); memcpy(&uuid5, &(p_uuid->uu[14]), 2); sprintf((char *)str, "%.8x-%.4x-%.4x-%.4x-%.8x%.4x", ntohl(uuid0), ntohs(uuid1), ntohs(uuid2), ntohs(uuid3), ntohl(uuid4), ntohs(uuid5)); return; }{ ... } esp_bt_status_t btc_hci_to_esp_status(uint8_t hci_status) { esp_bt_status_t esp_status = ESP_BT_STATUS_FAIL; switch(hci_status) { case HCI_SUCCESS: esp_status = ESP_BT_STATUS_SUCCESS; break;... case HCI_ERR_HOST_TIMEOUT: esp_status = ESP_BT_STATUS_TIMEOUT; break;... case HCI_ERR_ILLEGAL_COMMAND: esp_status = ESP_BT_STATUS_PENDING; break;... case HCI_ERR_UNACCEPT_CONN_INTERVAL: esp_status = ESP_BT_STATUS_UNACCEPT_CONN_INTERVAL; break;... case HCI_ERR_PARAM_OUT_OF_RANGE: esp_status = ESP_BT_STATUS_PARAM_OUT_OF_RANGE; break;... case HCI_ERR_ILLEGAL_PARAMETER_FMT: esp_status = ESP_BT_STATUS_ERR_ILLEGAL_PARAMETER_FMT; break;... case HCI_ERR_UNSUPPORTED_VALUE: esp_status = ESP_BT_STATUS_UNSUPPORTED; break;... default: esp_status = hci_status | ESP_BT_STATUS_BASE_FOR_HCI_ERR; break;... }{...} return esp_status; }{ ... } esp_bt_status_t btc_btm_status_to_esp_status(uint8_t btm_status) { esp_bt_status_t esp_status = ESP_BT_STATUS_FAIL; switch(btm_status) { case BTM_SUCCESS: esp_status = ESP_BT_STATUS_SUCCESS; break;... case BTM_BUSY: esp_status = ESP_BT_STATUS_BUSY; break;... case BTM_NO_RESOURCES: esp_status = ESP_BT_STATUS_NOMEM; break;... case BTM_ILLEGAL_VALUE: esp_status = ESP_BT_STATUS_PARM_INVALID; break;... case BTM_ERR_PROCESSING: esp_status = ESP_BT_STATUS_PENDING; break;... case BTM_PEER_LE_DATA_LEN_UNSUPPORTED: esp_status = ESP_BT_STATUS_PEER_LE_DATA_LEN_UNSUPPORTED; break;... case BTM_CONTROL_LE_DATA_LEN_UNSUPPORTED: esp_status = ESP_BT_STATUS_CONTROL_LE_DATA_LEN_UNSUPPORTED; break;... case BTM_SET_PRIVACY_SUCCESS: esp_status = ESP_BT_STATUS_SUCCESS; break;... case BTM_SET_PRIVACY_FAIL: esp_status = ESP_BT_STATUS_FAIL; break;... default: if (btm_status & BTM_HCI_ERROR) { esp_status = ESP_BT_STATUS_BASE_FOR_HCI_ERR | (btm_status & 0x7F); }{...} else { esp_status = ESP_BT_STATUS_FAIL; }{...} break;... }{...} return esp_status; }{ ... } esp_bt_status_t btc_bta_status_to_esp_status(uint8_t bta_status) { esp_bt_status_t esp_status = ESP_BT_STATUS_FAIL; switch(bta_status){ case BTA_SUCCESS: esp_status = ESP_BT_STATUS_SUCCESS; break;... case BTA_FAILURE: esp_status = ESP_BT_STATUS_FAIL; break;... case BTA_PENDING: esp_status = ESP_BT_STATUS_PENDING; break;... case BTA_BUSY: esp_status = ESP_BT_STATUS_BUSY; break;... case BTA_NO_RESOURCES: esp_status = ESP_BT_STATUS_NOMEM; break;... case BTA_WRONG_MODE: esp_status = ESP_BT_STATUS_NOT_READY; break;... case BTA_EIR_TOO_LARGE: esp_status = ESP_BT_STATUS_EIR_TOO_LARGE; break;... default: esp_status = ESP_BT_STATUS_FAIL; break;... }{...} return esp_status; }{ ... } void bta_to_btc_uuid(esp_bt_uuid_t *p_dest, tBT_UUID *p_src) { p_dest->len = p_src->len; if (p_src->len == LEN_UUID_16) { p_dest->uuid.uuid16 = p_src->uu.uuid16; }{...} else if (p_src->len == LEN_UUID_32) { p_dest->uuid.uuid32 = p_src->uu.uuid32; }{...} else if (p_src->len == LEN_UUID_128) { memcpy(&p_dest->uuid.uuid128, p_src->uu.uuid128, p_dest->len); }{...} else if (p_src->len == 0) { /* do nothing for now, there's some scenario will input 0 such as, receive notify, the descriptor may be 0 *//* ... */ }{...} else { BTC_TRACE_ERROR("%s UUID len is invalid %d\n", __func__, p_src->len); }{...} }{ ... } void btc_to_bta_uuid(tBT_UUID *p_dest, esp_bt_uuid_t *p_src) { p_dest->len = p_src->len; if (p_src->len == LEN_UUID_16) { p_dest->uu.uuid16 = p_src->uuid.uuid16; }{...} else if (p_src->len == LEN_UUID_32) { p_dest->uu.uuid32 = p_src->uuid.uuid32; }{...} else if (p_src->len == LEN_UUID_128) { memcpy(&p_dest->uu.uuid128, p_src->uuid.uuid128, p_dest->len); }{...} else if (p_src->len == 0) { /* do nothing for now, there's some scenario will input 0 */ }{...} else { BTC_TRACE_ERROR("%s UUID len is invalid %d\n", __func__, p_src->len); }{...} }{ ... }
Details
Show:
from
Types: Columns:
This file uses the notable symbols shown below. Click anywhere in the file to view more details.