Home
last modified time | relevance | path

Searched refs:name_len (Results 1 – 13 of 13) sorted by relevance

/hal_espressif-3.7.0/components/mbedtls/esp_crt_bundle/
Desp_crt_bundle.c104 size_t name_len = 0; in esp_crt_verify_callback() local
114 name_len = s_crt_bundle.crts[middle][0] << 8 | s_crt_bundle.crts[middle][1]; in esp_crt_verify_callback()
117 int cmp_res = memcmp(child->issuer_raw.p, crt_name, name_len ); in esp_crt_verify_callback()
132 … esp_crt_check_signature(child, s_crt_bundle.crts[middle] + CRT_HEADER_OFFSET + name_len, key_len); in esp_crt_verify_callback()
182 size_t name_len = cur_crt[0] << 8 | cur_crt[1]; in esp_crt_bundle_init() local
184 cur_crt = cur_crt + CRT_HEADER_OFFSET + name_len + key_len; in esp_crt_bundle_init()
Dgen_crt_bundle.py133 name_len = len(sub_name_der)
135 len_data = struct.pack('>HH', name_len, key_len)
/hal_espressif-3.7.0/components/bt/host/bluedroid/stack/hid/
Dhidh_api.c85 UINT16 name_len; in hidh_get_str_attr() local
88 if ((name_len = SDP_DISC_ATTR_LEN(p_attr->attr_len_type)) < max_len ) { in hidh_get_str_attr()
89 memcpy( str, (char *) p_attr->attr_value.v.array, name_len ); in hidh_get_str_attr()
90 str[name_len] = '\0'; in hidh_get_str_attr()
/hal_espressif-3.7.0/components/bt/esp_ble_mesh/mesh_core/
Dproxy_server.c1131 size_t name_len = strlen(name); in gatt_proxy_adv_create() local
1135 if (name_len > sd_space) { in gatt_proxy_adv_create()
1140 proxy_sd->data_len = name_len; in gatt_proxy_adv_create()
1333 size_t name_len = strlen(name); in gatt_prov_adv_create() local
1355 if (sd_space > 2 && name_len > 0) { in gatt_prov_adv_create()
1358 if (sd_space < name_len) { in gatt_prov_adv_create()
1363 prov_sd[prov_sd_len].data_len = name_len; in gatt_prov_adv_create()
/hal_espressif-3.7.0/components/bt/common/api/include/api/
Desp_blufi_api.h237 int name_len; /*!< Username length */ member
/hal_espressif-3.7.0/components/wpa_supplicant/src/ap/
Dap_config.h154 u8 name_len;
/hal_espressif-3.7.0/components/bt/common/btc/profile/esp/blufi/
Dblufi_protocol.c186 param.username.name_len = len; in btc_blufi_protocol_handler()
Dblufi_prf.c481 dst->username.name = osi_malloc(src->username.name_len); in btc_blufi_cb_deep_copy()
485 memcpy(dst->username.name, src->username.name, src->username.name_len); in btc_blufi_cb_deep_copy()
/hal_espressif-3.7.0/components/bt/common/btc/profile/esp/blufi/nimble_host/
Desp_blufi.c383 fields.name_len = strlen(name); in esp_blufi_adv_start()
/hal_espressif-3.7.0/components/wpa_supplicant/src/common/
Ddpp.c1813 size_t len, name_len; in dpp_build_conf_req_helper() local
1828 name_len = os_strlen(dpp_name); in dpp_build_conf_req_helper()
1830 len = 100 + name_len * 6 + 1 + int_array_len(opclasses) * 4; in dpp_build_conf_req_helper()
1838 if (json_add_string_escape(json, "name", dpp_name, name_len) < 0) { in dpp_build_conf_req_helper()
/hal_espressif-3.7.0/components/bt/host/bluedroid/stack/include/stack/
Dbtm_api.h3747 BT_OCTET16 r, UINT8 name_len);
/hal_espressif-3.7.0/tools/esptool_py/flasher_stub/
Dminiz.c4315 size_t name_len, comment_len; in mz_zip_reader_locate_file_v2() local
4332 name_len = strlen(pName); in mz_zip_reader_locate_file_v2()
4333 if (name_len > MZ_UINT16_MAX) in mz_zip_reader_locate_file_v2()
4345 if (filename_len < name_len) in mz_zip_reader_locate_file_v2()
4366 … if ((filename_len == name_len) && (mz_zip_string_equal(pName, pFilename, filename_len, flags))) in mz_zip_reader_locate_file_v2()
/hal_espressif-3.7.0/components/bt/host/bluedroid/stack/btm/
Dbtm_sec.c1743 BT_OCTET16 r, UINT8 name_len) in BTM_BuildOobData() argument
1792 name_size = name_len; in BTM_BuildOobData()