Searched refs:delim (Results 1 - 25 of 149) sorted by relevance

123456

/freebsd-11-stable/contrib/unbound/compat/
H A Dstrsep.c36 in_delim(char c, const char* delim) argument
39 if(!delim)
41 for(p=delim; *p; p++) {
48 char *strsep(char **stringp, const char *delim) argument
56 while(*s && !in_delim(*s, delim))
/freebsd-11-stable/contrib/mdocml/
H A Dcompat_strsep.c43 * strings separated by characters from delim.
46 * delim need not remain constant from call to call.
53 strsep(char **stringp, const char *delim) argument
64 spanp = delim;
/freebsd-11-stable/crypto/heimdal/lib/roken/
H A Dstrsep.c43 strsep(char **str, const char *delim) argument
48 *str = *str + strcspn(*str, delim);
H A Dstrsep_copy.c45 strsep_copy(const char **stringp, const char *delim, char *buf, size_t len) argument
51 *stringp = *stringp + strcspn(*stringp, delim);
/freebsd-11-stable/sys/libkern/
H A Dstrsep.c41 * strings separated by characters from delim.
44 * delim need not remain constant from call to call.
51 strsep(stringp, delim)
53 const char *delim;
64 spanp = delim;
/freebsd-11-stable/contrib/libpcap/missing/
H A Dstrtok_r.c44 pcap_strtok_r(char *s, const char *delim, char **last) argument
53 * Skip (span) leading delimiters (s += strspn(s, delim), sort of).
57 for (spanp = (char *)delim; (sc = *spanp++) != 0;) {
69 * Scan token (scan for delimiters: s += strcspn(s, delim), sort of).
70 * Note that delim must have one NUL; we stop if we see that, too.
74 spanp = (char *)delim;
/freebsd-11-stable/contrib/bmake/
H A Dstresep.c42 char * stresep(char **stringp, const char *delim, int esc);
45 * strings separated by characters from delim. If esc is not NUL, then
50 * delim need not remain constant from call to call.
57 stresep(char **stringp, const char *delim, int esc) argument
65 if (stringp == NULL || delim == NULL)
79 spanp = delim;
/freebsd-11-stable/sys/sys/
H A Dboot.h36 int boot_parse_cmdline_delim(char *cmdline, const char *delim);
/freebsd-11-stable/lib/libc/string/
H A Dstrsep.c41 * strings separated by characters from delim.
44 * delim need not remain constant from call to call.
51 strsep(char **stringp, const char *delim) argument
62 spanp = delim;
H A Dstrtok.c52 __strtok_r(char *s, const char *delim, char **last) argument
61 * Skip (span) leading delimiters (s += strspn(s, delim), sort of).
65 for (spanp = (char *)delim; (sc = *spanp++) != 0;) {
77 * Scan token (scan for delimiters: s += strcspn(s, delim), sort of).
78 * Note that delim must have one NUL; we stop if we see that, too.
82 spanp = (char *)delim;
98 strtok(char *s, const char *delim) argument
102 return (__strtok_r(s, delim, &last));
H A Dwcstok.c41 wcstok(wchar_t * __restrict s, const wchar_t * __restrict delim, argument
52 * Skip (span) leading delimiters (s += wcsspn(s, delim), sort of).
56 for (spanp = delim; (sc = *spanp++) != L'\0';) {
68 * Scan token (scan for delimiters: s += wcscspn(s, delim), sort of).
69 * Note that delim must have one NUL; we stop if we see that, too.
73 spanp = delim;
/freebsd-11-stable/crypto/openssh/openbsd-compat/
H A Dstrsep.c43 * strings separated by characters from delim.
46 * delim need not remain constant from call to call.
53 strsep(char **stringp, const char *delim) argument
64 spanp = delim;
/freebsd-11-stable/contrib/tcpdump/missing/
H A Dstrsep.c46 * strings separated by characters from delim.
49 * delim need not remain constant from call to call.
56 strsep(char **stringp, const char *delim) argument
67 spanp = delim;
/freebsd-11-stable/usr.sbin/bluetooth/hcsecd/
H A Dlexer.l41 delim [ \t\n]
42 ws {delim}+
43 empty {delim}*
/freebsd-11-stable/lib/libutil/
H A Dhexdump.c50 char delim; local
53 delim = (flags & HD_DELIM_MASK) >> 8;
55 delim = ' ';
74 printf("%c%02x", delim, cp[k]);
/freebsd-11-stable/contrib/unbound/sldns/
H A Dparse.h52 * \param[in] *delim chars at which the parsing should stop
56 ssize_t sldns_fget_token(FILE *f, char *token, const char *delim, size_t limit);
64 * \param[in] *delim chars at which the parsing should stop
69 ssize_t sldns_fget_token_l(FILE *f, char *token, const char *delim, size_t limit, int *line_nr);
77 * \param[in] *delim chars at which the parsing should stop
87 ssize_t sldns_bget_token_par(struct sldns_buffer *b, char *token, const char *delim, size_t limit, int* par, const char* skipw);
95 * \param[in] *delim chars at which the parsing should stop
99 ssize_t sldns_bget_token(struct sldns_buffer *b, char *token, const char *delim, size_t limit);
102 * searches for keyword and delim in a file. Gives everything back
115 * searches for keyword and delim
[all...]
/freebsd-11-stable/usr.bin/m4/
H A Dtrace.c161 char delim[3]; local
164 delim[0] = LPAREN;
165 delim[1] = EOS;
167 fprintf(traceout, "%s%s%s%s", delim,
171 delim[0] = COMMA;
172 delim[1] = ' ';
173 delim[2] = EOS;
/freebsd-11-stable/contrib/ipfilter/lib/
H A Dparseipfexpr.c155 char *delim; local
157 delim = strchr(s, '/');
158 if (delim != NULL) {
159 *delim++ = '\0';
160 if (genmask(AF_INET, delim,
181 char *delim; local
183 delim = strchr(s, '/');
184 if (delim != NULL) {
185 *delim++ = '\0';
186 if (genmask(AF_INET6, delim,
222 char *delim; local
[all...]
/freebsd-11-stable/usr.sbin/bluetooth/bthidd/
H A Dlexer.l48 delim [ \t\n]
49 ws {delim}+
50 empty {delim}*
/freebsd-11-stable/usr.bin/pr/
H A Degetopt.c79 static int delim; /* which option delimiter */ local
98 delim = (int)*place;
140 return (delim);
155 if (delim == (int)'+') {
/freebsd-11-stable/contrib/ldns/ldns/
H A Dparse.h53 * \param[in] *delim chars at which the parsing should stop
57 ssize_t ldns_fget_token(FILE *f, char *token, const char *delim, size_t limit);
65 * \param[in] *delim chars at which the parsing should stop
70 ssize_t ldns_fget_token_l(FILE *f, char *token, const char *delim, size_t limit, int *line_nr);
78 * \param[in] *delim chars at which the parsing should stop
82 ssize_t ldns_bget_token(ldns_buffer *b, char *token, const char *delim, size_t limit);
85 * searches for keyword and delim in a file. Gives everything back
98 * searches for keyword and delim. Gives everything back
113 * searches for keyword and delim in a buffer. Gives everything back
/freebsd-11-stable/usr.bin/paste/
H A Dpaste.c60 static wchar_t *delim; variable
95 delimcnt = tr(delim = warg);
109 if (!delim) {
111 delim = tab;
161 (ch = delim[(lp->cnt - 1) % delimcnt]))
170 (ch = delim[(lp->cnt - 1) % delimcnt]))
181 if ((ch = delim[cnt % delimcnt]))
183 } else if ((ch = delim[(lp->cnt - 1) % delimcnt]))
219 if (delim[cnt] != '\0')
220 putwchar(delim[cn
[all...]
/freebsd-11-stable/sys/geom/vinum/
H A Dgeom_vinum_share.c79 char delim; /* Delimiter for searching for the partner. */ local
91 delim = *cptr;
100 if ((delim == '\'') || (delim == '"')) {
105 if ((*cptr == delim) && (cptr[-1] != '\\')) {
/freebsd-11-stable/contrib/ncurses/ncurses/tinfo/
H A Dname_match.c94 _nc_name_match(const char *const namelst, const char *const name, const char *const delim) argument
108 for (t = delim; *t != '\0'; t++) {
/freebsd-11-stable/contrib/ldns/
H A Dparse.c25 ldns_fget_token(FILE *f, char *token, const char *delim, size_t limit) argument
27 return ldns_fget_token_l(f, token, delim, limit, NULL);
31 ldns_fget_token_l(FILE *f, char *token, const char *delim, size_t limit, int *line_nr) argument
42 if (!delim) {
46 del = delim;
126 /* check if we hit the delim */
217 ldns_bget_token(ldns_buffer *b, char *token, const char *delim, size_t limit) argument
228 if (!delim) {
232 del = delim;
303 /* check if we hit the delim */
[all...]

Completed in 433 milliseconds

123456