Lines Matching refs:strbuf
279 char *strbuf = NULL; in _wpa_hexdump() local
289 strbuf = os_malloc(1 + 3 * slen); in _wpa_hexdump()
290 if (strbuf == NULL) { in _wpa_hexdump()
297 os_snprintf(&strbuf[i * 3], 4, " %02x", in _wpa_hexdump()
300 display = strbuf; in _wpa_hexdump()
310 os_free(strbuf); in _wpa_hexdump()
317 char *strbuf = NULL; in _wpa_hexdump() local
324 strbuf = os_malloc(1 + 3 * len); in _wpa_hexdump()
325 if (strbuf == NULL) { in _wpa_hexdump()
332 os_snprintf(&strbuf[i * 3], 4, " %02x", in _wpa_hexdump()
335 display = strbuf; in _wpa_hexdump()
342 os_free(strbuf); in _wpa_hexdump()