Home
last modified time | relevance | path

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

/titanic_41/usr/src/common/util/
H A Dgetoptstr.h49 #define ISSPACE(c) ((c) == ' ' || (c) == '\t') macro
50 #define SKIP_WORD(cp) while (*cp != '\0' && !ISSPACE(*cp)) ++cp;
51 #define SKIP_SPC(cp) while (ISSPACE(*cp)) ++cp;
H A Dgetoptstr.c51 #define ISNTWORDCH(c) ((c) == '\0' || ISSPACE(c))
/titanic_41/usr/src/uts/i86pc/boot/
H A Dboot_console.c213 while ((*str != '\0') && ISSPACE(*str)) \
245 !ISSPACE(*ptr)) in find_boot_line_prop()
252 while ((*ptr != '\0') && !ISSPACE(*ptr)) in find_boot_line_prop()
283 (*ptr != ',') && (!ISSPACE(*ptr))) in find_boot_line_prop()
295 else if (ISSPACE(*ptr)) in find_boot_line_prop()
320 if ((end_char == ',') && ISSPACE(*ptr)) in find_boot_line_prop()
323 if (*ptr && (*ptr != ',') && !ISSPACE(*ptr)) in find_boot_line_prop()
566 (cons_str[len] == '"') || ISSPACE(cons_str[len])) && in bcons_init()
/titanic_41/usr/src/psm/stand/boot/sparc/common/
H A Dbootflags.c232 (cp[2] == '\0' || ISSPACE(cp[2]))) { in bootflags()
241 while (*cp && !ISSPACE(*cp)) in bootflags()
243 while (ISSPACE(*cp)) in bootflags()
H A Dboot_plat.c47 #define ISSPACE(c) (c == ' ' || c == '\t') macro
48 #define SKIP_WHITESPC(cp) while (*cp && ISSPACE(*cp)) cp++;
318 for (i = 0; i < fname_buf_sz && *tp && !ISSPACE(*tp); ++i) in init_bootargs()
/titanic_41/usr/src/uts/common/sys/
H A Dctype.h63 #define ISSPACE(_c) \ macro
121 return (ISSPACE(c)); in isspace()
/titanic_41/usr/src/cmd/ipf/lib/common/
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)) {
/titanic_41/usr/src/uts/i86pc/os/
H A Dfakebop.c662 while (ISSPACE(line[c])) in boot_prop_finish()
674 while (ISSPACE(line[c])) in boot_prop_finish()
684 while (line[c] && !ISSPACE(line[c])) in boot_prop_finish()
692 while (ISSPACE(line[c])) in boot_prop_finish()
696 while (line[c] && !ISSPACE(line[c])) in boot_prop_finish()
1302 while (ISSPACE(*value)) in build_boot_properties()
1308 while (*value && !ISSPACE(*value) && *value != '=') { in build_boot_properties()
1321 while (value[value_len] && !ISSPACE(value[value_len])) { in build_boot_properties()
1360 while (ISSPACE(*value)) in build_boot_properties()
1366 while (value[value_len] && !ISSPACE(value[value_len])) in build_boot_properties()
[all …]
/titanic_41/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.h1691 #define ISSPACE(x) isspace((u_char)(x)) macro
/titanic_41/usr/src/uts/common/krtld/
H A Dkobj_bootflags.c239 if (params.gos_strp[0] == '-' && ISSPACE(params.gos_strp[1])) { in bootflags()
/titanic_41/usr/src/stand/lib/sock/
H A Dsocket.c1244 #define ISSPACE(c) (c == ' ' || c == '\t' || c == '\n' || c == '\0') in get_netconfig_strategy() macro
1273 !ISSPACE(*op); sp++, op++) in get_netconfig_strategy()
1287 *op != '\0' && *op != '/' && !ISSPACE(*op) && in get_netconfig_strategy()
1295 #undef ISSPACE in get_netconfig_strategy()
/titanic_41/usr/src/cmd/rcm_daemon/common/
H A Dip_rcm.c87 #define ISSPACE(c) ((c) == ' ' || (c) == '\t') macro
2706 while (ISSPACE(*cp)) in ntok()
2714 } while (!ISSPACE(*cp) && !ISEOL(*cp)); in ntok()