Searched refs:isalnum (Results 76 - 100 of 171) sorted by relevance

1234567

/freebsd-13-stable/usr.sbin/ppp/
H A Dsystems.c128 for (from++; (isalnum(*from) || *from == '_') && ptr < endto; from++)
/freebsd-13-stable/contrib/sendmail/src/
H A Dreadcf.c1581 (isalnum(*p) || strchr(SM_PWN_CHARS, *p) != NULL))
1583 (isalnum(*p) || strchr("-_", *p) != NULL))
1629 (isalnum(*p) || strchr(SM_PWN_CHARS, *p) != NULL))
2525 if (isascii(*p) && isalnum(*p))
3478 while (isascii(*p) && isalnum(*p))
4018 while (isascii(*p) && isalnum(*p))
4774 if (!(isascii(*p) && isalnum(*p)))
4781 while ((isascii(*++p) && isalnum(*p)) || *p == '_' || *p == '.')
4787 if (!(isascii(*p) && isalnum(*p)))
4793 while (isascii(*++p) && isalnum(*
[all...]
H A Dutil.c118 while (*p == '\\' && (p[1] == '\\' || (isascii(p[1]) && isalnum(p[1]))))
2293 (isalnum(*f) || strchr("!#$%&'*+-./^_`{|}~", *f) != NULL))
2951 (isalnum(*p) || *p == '.' || *p== ':'))
2981 *p != '\0' && isascii(*p) && (isalnum(*p) || *p == '.' || *p == '-');
/freebsd-13-stable/libexec/bootpd/
H A Dreadfile.c1324 while (isalnum(*hostname) ||
1330 if (!isalnum(hostname[-1])) { /* Last must be alphanumeric */
1697 while ((isalnum(*s) || (*s == '.') ||
/freebsd-13-stable/contrib/sqlite3/tea/win/
H A Dnmakehlp.c518 while (*q && (isalnum(*q) || *q == '.')) {
/freebsd-13-stable/sbin/newfs/
H A Dnewfs.c155 while (isalnum(volumelabel[++i]) ||
/freebsd-13-stable/contrib/bmake/
H A Dmake.h813 ch_isalnum(char ch) { return isalnum((unsigned char)ch) != 0; }
/freebsd-13-stable/contrib/flex/src/
H A Dflexdef.h1081 #define b_isalnum(c) (isalnum(c)?true:false)
/freebsd-13-stable/stand/libsa/
H A Dstand.h232 static __inline int isalnum(int c) function
/freebsd-13-stable/usr.bin/vgrind/
H A Dvfontedpr.c349 #define isidchr(c) (isalnum(c) || (c) == '_')
/freebsd-13-stable/usr.bin/whois/
H A Dwhois.c89 #define ishost(h) (isalnum((unsigned char)h) || h == '.' || h == '-')
/freebsd-13-stable/usr.sbin/prometheus_sysctl_exporter/
H A Dprometheus_sysctl_exporter.c391 fputc(isalnum(*name) ? *name : '_', fp);
/freebsd-13-stable/contrib/bsnmp/snmpd/
H A Daction.c971 if (!isascii(*ptr) || !isalnum(*ptr)) {
1243 if (!isascii(*ptr) || !isalnum(*ptr)) {
H A Dconfig.c606 if (!isalnum(c) && c != '.' && c != '-')
629 if (!isalnum(c) && c != '_' && c != '-') {
/freebsd-13-stable/sys/contrib/openzfs/cmd/zed/
H A Dzed_event.c287 *dstp++ = isalnum(*srcp) ? toupper(*srcp) : '_';
290 *dstp++ = isalnum(*srcp) ? toupper(*srcp) : '_';
/freebsd-13-stable/contrib/opie/
H A Dopielogin.c1031 while(*c && (isalnum(*c) || (*c == '_'))) c++;
1375 while(*c && (isalnum(*c) || (*c == '_'))) c++;
/freebsd-13-stable/contrib/mandoc/
H A Dcgi.c325 if (isalnum((unsigned char)*p) == 0 &&
486 if ( ! (isalnum((unsigned char)*frag) ||
/freebsd-13-stable/usr.bin/lex/
H A Dinitparse.c1655 { CCL_EXPR(isalnum); }
1711 { CCL_NEG_EXPR(isalnum); }
/freebsd-13-stable/contrib/unbound/util/data/
H A Ddname.c663 if(isalnum((unsigned char)*dname)
/freebsd-13-stable/lib/libc/stdio/
H A Dvfscanf.c1007 } else if (!isalnum(c) && c != '_')
/freebsd-13-stable/contrib/tzcode/zic/
H A Dzdump.c216 (isalnum((unsigned char)*cp) || *cp == '-' || *cp == '+'))
/freebsd-13-stable/lib/libnetmap/
H A Dnmreq.c59 if (!isalnum(*s) && *s != '_') {
/freebsd-13-stable/contrib/llvm-project/lldb/source/Symbol/
H A DVariable.cpp677 if (isalnum(curr_ch) || curr_ch == '_' || curr_ch == '$') {
/freebsd-13-stable/contrib/googletest/googletest/include/gtest/internal/
H A Dgtest-param-util.h642 if (!isalnum(name[index]) && name[index] != '_')
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Demangle/
H A DMicrosoftDemangleNodes.cpp33 if (std::isalnum(C) || C == '>')

Completed in 2565 milliseconds

1234567