Symbol: isgraph
common/dist/zlib/trees.c
232
n, (isgraph(n) ? n : ' '), len, tree[n].Code, next_code[len] - 1));
common/dist/zlib/trees.c
921
Tracecv(isgraph(lc), (stderr," '%c' ", lc));
crypto/dist/ipsec-tools/src/racoon/plog.c
276
if (isgraph((unsigned char)binstr[p])) {
include/ctype.h
50
int isgraph(int);
lib/libc/gen/unvis.c
318
if (isgraph(c)) {
lib/libc/gen/vis.c
107
#define iscgraph(c) isgraph(c)
lib/libc/gen/vis.c
116
rv = isgraph(c);
lib/libterminfo/termcap.c
270
if (isgraph((unsigned char )v) &&
libexec/ftpd/ftpd.c
1666
if (!isgraph((unsigned char)*p))
sys/lib/libkern/libkern.h
78
LIBKERN_INLINE int isgraph(int) __unused;
sys/net/zlib.c
2700
n, (isgraph(n) ? n : ' '), len, tree[n].Code, next_code[len]-1));
sys/net/zlib.c
3182
Tracecv(isgraph(lc), (stderr," '%c' ", lc));
tests/lib/libc/gen/h_ctype_abuse.c
62
M(ISGRAPH, isgraph) \
tests/lib/libc/gen/t_ctype.c
1039
DEF_TEST_ABUSE(isgraph)
tests/lib/libc/gen/t_ctype.c
1054
DEF_TEST_ABUSE_OVERRIDE(isgraph)
tests/lib/libc/gen/t_ctype.c
1069
DEF_TEST_USE(isgraph)
tests/lib/libc/gen/t_ctype.c
1106
ATF_CHECK(isgraph(ydots));
tests/lib/libc/gen/t_ctype.c
1141
ATF_CHECK(isgraph(Hard));
tests/lib/libc/gen/t_ctype.c
1176
ATF_CHECK(isgraph(ya));
tests/lib/libc/gen/t_ctype.c
1195
ADD_TEST_ABUSE(tp, isgraph);
tests/lib/libc/gen/t_ctype.c
1210
ADD_TEST_ABUSE_OVERRIDE(tp, isgraph);
tests/lib/libc/gen/t_ctype.c
1225
ADD_TEST_USE(tp, isgraph);
tests/lib/libc/gen/t_ctype.c
87
static int isgraph_wrapper(int ch) { return isgraph(ch); }
tests/lib/libc/locale/t_wctype.c
206
ATF_REQUIRE_EQ(!!isgraph(c), inout);
tests/usr.bin/xlint/lint1/msg_342.c
22
int isgraph(int);
tests/usr.bin/xlint/lint1/msg_342.c
51
isgraph(c);
usr.bin/kdump/kdump.c
1301
*cp++ = isgraph(c) ? c : '.';
usr.bin/tr/str.c
224
{ "graph", isgraph },