Searched refs:strsep (Results 51 - 75 of 232) sorted by relevance

12345678910

/freebsd-10.1-release/lib/libc/posix1e/
H A Dmac.c159 token = strsep(string, " \t");
161 token = strsep(string, " \t");
201 parse = strsep(&comment, "#");
H A Dacl_support_nfs4.c150 flag = strsep(&str, "/:");
/freebsd-10.1-release/libexec/revnetgroup/
H A Dparse_netgroup.c217 gpos = strsep(&pos, ")");
222 if ((spos = strsep(&gpos, ","))) {
266 spos = strsep(&pos, ", \t");
/freebsd-10.1-release/sys/ddb/
H A Ddb_script.c90 * While executing a script, we parse it using strsep(), so require a
174 while ((command = strsep(&buffer, ";")) != NULL) {
292 * Parse script in temporary buffer, since strsep() is destructive.
296 while ((command = strsep(&buffer, ";")) != NULL) {
521 scriptname = strsep(&script, "=");
/freebsd-10.1-release/cddl/compat/opensolaris/misc/
H A Dzmount.c101 for (p = optstr; p != NULL; strsep(&p, ",/ ")) {
H A Dfsshare.c132 while ((o = strsep(&s, "-, ")) != NULL) {
/freebsd-10.1-release/contrib/ofed/libibverbs/src/
H A Dinit.c272 while ((env_name = strsep(&list, ":;")))
276 while ((env_name = strsep(&list, ":;")))
311 field = strsep(&config, "\n\t ");
317 field = strsep(&config, "\n\t ");
/freebsd-10.1-release/crypto/openssh/openbsd-compat/
H A Dopenbsd-compat.h132 char *strsep(char **stringp, const char *delim);
/freebsd-10.1-release/lib/libc/gen/
H A Dstrtofflags.c143 while ((p = strsep(&string, "\t ,")) != NULL) {
H A Dgetnetgrent.c460 gpos = strsep(&pos, ")");
465 if ((spos = strsep(&gpos, ",")) == NULL) {
517 spos = strsep(&pos, ", \t");
/freebsd-10.1-release/sbin/kldload/
H A Dkldload.c94 while ((element = strsep(&tmppath, ";")) != NULL) {
/freebsd-10.1-release/sys/boot/i386/libi386/
H A Dbootinfo.c108 curpos = strsep(&next, " ,");
/freebsd-10.1-release/sys/boot/userboot/userboot/
H A Dbootinfo.c108 curpos = strsep(&next, " ,");
/freebsd-10.1-release/tools/regression/lib/libc/nss/
H A Dtest-getaddr.c229 while ( (s = strsep(&ps, ".")) != NULL) {
256 while ( (s = strsep(&ps, " ")) != NULL) {
325 s = strsep(&ps, ":");
334 while ( (s = strsep(&ps, ":")) != NULL) {
/freebsd-10.1-release/usr.sbin/chroot/
H A Dchroot.c120 (p = strsep(&grouplist, ",")) != NULL && gids < ngroups_max; ) {
/freebsd-10.1-release/contrib/ofed/management/libibcommon/src/
H A Dsysfs.c112 if (!(str = strsep(&s, ": \t\n")))
133 if (!(str = strsep(&s, ": \t\n")))
/freebsd-10.1-release/crypto/openssh/
H A Dmac.c235 for ((p = strsep(&cp, MAC_SEP)); p && *p != '\0';
236 (p = strsep(&cp, MAC_SEP))) {
/freebsd-10.1-release/sys/boot/userboot/libstand/
H A DMakefile66 strrchr.c strsep.c strspn.c strstr.c strtok.c swab.c
77 strncat.c strncmp.c strncpy.c strpbrk.c strrchr.c strsep.c \
/freebsd-10.1-release/contrib/mtree/
H A Dspec.c141 while ((p = strsep(&next, " \t")) != NULL && *p == '\0')
456 while ((p = strsep(&dev, ",")) != NULL) {
542 while ((kw = strsep(&t, "= \t")) != NULL) {
551 while ((val = strsep(&t, " \t")) != NULL && *val == '\0')
699 while ((p = strsep(&t, " \t")) != NULL) {
/freebsd-10.1-release/sys/security/mac/
H A Dmac_internal.h412 while ((element_name = strsep(&element_temp, ",")) != NULL) { \
456 while ((element_name = strsep(&element, ",")) != NULL) { \
458 element_name = strsep(&element_data, "/"); \
/freebsd-10.1-release/usr.bin/grep/
H A Dgrep.c398 while ((str = strsep(&eopts, " ")) != NULL)
491 while ((token = strsep(&string, "\n")) != NULL)
685 while ((token = strsep(&string, "\n")) != NULL)
/freebsd-10.1-release/usr.sbin/portsnap/phttpget/
H A Dphttpget.c152 (void) strsep(&env_HTTP_PROXY_AUTH, ":");
155 (void) strsep(&env_HTTP_PROXY_AUTH, ":");
158 proxy_auth_user = strsep(&env_HTTP_PROXY_AUTH, ":");
/freebsd-10.1-release/contrib/tcp_wrappers/
H A Dworkarounds.c280 while ((result = strsep(&state, sep)) && result[0] == 0)
/freebsd-10.1-release/lib/ncurses/ncurses/
H A Dtermcap.c198 while ((tok = strsep(&ps, ":")) != NULL &&
/freebsd-10.1-release/libexec/rtld-aout/
H A Dshlib.c94 while ((cp = strsep(&path, ":")) != NULL)

Completed in 266 milliseconds

12345678910