Home
last modified time | relevance | path

Searched refs:hex (Results 1 – 6 of 6) sorted by relevance

/wlan-dirver/qca-wifi-host-cmn/iot_sim/core/
H A Diot_sim_common.c55 * @hex: buffer to store converted value
56 * @count: size of hex buffer
61 iot_sim_convert_offset_to_hex_str(uint16_t offset, uint8_t *hex, int8_t count) in iot_sim_convert_offset_to_hex_str() argument
68 ret = qdf_hex_str_to_binary(hex, temp, count); in iot_sim_convert_offset_to_hex_str()
70 iot_sim_err("offset to hex conversion failed"); in iot_sim_convert_offset_to_hex_str()
94 uint8_t hex[2], *ptr = NULL; in iot_sim_parse_action_frame() local
97 status = iot_sim_convert_offset_to_hex_str(offset, hex, in iot_sim_parse_action_frame()
98 sizeof(hex)); in iot_sim_parse_action_frame()
103 status = iot_sim_get_index_for_action_frm(hex, category, in iot_sim_parse_action_frame()
299 * QDF_STATUS_E_FAULT on hex st
[all...]
/wlan-dirver/qcacld-3.0/components/action_oui/core/src/
H A Dwlan_action_oui_parse.c34 * action_oui_string_to_hex() - convert string to uint8_t hex array
36 * @hex: output string to hold converted string
47 static bool action_oui_string_to_hex(uint8_t *token, uint8_t *hex, in action_oui_string_to_hex() argument
72 ret = qdf_hex_str_to_binary(hex, token, hex_str_len); in action_oui_string_to_hex()
74 action_oui_err("Token doesn't contain hex digits"); in action_oui_string_to_hex()
109 * validate_and_convert_oui() - validate and convert OUI str to hex array
111 * @ext: pointer to container which holds converted hex array
115 * the OUI string for action OUI inis, convert them to hex array and store it
144 * @ext: pointer to container which holds hex value formed from input str
148 * the data length string for action OUI inis, convert it to hex valu
[all...]
/wlan-dirver/utils/sigma-dut/
H A Dutils.c206 int parse_hexstr(const char *hex, unsigned char *buf, size_t buflen) in parse_hexstr() argument
209 const char *pos = hex; in parse_hexstr()
H A Dsigma_dut.h1073 int ascii2hexstr(const char *str, char *hex);
1157 int parse_hexstr(const char *hex, unsigned char *buf, size_t buflen);
H A Ddpp.c94 char *pos, mac[50], buf[200], resp[1000], hex[2000]; in dpp_get_local_bootstrap() local
203 ascii2hexstr(resp, hex); in dpp_get_local_bootstrap()
204 res = snprintf(resp, sizeof(resp), "BootstrappingData,%s", hex); in dpp_get_local_bootstrap()
H A Dap.c4662 int ascii2hexstr(const char *str, char *hex) in ascii2hexstr() argument
4669 snprintf(hex + i * 2, 3, "%X", str[i]); in ascii2hexstr()
4671 hex[length * 2] = '\0'; in ascii2hexstr()