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 59 binlen = printf_decode(bin, sizeof(bin), buf);
67 binlen = printf_decode(bin, sizeof(bin), test->encoded);
93 if (printf_decode(bin, 3, "abcde") != 2)
96 if (printf_decode(bin, 3, "\\xa") != 1 || bin[0] != 10)
99 if (printf_decode(bin, 3, "\\xq") != 1 || bin[0] != 'q')
102 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 486 size_t printf_decode(u8 *buf, size_t maxlen, const char *str);

Completed in 881 milliseconds