Searched refs:strcspn (Results 1 - 25 of 90) sorted by relevance

1234

/illumos-gate/usr/src/lib/libbc/inc/include/
H A Dstring.h45 extern size_t strcspn(/* const char *s1, const char *s2 */);
/illumos-gate/usr/src/lib/libc/port/gen/
H A Dstrcspn.c41 strcspn(const char *string, const char *charset) function
/illumos-gate/usr/src/cmd/lp/cmd/lpadmin/
H A Dpick_opts.c63 if (strlen(*new_opts) > (strcspn(*new_opts, "=") + 1)) {
84 key_len = strcspn(*new_opts, "=");
/illumos-gate/usr/src/boot/lib/libc/string/
H A Dstrcspn.c38 strcspn(const char *s, const char *charset) function
/illumos-gate/usr/src/head/iso/
H A Dstring_iso.h77 extern size_t strcspn(const char *, const char *);
/illumos-gate/usr/src/cmd/hostname/
H A Dhostname.c100 c_hostname[strcspn(c_hostname, ".")] = '\0';
/illumos-gate/usr/src/lib/libzfs_core/common/
H A Dlibzfs_core.c230 pool[strcspn(pool, "/@")] = '\0';
280 pool[strcspn(pool, "/@")] = '\0';
375 pool[strcspn(pool, "/@")] = '\0';
420 pool[strcspn(pool, "/@")] = '\0';
743 pool[strcspn(pool, "/#")] = '\0';
805 pool[strcspn(pool, "/#")] = '\0';
/illumos-gate/usr/src/lib/libzoneinfo/common/
H A Dlibzone.c137 if ((len = strcspn(lp, WHITESPACE)) > _TZBUFLEN -1) {
154 len = strcspn(lp, NEWLINE);
262 if (strcspn(lp_cc, WHITESPACE) != CCLEN) {
273 if (((len_coord = strcspn(lp_coord, WHITESPACE)) !=
283 if ((len = strcspn(lp_tz, SLASH)) == 0) {
341 if ((len = strcspn(buff, WHITESPACE)) != CCLEN) {
356 len = strcspn(lp, NEWLINE);
489 if (strcspn(lp_cc, WHITESPACE) != CCLEN) {
499 if (((len_coord = strcspn(lp_coord, WHITESPACE)) !=
508 len_otz = strcspn(lp_ot
[all...]
/illumos-gate/usr/src/lib/libbsm/common/
H A Daudit_event.c140 i = strcspn(s, ":");
146 i = strcspn(s, ":");
155 i = strcspn(s, ":");
162 i = strcspn(s, "\n\0");
H A Daudit_class.c130 i = strcspn(s, ":");
141 i = strcspn(s, ":");
148 i = strcspn(s, "\n\0");
/illumos-gate/usr/src/lib/smbsrv/libfksmbsrv/common/sys/
H A Dsunddi.h80 extern size_t strcspn(const char *, const char *);
/illumos-gate/usr/src/boot/include/
H A Dstring.h83 size_t strcspn(const char *, const char *) __pure;
/illumos-gate/usr/src/lib/libsocket/inet/
H A Dinterface_id.c196 size = strcspn(lifrp->lifr_name,
288 size = strcspn(lifrp->lifr_name, (char *)IPIF_SEPARATOR_CHAR);
/illumos-gate/usr/src/boot/lib/libstand/
H A DMakefile.inc52 SRCS += $(LIB_BASE)/libc/string/strcpy.c $(LIB_BASE)/libc/string/strcspn.c
66 strcspn.o strlcat.o strlcpy.o strlen.o strncat.o strncmp.o strncpy.o \
/illumos-gate/usr/src/lib/libgrubmgmt/common/
H A Dlibgrub_cmd.c191 len = strcspn(s, "= \t");
/illumos-gate/usr/src/lib/libwrap/
H A Dworkarounds.c309 if (*(state += strcspn(state, sep)) != 0)
H A Doptions.c158 if (*(value = curr_opt + strcspn(curr_opt, whitespace_eq))) {
442 if (*(var_value = value + strcspn(value, whitespace)))
/illumos-gate/usr/src/head/
H A Dstring.h51 using std::strcspn;
/illumos-gate/usr/src/cmd/cmd-crypto/kmfcfg/
H A Dutil.c402 opts_av[i].longnm_len = strcspn(marker, ")");
446 len = strcspn(argv[optind_av], "=");
/illumos-gate/usr/src/cmd/sort/common/
H A Doptions.c122 int p_period = MIN(length, strcspn(C, "."));
207 int p_comma = MIN(length, strcspn(arg, ","));
/illumos-gate/usr/src/lib/lvm/libmeta/common/
H A Dmeta_mn_subr.c430 while ((*buf != '\0') && (i = strcspn(buf, " \t\n")) == 0)
446 while ((*buf != '\0') && (i = strcspn(buf, " \t\n")) == 0)
470 while ((*buf != '\0') && (i = strcspn(buf, " \t\n")) == 0)
/illumos-gate/usr/src/cmd/mandoc/
H A Dterm.c433 ssz = strcspn(word, "\\ ");
435 ssz = strcspn(word, "\\");
678 rsz = strcspn(cp, rej);
H A Dhtml.c267 rsz = strcspn(cp, "\\");
351 sz = strcspn(p, rejs);
/illumos-gate/usr/src/cmd/mail/
H A Dgethead.c146 sender_size = strcspn(hold, " \t");
/illumos-gate/usr/src/cmd/fs.d/nfs/statd/
H A Dsm_proc.c1213 unq_len1 = strcspn(rawname1, ".");
1214 unq_len2 = strcspn(rawname2, ".");
1255 unq_len1 = strcspn(specifier1, ".");
1256 unq_len2 = strcspn(specifier2, ".");

Completed in 1307 milliseconds

1234