HomeSort by: relevance | last modified time | path
    Searched refs:utf8_unescape (Results 1 - 4 of 4) sorted by relevancy

  /src/external/bsd/wpa/dist/src/utils/
utils_module_tests.c 399 if (utf8_unescape(NULL, 0, buf, sizeof(buf)) != 0 ||
400 utf8_unescape("a", 1, NULL, 0) != 0 ||
401 utf8_unescape("a\\", 2, buf, sizeof(buf)) != 0 ||
402 utf8_unescape("abcde", 5, buf, sizeof(buf)) != 0 ||
403 utf8_unescape("abc", 3, buf, 3) != 3)
406 if (utf8_unescape("a", 0, buf, sizeof(buf)) != 1 || buf[0] != 'a')
409 if (utf8_unescape("\\b", 2, buf, sizeof(buf)) != 1 || buf[0] != 'b')
common.h 598 size_t utf8_unescape(const char *inp, size_t in_size,
common.c 1106 size_t utf8_unescape(const char *inp, size_t in_size, function
  /src/external/bsd/wpa/dist/wpa_supplicant/
ctrl_iface.c 6216 info_len = utf8_unescape(pos, info_len,
6636 len = utf8_unescape(pos, len, pos, len);
6907 utf8_unescape(svc_info, len, svc_info, len);

Completed in 28 milliseconds