OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:utf8_escape
(Results
1 - 5
of
5
) sorted by null
/external/wpa_supplicant_8/src/utils/
utils_module_tests.c
408
if (
utf8_escape
(NULL, 0, buf, sizeof(buf)) != 0 ||
409
utf8_escape
("a", 1, NULL, 0) != 0 ||
410
utf8_escape
("abcde", 5, buf, sizeof(buf)) != 0 ||
411
utf8_escape
("a\\bcde", 6, buf, sizeof(buf)) != 0 ||
412
utf8_escape
("ab\\cde", 6, buf, sizeof(buf)) != 0 ||
413
utf8_escape
("abc\\de", 6, buf, sizeof(buf)) != 0 ||
414
utf8_escape
("abc", 3, buf, 3) != 3)
417
if (
utf8_escape
("a", 0, buf, sizeof(buf)) != 1 || buf[0] != 'a')
common.c
1083
size_t
utf8_escape
(const char *inp, size_t in_size,
function
common.h
536
size_t
utf8_escape
(const char *inp, size_t in_size,
/external/wpa_supplicant_8/src/p2p/
p2p_pd.c
1106
utf8_escape
((char *) msg.session_info, buf_len,
[
all
...]
/external/wpa_supplicant_8/wpa_supplicant/
p2p_supplicant_sd.c
864
utf8_escape
((const char *) pos, buf_len, buf,
Completed in 3655 milliseconds