Home
last modified time | relevance | path

Searched refs:label (Results 1 – 25 of 76) sorted by relevance

1234

/hal_espressif-latest/tools/esptool_py/docs/en/advanced-topics/diag/
Ddownload_procedure_chart.diag12 start [label = "Start", shape = flowchart.terminator];
13 sync [label = "Synchronization", shape = box];
14 success_cond [label = "Success?", shape = flowchart.condition];
15 erase_data [label = "Erase data", shape = box];
16 transmit_data [label = "Transmit data", shape = box];
17 finish_cond [label = "Finish?", shape = flowchart.condition];
18 transmit_finish [label = "Transmit finish frame", shape = box];
19 finish [label = "Finish", shape = flowchart.terminator];
20 // fake nodes to adjust shape and edge label position
26 success_cond -> erase_data [label = "Yes"];
[all …]
/hal_espressif-latest/components/bt/host/bluedroid/stack/include/stack/
Davdtc_api.h90 extern void AVDTC_DiscoverRsp(BD_ADDR bd_addr, UINT8 label,
102 extern void AVDTC_GetCapRsp(BD_ADDR bd_addr, UINT8 label, tAVDT_CFG *p_cap);
113 extern void AVDTC_GetAllCapRsp(BD_ADDR bd_addr, UINT8 label, tAVDT_CFG *p_cap);
135 extern void AVDTC_GetConfigRsp(UINT8 handle, UINT8 label, tAVDT_CFG *p_cfg);
157 extern void AVDTC_OpenRsp(UINT8 handle, UINT8 label);
168 extern void AVDTC_StartRsp(UINT8 *p_handles, UINT8 num_handles, UINT8 label);
179 extern void AVDTC_CloseRsp(UINT8 handle, UINT8 label);
190 extern void AVDTC_SuspendRsp(UINT8 *p_handles, UINT8 num_handles, UINT8 label);
212 extern void AVDTC_AbortRsp(UINT8 handle, UINT8 label);
223 extern void AVDTC_Rej(UINT8 handle, BD_ADDR bd_addr, UINT8 cmd, UINT8 label,
Davrc_api.h153 typedef void (tAVRC_MSG_CBACK) (UINT8 handle, UINT8 label, UINT8 opcode,
364 extern UINT16 AVRC_MsgReq (UINT8 handle, UINT8 label, UINT8 ctype, BT_HDR *p_pkt);
387 extern UINT16 AVRC_UnitCmd(UINT8 handle, UINT8 label);
414 extern UINT16 AVRC_SubCmd(UINT8 handle, UINT8 label, UINT8 page);
440 extern UINT16 AVRC_PassCmd(UINT8 handle, UINT8 label, tAVRC_MSG_PASS *p_msg);
467 extern UINT16 AVRC_PassRsp(UINT8 handle, UINT8 label, tAVRC_MSG_PASS *p_msg);
493 extern UINT16 AVRC_VendorCmd(UINT8 handle, UINT8 label, tAVRC_MSG_VENDOR *p_msg);
521 extern UINT16 AVRC_VendorRsp(UINT8 handle, UINT8 label, tAVRC_MSG_VENDOR *p_msg);
Davct_api.h108 typedef void (tAVCT_MSG_CBACK)(UINT8 handle, UINT8 label, UINT8 cr,
272 extern UINT16 AVCT_MsgReq(UINT8 handle, UINT8 label, UINT8 cr, BT_HDR *p_msg);
/hal_espressif-latest/components/xtensa/include/xtensa/
Dcacheattrasm.h182 .macro _cacheattr_is_enabled label
188 bbsi.l a5, 0, \label // if CA indicates cache enabled, jump to label
195 .macro _cacheattr_is_enabled label
196 j \label // macro not applicable, assume caches always enabled
214 .macro icacheattr_is_enabled label
219 _cacheattr_is_enabled \label
234 .macro dcacheattr_is_enabled label
239 _cacheattr_is_enabled \label
254 .macro cacheattr_is_enabled label
261 _cacheattr_is_enabled \label
[all …]
/hal_espressif-latest/components/bt/host/bluedroid/stack/avct/include/
Davct_defs.h51 #define AVCT_BLD_HDR(p, label, type, cr_ipid) \ argument
52 *(p)++ = ((label) << 4) | ((type) << 2) | (cr_ipid);
54 #define AVCT_PRS_HDR(p, label, type, cr_ipid) \ argument
55 label = *(p) >> 4; \
/hal_espressif-latest/components/bt/host/bluedroid/stack/avrc/
Davrc_opt.c100 UINT16 AVRC_UnitCmd(UINT8 handle, UINT8 label) in AVRC_UnitCmd() argument
116 return AVCT_MsgReq( handle, label, AVCT_CMD, p_cmd); in AVRC_UnitCmd()
144 UINT16 AVRC_SubCmd(UINT8 handle, UINT8 label, UINT8 page) in AVRC_SubCmd() argument
161 return AVCT_MsgReq( handle, label, AVCT_CMD, p_cmd); in AVRC_SubCmd()
187 UINT16 AVRC_VendorCmd(UINT8 handle, UINT8 label, tAVRC_MSG_VENDOR *p_msg) in AVRC_VendorCmd() argument
191 return AVCT_MsgReq( handle, label, AVCT_CMD, p_buf); in AVRC_VendorCmd()
223 UINT16 AVRC_VendorRsp(UINT8 handle, UINT8 label, tAVRC_MSG_VENDOR *p_msg) in AVRC_VendorRsp() argument
227 return AVCT_MsgReq( handle, label, AVCT_RSP, p_buf); in AVRC_VendorRsp()
Davrc_api.c187 static void avrc_send_continue_frag(UINT8 handle, UINT8 label) in avrc_send_continue_frag() argument
199 __func__, handle, label, p_pkt->len); in avrc_send_continue_frag()
242 AVCT_MsgReq( handle, label, cr, p_pkt); in avrc_send_continue_frag()
254 static BT_HDR *avrc_proc_vendor_command(UINT8 handle, UINT8 label, in avrc_proc_vendor_command() argument
293 AVCT_MsgReq( handle, label, AVCT_RSP, p_pkt); in avrc_proc_vendor_command()
299 avrc_send_continue_frag(handle, label); in avrc_proc_vendor_command()
354 static UINT8 avrc_proc_far_msg(UINT8 handle, UINT8 label, UINT8 cr, BT_HDR **pp_pkt, in avrc_proc_far_msg() argument
475 p_rsp = avrc_proc_vendor_command(handle, label, *pp_pkt, p_msg); in avrc_proc_far_msg()
477 AVCT_MsgReq( handle, label, AVCT_RSP, p_rsp); in avrc_proc_far_msg()
491 AVRC_MsgReq (handle, (UINT8)(label), AVRC_CMD_CTRL, p_cmd); in avrc_proc_far_msg()
[all …]
/hal_espressif-latest/tools/esptool_py/ci/
Dsetup_softhsm2.sh4 softhsm2-util --init-token --label softhsm-test-token --pin 1234 --so-pin 123456 --slot 0
5 softhsm2-util --init-token --label softhsm-test-token-1 --pin 1234 --so-pin 123456 --slot 1
6 softhsm2-util --init-token --label softhsm-test-token-2 --pin 1234 --so-pin 123456 --slot 2
7 softhsm2-util --init-token --label softhsm-test-token-3 --pin 1234 --so-pin 123456 --slot 3
/hal_espressif-latest/components/bootloader_support/src/
Dbootloader_common.c55 bool bootloader_common_label_search(const char *list, char *label) in bootloader_common_label_search() argument
57 if (list == NULL || label == NULL) { in bootloader_common_label_search()
60 const char *sub_list_start_like_label = strstr(list, label); in bootloader_common_label_search()
68 int len_label = strlen(label); in bootloader_common_label_search()
82 sub_list_start_like_label = strstr(&sub_list_start_like_label[pos_delim], label); in bootloader_common_label_search()
/hal_espressif-latest/components/wpa_supplicant/src/crypto/
Dsha256-prf.c30 int sha256_prf(const u8 *key, size_t key_len, const char *label, in sha256_prf() argument
33 return sha256_prf_bits(key, key_len, label, data, data_len, buf, in sha256_prf()
54 int sha256_prf_bits(const u8 *key, size_t key_len, const char *label, in sha256_prf_bits() argument
68 addr[1] = (u8 *) label; in sha256_prf_bits()
69 len[1] = os_strlen(label); in sha256_prf_bits()
Dsha384-prf.c30 int sha384_prf(const u8 *key, size_t key_len, const char *label, in sha384_prf() argument
33 return sha384_prf_bits(key, key_len, label, data, data_len, buf, in sha384_prf()
54 int sha384_prf_bits(const u8 *key, size_t key_len, const char *label, in sha384_prf_bits() argument
68 addr[1] = (u8 *) label; in sha384_prf_bits()
69 len[1] = os_strlen(label); in sha384_prf_bits()
Dsha256.h18 int sha256_prf(const u8 *key, size_t key_len, const char *label,
20 int sha256_prf_bits(const u8 *key, size_t key_len, const char *label,
24 const char *label, const u8 *seed, size_t seed_len,
27 const char *label, const u8 *seed, size_t seed_len,
Dsha384.h19 int sha384_prf(const u8 *key, size_t key_len, const char *label,
21 int sha384_prf_bits(const u8 *key, size_t key_len, const char *label,
25 const char *label, const u8 *seed, size_t seed_len,
28 const char *label, const u8 *seed, size_t seed_len,
Dsha1-tlsprf.c30 int tls_prf_sha1_md5(const u8 *secret, size_t secret_len, const char *label, in tls_prf_sha1_md5() argument
45 MD5_addr[1] = (unsigned char *) label; in tls_prf_sha1_md5()
46 MD5_len[1] = os_strlen(label); in tls_prf_sha1_md5()
52 SHA1_addr[1] = (unsigned char *) label; in tls_prf_sha1_md5()
53 SHA1_len[1] = os_strlen(label); in tls_prf_sha1_md5()
Dsha256-kdf.c33 const char *label, const u8 *seed, size_t seed_len, in hmac_sha256_kdf() argument
44 if (label) { in hmac_sha256_kdf()
45 addr[1] = (const unsigned char *) label; in hmac_sha256_kdf()
46 len[1] = os_strlen(label) + 1; in hmac_sha256_kdf()
Dsha1-prf.c30 int sha1_prf(const u8 *key, size_t key_len, const char *label, in sha1_prf() argument
36 size_t label_len = os_strlen(label) + 1; in sha1_prf()
40 addr[0] = (u8 *) label; in sha1_prf()
Dsha256-tlsprf.c29 int tls_prf_sha256(const u8 *secret, size_t secret_len, const char *label, in tls_prf_sha256() argument
41 addr[1] = (unsigned char *) label; in tls_prf_sha256()
42 len[1] = os_strlen(label); in tls_prf_sha256()
Dsha384-tlsprf.c29 int tls_prf_sha384(const u8 *secret, size_t secret_len, const char *label, in tls_prf_sha384() argument
41 addr[1] = (unsigned char *) label; in tls_prf_sha384()
42 len[1] = os_strlen(label); in tls_prf_sha384()
Dsha1-tprf.c29 int sha1_t_prf(const u8 *key, size_t key_len, const char *label, in sha1_t_prf() argument
35 size_t label_len = os_strlen(label); in sha1_t_prf()
42 addr[1] = (unsigned char *) label; in sha1_t_prf()
Dsha1.h18 int sha1_prf(const u8 *key, size_t key_len, const char *label,
20 int sha1_t_prf(const u8 *key, size_t key_len, const char *label,
23 const char *label, const u8 *seed,
/hal_espressif-latest/components/bt/host/bluedroid/bta/av/
Dbta_av_api.c425 void BTA_AvRemoteCmd(UINT8 rc_handle, UINT8 label, tBTA_AV_RC rc_id, tBTA_AV_STATE key_state) in BTA_AvRemoteCmd() argument
436 p_buf->label = label; in BTA_AvRemoteCmd()
452 void BTA_AvVendorCmd(UINT8 rc_handle, UINT8 label, tBTA_AV_CODE cmd_code, UINT8 *p_data, UINT16 len) in BTA_AvVendorCmd() argument
463 p_buf->label = label; in BTA_AvVendorCmd()
487 void BTA_AvVendorRsp(UINT8 rc_handle, UINT8 label, tBTA_AV_CODE rsp_code, UINT8 *p_data, UINT16 len… in BTA_AvVendorRsp() argument
502 p_buf->label = label; in BTA_AvVendorRsp()
567 void BTA_AvMetaRsp(UINT8 rc_handle, UINT8 label, tBTA_AV_CODE rsp_code, in BTA_AvMetaRsp() argument
578 p_buf->label = label; in BTA_AvMetaRsp()
600 void BTA_AvMetaCmd(UINT8 rc_handle, UINT8 label, tBTA_AV_CMD cmd_code, BT_HDR *p_pkt) in BTA_AvMetaCmd() argument
610 p_buf->label = label; in BTA_AvMetaCmd()
/hal_espressif-latest/components/wpa_supplicant/src/eap_peer/
Deap_peap_common.c19 const char *label, const u8 *seed, size_t seed_len, in peap_prfplus() argument
25 size_t label_len = os_strlen(label); in peap_prfplus()
32 addr[1] = (unsigned char *) label; in peap_prfplus()
/hal_espressif-latest/components/bt/host/bluedroid/btc/profile/std/avrc/
Dbtc_avrc.c31 static void send_reject_response (UINT8 rc_handle, UINT8 label, UINT8 pdu, UINT8 status);
37 static void btc_rc_upstreams_evt(UINT16 event, tAVRC_COMMAND *pavrc_cmd, UINT8 ctype, UINT8 label);
289 static void send_metamsg_rsp (UINT8 rc_handle, UINT8 label, tBTA_AV_CODE code, in send_metamsg_rsp() argument
300 rc_handle, label, code, p_meta_rsp->rsp.pdu); in send_metamsg_rsp()
334 … BTA_AvMetaRsp(btc_rc_cb.rc_handle, btc_rc_cb.rc_ntf[event_id - 1].label, ctype, p_msg); in send_metamsg_rsp()
348 BTA_AvMetaRsp(rc_handle, label, ctype, p_msg); in send_metamsg_rsp()
376 static void send_reject_response (UINT8 rc_handle, UINT8 label, UINT8 pdu, UINT8 status) in send_reject_response() argument
390 BTA_AvMetaRsp(rc_handle, label, ctype, p_msg); in send_reject_response()
678 avrc_command.cmd.pdu, p_meta_msg->label); in handle_rc_metamsg_cmd()
684 send_reject_response(p_meta_msg->rc_handle, p_meta_msg->label, avrc_command.pdu, status); in handle_rc_metamsg_cmd()
[all …]
/hal_espressif-latest/components/bt/host/bluedroid/bta/include/bta/
Dbta_av_api.h427 UINT8 label; member
438 UINT8 label; member
445 UINT8 label; member
455 UINT8 label; member
781 void BTA_AvRemoteCmd(UINT8 rc_handle, UINT8 label, tBTA_AV_RC rc_id,
795 void BTA_AvVendorCmd(UINT8 rc_handle, UINT8 label, tBTA_AV_CODE cmd_code,
810 void BTA_AvVendorRsp(UINT8 rc_handle, UINT8 label, tBTA_AV_CODE rsp_code,
849 void BTA_AvMetaRsp(UINT8 rc_handle, UINT8 label, tBTA_AV_CODE rsp_code,
866 void BTA_AvMetaCmd(UINT8 rc_handle, UINT8 label, tBTA_AV_CMD cmd_code, BT_HDR *p_pkt);

1234