Symbol: isalpha
crypto/heimdal/appl/rcp/util.c
106
if (!isalpha(c) && !isdigit(c) && c != '_' && c != '-')
crypto/krb5/src/kadmin/cli/getdate.y
807
if (isalpha((int) c)) {
crypto/krb5/src/kadmin/cli/getdate.y
808
for (p = buff; isalpha((int) (c = *yyInput++)) || c == '.'; )
crypto/krb5/src/lib/krb5/ccache/ccbase.c
223
if ( pfxlen == 1 && isalpha((unsigned char) name[0]) ) {
crypto/krb5/src/lib/krb5/keytab/ktbase.c
169
if ( pfxlen == 1 && isalpha((unsigned char) name[0]) ) {
crypto/openssh/misc.c
2409
if (!isalpha((u_char)name[0]) && !isdigit((u_char)name[0]) &&
crypto/openssh/openbsd-compat/charclass.h
17
{ "alpha", isalpha },
crypto/openssh/openbsd-compat/readpassphrase.c
136
if (isalpha((unsigned char)ch)) {
crypto/openssh/openbsd-compat/strtoll.c
114
else if (isalpha(c))
crypto/openssh/openbsd-compat/strtoul.c
84
else if (isalpha(c))
crypto/openssh/openbsd-compat/strtoull.c
86
else if (isalpha(c))
crypto/openssh/scp.c
2208
if (!isalpha(c) && !isdigit((unsigned char)c)) {
crypto/openssl/test/ctype_internal_test.c
36
return TEST_int_eq(isalpha(n) != 0, ossl_isalpha(n) != 0)
include/ctype.h
49
int isalpha(int);
lib/libc/gen/readpassphrase.c
131
if (isalpha((unsigned char)ch)) {
lib/libc/iconv/_strtol.h
134
else if (isalpha(c))
lib/libc/iconv/_strtoul.h
108
else if (isalpha(c))
lib/libc/iconv/citrus_bcs.h
58
_CITRUS_BCS_PRED(isalpha, _citrus_bcs_isupper(c) || _citrus_bcs_islower(c))
lib/libc/regex/regcomp.c
1213
while (MORE() && isalpha((uch)PEEK()))
lib/libutil/login_times.c
77
while (isalpha(*p)) {
libexec/bootpd/getether.c
202
while (isalpha(*p))
libexec/bootpd/readfile.c
1285
if (!isalpha(*hostname++)) { /* First character must be a letter */
libexec/bootpd/readfile.c
1640
if (isalpha(**src)) {
sbin/devd/devd.cc
646
return (ch != '\0' && (isalpha(ch) || isdigit(ch) || ch == '_' ||
sbin/devd/devd.cc
709
if (!isalpha(*src) && *src != '_' && *src != '-' && *src != '*') {
sbin/dhclient/conflex.c
148
} else if (isascii(c) && isalpha(c)) {
sbin/fdisk/fdisk.c
991
if (isalpha(*cp))
sbin/ifconfig/ifieee80211.c
1505
for (cp++; isalpha((int) *cp); cp++) {
sbin/ifconfig/ifieee80211.c
680
for (cp++; isalpha((int) *cp); cp++) {
sbin/ipf/libipf/inet_addr.c
73
#define ISALPHA(x) isalpha((u_char)(x))
sbin/ipfw/ipfw2.c
1158
if (isalpha(*s)) {
sbin/ipfw/ipfw2.c
3283
if (isalpha(c) || isdigit(c) || c == '_' ||
sbin/ipfw/ipfw2.c
4622
if (isalpha(*av[0])) {
sbin/ipfw/tables.c
1633
if (isalpha(*n)) {
sbin/mount/mount.c
425
if (!isdigit(*cp) && !isalpha(*cp) &&
sbin/pfctl/parse.y
4245
if (!isalpha(op[0])) {
stand/libsa/stand.h
262
return isalpha(c) || isdigit(c);
sys/cam/ctl/ctl.c
4424
else if (isalpha(c))
sys/cam/scsi/scsi_all.c
6372
else if (isalpha(c))
sys/compat/linux/linux_if.c
218
if (!isalpha(lxname[len]) || lxname[len] == '\0')
sys/dev/bhnd/nvram/bhnd_nvram_private.h
67
#define bhnd_nv_isalpha(c) isalpha(c)
sys/dev/ocs_fc/ocs_hw_queues.c
1143
return isalpha(c) || (c == '_') || (c == '$');
sys/dev/usb/usb_request.c
1184
if (isalpha(*s) ||
sys/geom/linux_lvm/g_linux_lvm.c
890
while (tok[len] && (isalpha(tok[len]) || isdigit(tok[len]) ||
sys/geom/nop/g_nop.c
89
if (isalpha(name[i]) == 0 && isdigit(name[i]) == 0) {
sys/geom/union/g_union.c
393
if (isalpha(name[i]) == 0 && isdigit(name[i]) == 0) {
sys/libkern/strtol.c
102
else if (isalpha(c))
sys/libkern/strtoq.c
108
else if (isalpha(c))
sys/libkern/strtoul.c
81
else if (isalpha(c))
sys/libkern/strtouq.c
85
else if (isalpha(c))
sys/netpfil/ipfilter/netinet/ip_compat.h
598
#define ISALPHA(x) isalpha((u_char)(x))
sys/netpfil/ipfilter/netinet/ip_proxy.h
143
# ifndef isalpha
sys/netpfil/ipfilter/netinet/ip_scan.c
62
# ifndef isalpha
tests/sys/net/routing/rtsock_common.h
137
for (src = ifname_orig, dst = prefix; *src && isalpha(*src); src++)
tools/tools/vimage/vimage.c
235
for (namelen = 0; isalpha(ifname[namelen]); namelen++);
usr.bin/at/parsetime.c
240
else if (isalpha(sc_token[0])) {
usr.bin/at/parsetime.c
241
while (isalpha(*sct))
usr.bin/ctags/yacc.c
88
if (in_rule || (!isalpha(c) && c != '.' && c != '_'))
usr.bin/diff/diffreg.c
1487
} else if (isalpha(buf[0]) || buf[0] == '_' || buf[0] == '$'
usr.bin/env/envopts.c
57
#define isalphach(Anychar) isalpha((u_char)(Anychar))
usr.bin/find/getdate.y
734
if (buff[1] == '\0' && isalpha(*buff)) {
usr.bin/find/getdate.y
789
if (isalpha(c)) {
usr.bin/find/getdate.y
790
for (p = buff; isalpha(c = *yyInput++) || c == '.'; )
usr.bin/fortune/fortune/fortune.c
1226
if (isalpha((unsigned char)*sp))
usr.bin/indent/lexi.c
338
isalpha((unsigned char)*buf_ptr)) &&
usr.bin/indent/lexi.c
542
while (isalpha((unsigned char)*tp) ||
usr.bin/jot/jot.c
435
while (!isalpha((unsigned char)*p)) {
usr.bin/kdump/kdump.c
2134
if (!isalpha(name[i]) && name[i] != '_')
usr.bin/killall/killall.c
216
if (isalpha((unsigned char)**av)) {
usr.bin/lex/initparse.c
1658
{ CCL_EXPR(isalpha); }
usr.bin/lex/initparse.c
1714
{ CCL_NEG_EXPR(isalpha); }
usr.bin/localedef/bootstrap/ctype.h
47
int (isalpha)(int);
usr.bin/m4/main.c
405
} else if (t == '_' || isalpha(t)) {
usr.bin/morse/morse.c
465
if (isalpha((unsigned char)c))
usr.bin/netstat/main.c
338
for (cp = interface = optarg; isalpha(*cp); cp++)
usr.bin/patch/patch.c
595
if (!isalpha((unsigned char)*optarg) && *optarg != '_')
usr.bin/rpcgen/rpc_scan.c
282
if (!(isalpha(*where) || *where == '_')) {
usr.bin/rpcinfo/rpcinfo.c
1486
if (*tptr || isalpha(*(tptr - 1))) {
usr.bin/tip/tip/tip.c
107
if (isalpha(*sys))
usr.sbin/bsnmpd/tools/bsnmptools/bsnmpget.c
267
while (isalpha(*str) || *str == '_' || (i != 0 && isdigit(*str))) {
usr.sbin/bsnmpd/tools/libbsnmptools/bsnmpimport.c
433
if (isalpha(c) || c == '_' || c == '-') {
usr.sbin/bsnmpd/tools/libbsnmptools/bsnmptools.c
1050
if (isalpha (*(str + i)) == 0)
usr.sbin/bsnmpd/tools/libbsnmptools/bsnmptools.c
290
if (isalpha(c)|| c == '/'|| c == '_' || c == '.' || c == '~' ||
usr.sbin/bsnmpd/tools/libbsnmptools/bsnmptools.c
393
if (isalpha(*value) && (path == NULL || path[0] == '\0')) {
usr.sbin/fifolog/lib/getdate.y
737
if (buff[1] == '\0' && isalpha(*buff)) {
usr.sbin/fifolog/lib/getdate.y
792
if (isalpha(c)) {
usr.sbin/fifolog/lib/getdate.y
793
for (p = buff; isalpha(c = *yyInput++) || c == '.'; )
usr.sbin/kbdcontrol/kbdcontrol.c
885
if (!isalpha(*cp) && !isdigit(*cp)) *cp = '_';
usr.sbin/lpr/common_source/ctlinfo.c
466
if ((tfname[0] != 't') || (tfname[1] != 'f') || (!isalpha(chk3rd))) {
usr.sbin/lpr/lpc/cmds.c
510
if ((*(fname_X + 1) == 'f') && (isalpha(ch))) { \
usr.sbin/lpr/lpc/cmds.c
523
if (isalpha(ch)) { \
usr.sbin/makefs/zfs.c
224
if (!isalpha(zfs->poolname[0]))
usr.sbin/pw/psdate.c
59
while (**str && isalpha((unsigned char)**str))