Home
last modified time | relevance | path

Searched refs:VIS_NOSLASH (Results 1 – 3 of 3) sorted by relevance

/external/llvm-project/compiler-rt/test/sanitizer_common/TestCases/Posix/
Dvis.cpp16 vis(visout, ch, VIS_SAFE | VIS_NOSLASH, 0); in test_vis()
23 nvis(visout, sizeof visout, ch, VIS_SAFE | VIS_NOSLASH, 0); in test_nvis()
29 strvis(visout, "\3", VIS_SAFE | VIS_NOSLASH); in test_strvis()
35 stravis(&visout, "\4", VIS_SAFE | VIS_NOSLASH); in test_stravis()
42 strnvis(visout, sizeof visout, "\5", VIS_SAFE | VIS_NOSLASH); in test_strnvis()
50 VIS_SAFE | VIS_NOSLASH); in test_strvisx()
58 VIS_SAFE | VIS_NOSLASH); in test_strnvisx()
66 VIS_SAFE | VIS_NOSLASH, NULL); in test_strenvisx()
73 svis(visout, ch, VIS_SAFE | VIS_NOSLASH, 0, "x"); in test_svis()
80 snvis(visout, sizeof visout, ch, VIS_SAFE | VIS_NOSLASH, 0, "x"); in test_snvis()
[all …]
/external/openssh/openbsd-compat/
Dvis.c66 (c == '\\' && (flag & VIS_NOSLASH) == 0)) in vis()
125 if ((flag & VIS_NOSLASH) == 0) in vis()
184 (c == '\\' && (flag & VIS_NOSLASH) == 0)) { in strnvis()
Dvis.h67 #define VIS_NOSLASH 0x40 /* inhibit printing '\' */ macro