Searched refs:maxlen (Results 1 – 6 of 6) sorted by relevance
/hal_espressif-latest/components/wpa_supplicant/src/utils/ |
D | common.c | 147 void printf_encode(char *txt, size_t maxlen, const u8 *data, size_t len) in printf_encode() argument 149 char *end = txt + maxlen; in printf_encode() 196 size_t printf_decode(u8 *buf, size_t maxlen, const char *str) in printf_decode() argument 203 if (len + 1 >= maxlen) in printf_decode() 271 if (maxlen > len) in printf_decode()
|
D | json.h | 34 void json_escape_string(char *txt, size_t maxlen, const char *data, size_t len);
|
D | common.h | 410 void printf_encode(char *txt, size_t maxlen, const u8 *data, size_t len); 411 size_t printf_decode(u8 *buf, size_t maxlen, const char *str);
|
D | json.c | 19 void json_escape_string(char *txt, size_t maxlen, const char *data, size_t len) in json_escape_string() argument 21 char *end = txt + maxlen; in json_escape_string()
|
/hal_espressif-latest/components/wpa_supplicant/src/eapol_auth/ |
D | eapol_auth_sm.c | 65 int maxlen; in eapol_auth_vlogger() local 71 maxlen = os_strlen(fmt) + 100; in eapol_auth_vlogger() 72 format = os_malloc(maxlen); in eapol_auth_vlogger() 77 vsnprintf(format, maxlen, fmt, ap); in eapol_auth_vlogger()
|
/hal_espressif-latest/components/bt/host/bluedroid/stack/l2cap/ |
D | l2c_utils.c | 1090 UINT16 maxlen; in l2cu_send_peer_echo_rsp() local 1103 maxlen = (L2CAP_CMD_BUF_SIZE > acl_packet_size) ? in l2cu_send_peer_echo_rsp() 1105 maxlen -= (UINT16)(BT_HDR_SIZE + HCI_DATA_PREAMBLE_SIZE + L2CAP_PKT_OVERHEAD + in l2cu_send_peer_echo_rsp() 1108 if (data_len > maxlen) { in l2cu_send_peer_echo_rsp()
|