HomeSort by relevance Sort by last modified time
    Searched refs:printf_decode (Results 1 - 3 of 3) sorted by null

  /external/wpa_supplicant_8/src/utils/
utils_module_tests.c 58 binlen = printf_decode(bin, sizeof(bin), buf);
66 binlen = printf_decode(bin, sizeof(bin), test->encoded);
92 if (printf_decode(bin, 3, "abcde") != 2)
95 if (printf_decode(bin, 3, "\\xa") != 1 || bin[0] != 10)
98 if (printf_decode(bin, 3, "\\xq") != 1 || bin[0] != 'q')
101 if (printf_decode(bin, 3, "\\a") != 1 || bin[0] != 'a')
common.c 515 size_t printf_decode(u8 *buf, size_t maxlen, const char *str) function
664 *len = printf_decode((u8 *) str, tlen + 1, tstr);
common.h 477 size_t printf_decode(u8 *buf, size_t maxlen, const char *str);

Completed in 185 milliseconds