Searched refs:toklen (Results 1 – 6 of 6) sorted by relevance
| /freebsd-14-stable/contrib/libpcap/rpcapd/ |
| HD | fileconf.c | 89 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-14-stable/contrib/mandoc/ |
| HD | manpath.c | 171 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-14-stable/contrib/tcpdump/ |
| HD | util-print.c | 703 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-14-stable/sys/gdb/ |
| HD | gdb_main.c | 201 size_t i, toklen; in gdb_do_qsupported() local 217 toklen = (delim - tok); in gdb_do_qsupported() 219 gdb_rxp += toklen; in gdb_do_qsupported() 220 gdb_rxsz -= toklen; in gdb_do_qsupported() 227 if (toklen < 2) in gdb_do_qsupported() 230 ok = tok[toklen - 1]; in gdb_do_qsupported() 243 tok[toklen - 1] = '\0'; in gdb_do_qsupported()
|
| /freebsd-14-stable/sys/netgraph/ |
| HD | ng_ksocket.c | 244 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()
|
| HD | ng_parse.c | 1098 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()
|