Searched refs:stringp (Results 1 - 25 of 32) sorted by relevance

12

/freebsd-10-stable/crypto/heimdal/lib/roken/
H A Dstrsep_copy.c42 /* strsep, but with const stringp, so return string in buf */
45 strsep_copy(const char **stringp, const char *delim, char *buf, size_t len) argument
47 const char *save = *stringp;
51 *stringp = *stringp + strcspn(*stringp, delim);
52 l = min(len, (size_t)(*stringp - save));
58 l = *stringp - save;
59 if(**stringp == '\0')
60 *stringp
[all...]
/freebsd-10-stable/contrib/tcpdump/missing/
H A Dstrsep.c48 * Get next token from string *stringp, where tokens are possibly-empty
51 * Writes NULs into the string at *stringp to end tokens.
53 * On return, *stringp points past the last NUL written (if there might
56 * If *stringp is NULL, strsep returns NULL.
59 strsep(char **stringp, const char *delim) argument
66 if ((s = *stringp) == NULL)
77 *stringp = s;
/freebsd-10-stable/crypto/openssh/openbsd-compat/
H A Dstrsep.c42 * Get next token from string *stringp, where tokens are possibly-empty
45 * Writes NULs into the string at *stringp to end tokens.
47 * On return, *stringp points past the last NUL written (if there might
50 * If *stringp is NULL, strsep returns NULL.
53 strsep(char **stringp, const char *delim) argument
60 if ((s = *stringp) == NULL)
71 *stringp = s;
H A Dopenbsd-compat.h148 char *strsep(char **stringp, const char *delim);
/freebsd-10-stable/lib/libc/string/
H A Dstrsep.c40 * Get next token from string *stringp, where tokens are possibly-empty
43 * Writes NULs into the string at *stringp to end tokens.
45 * On return, *stringp points past the last NUL written (if there might
48 * If *stringp is NULL, strsep returns NULL.
51 strsep(char **stringp, const char *delim) argument
58 if ((s = *stringp) == NULL)
69 *stringp = s;
/freebsd-10-stable/sys/libkern/
H A Dstrsep.c40 * Get next token from string *stringp, where tokens are possibly-empty
43 * Writes NULs into the string at *stringp to end tokens.
45 * On return, *stringp points past the last NUL written (if there might
48 * If *stringp is NULL, strsep returns NULL.
51 strsep(stringp, delim)
52 char **stringp;
60 if ((s = *stringp) == NULL)
71 *stringp = s;
/freebsd-10-stable/contrib/bmake/
H A Dstresep.c42 char * stresep(char **stringp, const char *delim, int esc);
44 * Get next token from string *stringp, where tokens are possibly-empty
49 * Writes NULs into the string at *stringp to end tokens.
51 * On return, *stringp points past the last NUL written (if there might
54 * If *stringp is NULL, stresep returns NULL.
57 stresep(char **stringp, const char *delim, int esc) argument
64 if (stringp == NULL || delim == NULL)
67 if ((s = *stringp) == NULL)
82 *stringp = s;
/freebsd-10-stable/lib/libnetbsd/
H A Dutil.h40 int string_to_flags(char **stringp, u_long *setp, u_long *clrp);
H A Dutil.c55 string_to_flags(char **stringp, u_long *setp, u_long *clrp) argument
58 return strtofflags(stringp, setp, clrp);
/freebsd-10-stable/lib/libc/rpc/
H A Dgetnetconfig.c245 char *stringp; /* tmp string pointer */ local
301 stringp = (char *) malloc(MAXNETCONFIGLINE);
302 if (stringp == NULL)
317 if (fgets(stringp, MAXNETCONFIGLINE, nc_file) == NULL) {
318 free(stringp);
325 } while (*stringp == '#');
330 free(stringp);
335 free(stringp);
342 list->linep = stringp;
343 if (parse_ncp(stringp, lis
448 char *stringp; /* temporary string pointer */ local
561 parse_ncp(char *stringp, struct netconfig *ncp) argument
[all...]
/freebsd-10-stable/lib/libc/gen/
H A Dstrtofflags.c127 * success, 1 on failure. On failure, stringp is set to point
131 strtofflags(stringp, setp, clrp)
132 char **stringp;
142 string = *stringp;
144 *stringp = p;
/freebsd-10-stable/contrib/ntp/lib/isc/
H A Dstring.c199 isc_string_separate(char **stringp, const char *delim) { argument
200 char *string = *stringp;
212 *stringp = s;
215 *stringp = NULL;
/freebsd-10-stable/contrib/ntp/lib/isc/include/isc/
H A Dstring.h221 isc_string_separate(char **stringp, const char *delim);
/freebsd-10-stable/contrib/dialog/
H A Dbuttons.c56 string_to_char(const char **stringp) argument
60 const char *string = *stringp;
75 *stringp += len;
78 *stringp += 1;
82 const char *string = *stringp;
84 *stringp += 1;
/freebsd-10-stable/sys/amd64/linux/
H A Dlinux_sysvec.c329 char *stringp, *destp; local
399 stringp = imgp->args->begin_argv;
406 copyout(stringp, destp, ARG_MAX - imgp->args->stringspace);
419 while (*stringp++ != 0)
435 while (*stringp++ != 0)
/freebsd-10-stable/usr.bin/join/
H A Djoin.c363 mbssep(char **stringp, const wchar_t *delim) argument
370 if ((s = *stringp) == NULL)
384 *stringp = s;
/freebsd-10-stable/lib/libugidfw/
H A Dugidfw.c1082 char *stringdup, *stringp, *argv[100], **ap; local
1085 stringp = stringdup = strdup(string);
1086 while (*stringp == ' ' || *stringp == '\t')
1087 stringp++;
1090 for (ap = argv; (*ap = strsep(&stringp, " \t")) != NULL;) {
/freebsd-10-stable/sys/amd64/linux32/
H A Dlinux32_sysvec.c847 char *stringp, *destp; local
914 stringp = imgp->args->begin_argv;
920 copyout(stringp, destp, ARG_MAX - imgp->args->stringspace);
933 while (*stringp++ != 0)
949 while (*stringp++ != 0)
/freebsd-10-stable/sys/i386/linux/
H A Dlinux_sysvec.c304 char *stringp, *destp; local
378 stringp = imgp->args->begin_argv;
385 copyout(stringp, destp, ARG_MAX - imgp->args->stringspace);
398 while (*stringp++ != 0)
414 while (*stringp++ != 0)
/freebsd-10-stable/sys/kern/
H A Dkern_exec.c1291 char *stringp; local
1390 stringp = imgp->args->begin_argv;
1397 copyout(stringp, (void *)destp, ARG_MAX - imgp->args->stringspace);
1410 while (*stringp++ != 0)
1426 while (*stringp++ != 0)
/freebsd-10-stable/contrib/tnftp/
H A Dtnftp.h428 char *strsep(char **stringp, const char *delim);
/freebsd-10-stable/usr.sbin/mountd/
H A Dmountd.c177 static char *strsep_quote(char **stringp, const char *delim);
285 * It returns the string (or NULL, if *stringp is NULL),
288 * It modifies *stringp in place.
291 strsep_quote(char **stringp, const char *delim) argument
296 if (stringp == NULL || *stringp == NULL)
299 srcptr = dstptr = retval = *stringp;
344 *stringp = (*srcptr == '\0') ? NULL : srcptr + 1;
/freebsd-10-stable/contrib/binutils/binutils/
H A Ddebug.c224 bfd_boolean stringp; member in struct:debug_array_type
1482 bfd_signed_vma upper, bfd_boolean stringp)
1502 a->stringp = stringp;
2598 type->u.karray->stringp);
3166 && t1->u.karray->stringp == t2->u.karray->stringp
1478 debug_make_array_type(void *handle, debug_type element_type, debug_type range_type, bfd_signed_vma lower, bfd_signed_vma upper, bfd_boolean stringp) argument
/freebsd-10-stable/crypto/openssh/
H A Dsftp-server.c333 handle_to_string(int handle, u_char **stringp, int *hlenp) argument
335 if (stringp == NULL || hlenp == NULL)
337 *stringp = xmalloc(sizeof(int32_t));
338 put_u32(*stringp, handle);
H A Dssh-keyscan.c180 strnnsep(char **stringp, char *delim) argument
185 tok = xstrsep(stringp, delim);

Completed in 146 milliseconds

12