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

  /external/wpa_supplicant_8/src/utils/
utils_module_tests.c 397 if (utf8_unescape(NULL, 0, buf, sizeof(buf)) != 0 ||
398 utf8_unescape("a", 1, NULL, 0) != 0 ||
399 utf8_unescape("a\\", 2, buf, sizeof(buf)) != 0 ||
400 utf8_unescape("abcde", 5, buf, sizeof(buf)) != 0 ||
401 utf8_unescape("abc", 3, buf, 3) != 3)
404 if (utf8_unescape("a", 0, buf, sizeof(buf)) != 1 || buf[0] != 'a')
407 if (utf8_unescape("\\b", 2, buf, sizeof(buf)) != 1 || buf[0] != 'b')
common.c 1059 size_t utf8_unescape(const char *inp, size_t in_size, function
common.h 561 size_t utf8_unescape(const char *inp, size_t in_size,
  /external/wpa_supplicant_8/wpa_supplicant/
ctrl_iface.c     [all...]

Completed in 803 milliseconds