Home
last modified time | relevance | path

Searched refs:si (Results 1 – 4 of 4) sorted by relevance

/hal_espressif-3.4.0/components/bt/host/bluedroid/bta/jv/
Dbta_jv_api.c921 UINT32 si = BTA_JV_RFC_HDL_TO_SIDX(handle); in BTA_JvRfcommClose() local
925 si < BTA_JV_MAX_RFC_SR_SESSION && bta_jv_cb.rfc_cb[hi].rfc_hdl[si] && in BTA_JvRfcommClose()
930 p_msg->p_pcb = &bta_jv_cb.port_cb[p_msg->p_cb->rfc_hdl[si] - 1]; in BTA_JvRfcommClose()
1029 UINT32 si = BTA_JV_RFC_HDL_TO_SIDX(handle); in BTA_JvRfcommRead() local
1033 si < BTA_JV_MAX_RFC_SR_SESSION && bta_jv_cb.rfc_cb[hi].rfc_hdl[si] && in BTA_JvRfcommRead()
1041 p_msg->p_pcb = &bta_jv_cb.port_cb[p_msg->p_cb->rfc_hdl[si] - 1]; in BTA_JvRfcommRead()
1062 UINT32 si = BTA_JV_RFC_HDL_TO_SIDX(handle); in BTA_JvRfcommGetPortHdl() local
1065 si < BTA_JV_MAX_RFC_SR_SESSION && bta_jv_cb.rfc_cb[hi].rfc_hdl[si]) { in BTA_JvRfcommGetPortHdl()
1066 return bta_jv_cb.port_cb[bta_jv_cb.rfc_cb[hi].rfc_hdl[si] - 1].port_handle; in BTA_JvRfcommGetPortHdl()
1089 UINT32 si = BTA_JV_RFC_HDL_TO_SIDX(handle); in BTA_JvRfcommReady() local
[all …]
Dbta_jv_act.c369 int si = BTA_JV_RFC_HDL_TO_SIDX(p_pcb->handle); in bta_jv_free_rfc_cb() local
370 if (0 <= si && si < BTA_JV_MAX_RFC_SR_SESSION) { in bta_jv_free_rfc_cb()
371 p_cb->rfc_hdl[si] = 0; in bta_jv_free_rfc_cb()
388 p_cb->curr_sess, listen, si); in bta_jv_free_rfc_cb()
391 0 <= si && in bta_jv_free_rfc_cb()
392 si < BTA_JV_MAX_RFC_SR_SESSION) { in bta_jv_free_rfc_cb()
395 …BTA_JV_DEF_RFC_MTU, (UINT8 *)bd_addr_any, &(p_cb->rfc_hdl[si]), bta_jv_port_mgmt_sr_cback) == PORT… in bta_jv_free_rfc_cb()
396 (p_cb->rfc_hdl[si] != 0)) { in bta_jv_free_rfc_cb()
398 p_pcb = &bta_jv_cb.port_cb[p_cb->rfc_hdl[si] - 1]; in bta_jv_free_rfc_cb()
400 p_pcb->port_handle = p_cb->rfc_hdl[si]; in bta_jv_free_rfc_cb()
[all …]
/hal_espressif-3.4.0/components/fatfs/src/
Dff.c2123 UINT di, si, nc; local
2126 si = SZDIRE * 2; /* 1st C1 entry */
2129 if (si >= MAXDIRB(FF_MAX_LFN)) { di = 0; break; } /* Truncated directory block? */
2130 if ((si % SZDIRE) == 0) si += 2; /* Skip entry type field */
2131 wc = ld_word(dirb + si); si += 2; nc++; /* Get a character */
2650 UINT si, di; local
2672 si = di = hs = 0;
2673 while (fs->lfnbuf[si] != 0) {
2674 wc = fs->lfnbuf[si++]; /* Get an LFN character (UTF-16) */
2688 si = di = 0;
[all …]
/hal_espressif-3.4.0/components/esptool_py/esptool/esptool/
Dcmds.py1131 si = esp.get_security_info()
1133 print("Flags: {:#010x} ({})".format(si["flags"], bin(si["flags"])))
1134 print("Flash_Crypt_Cnt: {:#x}".format(si["flash_crypt_cnt"]))
1135 print("Key_Purposes: {}".format(si["key_purposes"]))
1136 if si["chip_id"] is not None and si["api_version"] is not None:
1137 print("Chip_ID: {}".format(si["chip_id"]))
1138 print("Api_Version: {}".format(si["api_version"]))