Home
last modified time | relevance | path

Searched refs:toklen (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/libpcap/rpcapd/
H A Dfileconf.c89 size_t toklen; in fileconf_read() local
238 toklen = strcspn(ptr, RPCAP_HOSTLIST_SEP "#"); in fileconf_read()
239 ptr += toklen; // skip to the terminator in fileconf_read()
240 if (toklen == 0) in fileconf_read()
305 toklen = strcspn(ptr, " \t#\r\n"); in fileconf_read()
306 ptr += toklen; in fileconf_read()
307 if (toklen == 0) in fileconf_read()
367 toklen = strcspn(ptr, " \t#\r\n"); in fileconf_read()
368 if (toklen == 0) in fileconf_read()
382 ptr += toklen; in fileconf_read()
[all …]
/freebsd/contrib/mandoc/
H A Dmanpath.c159 size_t linesz, tok, toklen; in manconf_file() local
179 toklen = strlen(toks[tok]); in manconf_file()
180 if (cp + toklen < ep && in manconf_file()
181 isspace((unsigned char)cp[toklen]) && in manconf_file()
182 strncmp(cp, toks[tok], toklen) == 0) { in manconf_file()
183 cp += toklen; in manconf_file()
/freebsd/contrib/tcpdump/
H A Dutil-print.c703 size_t toklen = 0; in fetch_token() local
724 if (toklen + 2 > tbuflen) { in fetch_token()
728 tbuf[toklen] = c; in fetch_token()
729 toklen++; in fetch_token()
731 if (toklen == 0) { in fetch_token()
735 tbuf[toklen] = '\0'; in fetch_token()
/freebsd/sys/gdb/
H A Dgdb_main.c200 size_t i, toklen; in gdb_do_qsupported() local
216 toklen = (delim - tok); in gdb_do_qsupported()
218 gdb_rxp += toklen; in gdb_do_qsupported()
219 gdb_rxsz -= toklen; in gdb_do_qsupported()
226 if (toklen < 2) in gdb_do_qsupported()
229 ok = tok[toklen - 1]; in gdb_do_qsupported()
242 tok[toklen - 1] = '\0'; in gdb_do_qsupported()
/freebsd/sys/netgraph/
H A Dng_ksocket.c264 int toklen, pathlen; in ng_ksocket_sockaddr_parse() local
267 if ((path = ng_get_string_token(s, off, &toklen, NULL)) == NULL) in ng_ksocket_sockaddr_parse()
278 *off += toklen; in ng_ksocket_sockaddr_parse()
H A Dng_parse.c1098 int toklen; in ng_bytearray_parse() local
1102 if ((str = ng_get_string_token(s, off, &toklen, &slen)) != NULL) { in ng_bytearray_parse()
1118 *off += toklen; in ng_bytearray_parse()