Searched refs:split_at (Results 1 – 7 of 7) sorted by relevance
| /freebsd-12.1/contrib/tcp_wrappers/ |
| H A D | tcpdchk.c | 220 if ((cl_list = split_at(sv_list, ':')) == 0) { 224 sh_cmd = split_at(cl_list, ':'); 308 if ((host = split_at(cp + 1, '@')) != 0 && check_host(host) > 1) { 336 if (host = split_at(cp + 1, '@')) { /* user@host */ 476 } else if (mask = split_at(pat, '/')) { /* network/netmask */
|
| H A D | hosts_access.c | 186 if ((cl_list = split_at(sv_list, ':')) == 0) { 190 sh_cmd = split_at(cl_list, ':'); 249 if ((host = split_at(tok + 1, '@')) == 0) { /* plain daemon */ 265 if ((host = split_at(tok + 1, '@')) == 0) { /* plain host */ 328 } else if ((mask = split_at(tok, '/')) != 0) { /* net/mask */
|
| H A D | options.c | 238 if (split_at(ibuf, '\n')) 280 if ((group = split_at(value, '.')) != 0) 471 char *level = split_at(value, '.');
|
| H A D | tcpdmatch.c | 122 if ((server = split_at(argv[optind], '@')) == 0) 135 if ((client = split_at(argv[optind + 1], '@')) != 0) {
|
| H A D | misc.c | 57 char *split_at(string, delimiter) in split_at() function
|
| H A D | tcpd.h | 91 char *split_at(char *, int); /* strchr() and split */
|
| /freebsd-12.1/contrib/googletest/googletest/scripts/ |
| H A D | pump.py | 754 split_at = seg.rfind(' ', 0, max_len) 755 output.append(prefix + seg[:split_at].strip() + line_concat) 756 seg = seg[split_at + 1:]
|