Home
last modified time | relevance | path

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

/hal_espressif-latest/components/wpa_supplicant/src/utils/
Duuid.c17 u8 *opos; in uuid_str2bin() local
20 opos = bin; in uuid_str2bin()
22 if (hexstr2bin(pos, opos, 4)) in uuid_str2bin()
25 opos += 4; in uuid_str2bin()
27 if (*pos++ != '-' || hexstr2bin(pos, opos, 2)) in uuid_str2bin()
30 opos += 2; in uuid_str2bin()
32 if (*pos++ != '-' || hexstr2bin(pos, opos, 2)) in uuid_str2bin()
35 opos += 2; in uuid_str2bin()
37 if (*pos++ != '-' || hexstr2bin(pos, opos, 2)) in uuid_str2bin()
40 opos += 2; in uuid_str2bin()
[all …]
Dcommon.c87 u8 *opos = buf; in hexstr2bin() local
93 *opos++ = a; in hexstr2bin()
/hal_espressif-latest/components/wpa_supplicant/src/wps/
Dwps_common.c31 u8 hash[SHA256_MAC_LEN], *opos; in wps_kdf() local
46 opos = res; in wps_kdf()
53 os_memcpy(opos, hash, SHA256_MAC_LEN); in wps_kdf()
54 opos += SHA256_MAC_LEN; in wps_kdf()
57 os_memcpy(opos, hash, left); in wps_kdf()
/hal_espressif-latest/components/wpa_supplicant/src/tls/
Dx509v3.c88 char *ipos, *opos; in x509_str_strip_whitespace() local
91 ipos = opos = a; in x509_str_strip_whitespace()
98 *opos++ = *ipos++; in x509_str_strip_whitespace()
102 *opos-- = '\0'; in x509_str_strip_whitespace()
103 if (opos > a && x509_whitespace(*opos)) in x509_str_strip_whitespace()
104 *opos = '\0'; in x509_str_strip_whitespace()