Home
last modified time | relevance | path

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

/freebsd/contrib/libpcap/rpcapd/
H A Dfileconf.c91 size_t toklen; in fileconf_read() local
242 if (toklen == 0) in fileconf_read()
307 toklen = strcspn(ptr, " \t#\r\n"); in fileconf_read()
308 ptr += toklen; in fileconf_read()
309 if (toklen == 0) in fileconf_read()
369 toklen = strcspn(ptr, " \t#\r\n"); in fileconf_read()
370 if (toklen == 0) in fileconf_read()
384 ptr += toklen; in fileconf_read()
443 toklen = strcspn(ptr, " \t#\r\n"); in fileconf_read()
444 ptr += toklen; in fileconf_read()
[all …]
/freebsd/contrib/mandoc/
H A Dmanpath.c171 size_t linesz, tok, toklen; in manconf_file() local
191 toklen = strlen(toks[tok]); in manconf_file()
192 if (cp + toklen < ep && in manconf_file()
193 isspace((unsigned char)cp[toklen]) && in manconf_file()
194 strncmp(cp, toks[tok], toklen) == 0) { in manconf_file()
195 cp += toklen; in manconf_file()
/freebsd/contrib/tcpdump/
H A Dutil-print.c695 size_t toklen = 0; in fetch_token() local
716 if (toklen + 2 > tbuflen) { in fetch_token()
720 tbuf[toklen] = c; in fetch_token()
721 toklen++; in fetch_token()
723 if (toklen == 0) { in fetch_token()
727 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.c244 int toklen, pathlen; in ng_ksocket_sockaddr_parse() local
247 if ((path = ng_get_string_token(s, off, &toklen, NULL)) == NULL) in ng_ksocket_sockaddr_parse()
258 *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()