Home
last modified time | relevance | path

Searched refs:ISSPACE (Results 1 – 15 of 15) sorted by relevance

/illumos-gate/usr/src/common/util/
H A Dgetoptstr.h47 #define ISSPACE(c) ((c) == ' ' || (c) == '\t') macro
48 #define SKIP_WORD(cp) while (*cp != '\0' && !ISSPACE(*cp)) ++cp;
49 #define SKIP_SPC(cp) while (ISSPACE(*cp)) ++cp;
H A Dgetoptstr.c48 #define ISNTWORDCH(c) ((c) == '\0' || ISSPACE(c))
/illumos-gate/usr/src/cmd/cron/
H A Dparse.c69 #define ISSPACE(x) \ macro
85 while (ISSPACE(line[cursor])) in next_field()
100 if (ISSPACE(line[cursor])) { in next_field()
198 if (!ISSPACE(line[cursor])) { in next_field()
/illumos-gate/usr/src/psm/stand/boot/sparc/common/
H A Dbootflags.c215 (cp[2] == '\0' || ISSPACE(cp[2]))) { in bootflags()
224 while (*cp && !ISSPACE(*cp)) in bootflags()
226 while (ISSPACE(*cp)) in bootflags()
H A Dboot_plat.c48 #define ISSPACE(c) (c == ' ' || c == '\t') macro
49 #define SKIP_WHITESPC(cp) while (*cp && ISSPACE(*cp)) cp++;
319 for (i = 0; i < fname_buf_sz && *tp && !ISSPACE(*tp); ++i) in init_bootargs()
/illumos-gate/usr/src/uts/common/sys/
H A Dctype.h63 #define ISSPACE(_c) \ macro
121 return (ISSPACE(c)); in isspace()
/illumos-gate/usr/src/uts/i86pc/boot/
H A Dboot_console.c183 while ((*str != '\0') && ISSPACE(*str)) \
215 !ISSPACE(*ptr)) in find_boot_line_prop()
222 while ((*ptr != '\0') && !ISSPACE(*ptr)) in find_boot_line_prop()
253 (*ptr != ',') && (!ISSPACE(*ptr))) in find_boot_line_prop()
265 else if (ISSPACE(*ptr)) in find_boot_line_prop()
290 if ((end_char == ',') && ISSPACE(*ptr)) in find_boot_line_prop()
293 if (*ptr && (*ptr != ',') && !ISSPACE(*ptr)) in find_boot_line_prop()
712 (cons_str[len] == '"') || ISSPACE(cons_str[len])) && in lookup_console_device()
/illumos-gate/usr/src/cmd/ipf/lib/
H A Dinet_addr.c85 #define ISSPACE(x) isspace((u_char)(x)) macro
153 if (c != '\0' && (!ISASCII(c) || !ISSPACE(c)))
H A Dipft_hx.c136 if (ISSPACE(c)) {
/illumos-gate/usr/src/uts/i86pc/os/
H A Dfakebop.c722 while (ISSPACE(line[c])) in read_bootenvrc()
734 while (ISSPACE(line[c])) in read_bootenvrc()
744 while (line[c] && !ISSPACE(line[c])) in read_bootenvrc()
752 while (ISSPACE(line[c])) in read_bootenvrc()
756 while (line[c] && !ISSPACE(line[c])) in read_bootenvrc()
1610 while (ISSPACE(*value)) in build_boot_properties()
1616 while (*value && !ISSPACE(*value) && *value != '=') { in build_boot_properties()
1668 while (ISSPACE(*value)) in build_boot_properties()
1711 while (ISSPACE(*name)) in build_boot_properties()
1713 while (*name && !ISSPACE(*name)) { in build_boot_properties()
[all …]
/illumos-gate/usr/src/uts/common/inet/ipf/netinet/
H A Dip_irc_pxy.c121 for (c = *s; !ISSPACE(c) && (i > 0); i--)
145 for (; !ISSPACE(c) && (i > 0); i--)
189 if (ISSPACE(c))
H A Dip_compat.h1696 #define ISSPACE(x) isspace((u_char)(x)) macro
/illumos-gate/usr/src/uts/common/krtld/
H A Dkobj_bootflags.c239 if (params.gos_strp[0] == '-' && ISSPACE(params.gos_strp[1])) { in bootflags()
/illumos-gate/usr/src/stand/lib/sock/
H A Dsocket.c1243 #define ISSPACE(c) (c == ' ' || c == '\t' || c == '\n' || c == '\0') in get_netconfig_strategy() macro
1272 !ISSPACE(*op); sp++, op++) in get_netconfig_strategy()
1286 *op != '\0' && *op != '/' && !ISSPACE(*op) && in get_netconfig_strategy()
1294 #undef ISSPACE in get_netconfig_strategy()
/illumos-gate/usr/src/cmd/rcm_daemon/common/
H A Dip_rcm.c88 #define ISSPACE(c) ((c) == ' ' || (c) == '\t') macro
2706 while (ISSPACE(*cp)) in ntok()
2714 } while (!ISSPACE(*cp) && !ISEOL(*cp)); in ntok()