Lines Matching refs:strbuf
286 char *strbuf = NULL; in _wpa_hexdump() local
296 strbuf = os_malloc(1 + 3 * slen); in _wpa_hexdump()
297 if (strbuf == NULL) { in _wpa_hexdump()
304 os_snprintf(&strbuf[i * 3], 4, " %02x", in _wpa_hexdump()
307 display = strbuf; in _wpa_hexdump()
317 bin_clear_free(strbuf, 1 + 3 * slen); in _wpa_hexdump()
324 char *strbuf = NULL; in _wpa_hexdump() local
331 strbuf = os_malloc(1 + 3 * len); in _wpa_hexdump()
332 if (strbuf == NULL) { in _wpa_hexdump()
339 os_snprintf(&strbuf[i * 3], 4, " %02x", in _wpa_hexdump()
342 display = strbuf; in _wpa_hexdump()
349 bin_clear_free(strbuf, 1 + 3 * len); in _wpa_hexdump()