Symbol: match_list
lib/libedit/filecomplete.c
263
char **match_list = NULL, *retstr, *prevstr;
lib/libedit/filecomplete.c
275
nmatch_list = reallocarray(match_list,
lib/libedit/filecomplete.c
278
free(match_list);
lib/libedit/filecomplete.c
281
match_list = nmatch_list;
lib/libedit/filecomplete.c
284
match_list[++matches] = retstr;
lib/libedit/filecomplete.c
287
if (!match_list)
lib/libedit/filecomplete.c
292
prevstr = match_list[1];
lib/libedit/filecomplete.c
296
prevstr[i] == match_list[which][i]; i++)
lib/libedit/filecomplete.c
303
free(match_list);
lib/libedit/filecomplete.c
306
(void)strncpy(retstr, match_list[1], max_equal);
lib/libedit/filecomplete.c
308
match_list[0] = retstr;
lib/libedit/filecomplete.c
311
match_list[matches + 1] = NULL;
lib/libedit/filecomplete.c
313
return match_list;
usr.bin/ssh/kex-names.c
181
if ((cp = match_list(proposal, algs, NULL)) == NULL)
usr.bin/ssh/kex.c
800
char *name = match_list(client, server, NULL);
usr.bin/ssh/kex.c
822
char *name = match_list(client, server, NULL);
usr.bin/ssh/kex.c
840
char *name = match_list(client, server, NULL);
usr.bin/ssh/kex.c
863
k->name = match_list(client, server, NULL);
usr.bin/ssh/kex.c
882
k->hostkey_alg = match_list(client, server, NULL);
usr.bin/ssh/match.h
23
char *match_list(const char *, const char *, u_int *);
usr.bin/ssh/sftp-server.c
192
((result = match_list(h->name, request_denylist, NULL))) != NULL) {
usr.bin/ssh/sftp-server.c
198
((result = match_list(h->name, request_allowlist, NULL))) != NULL) {
usr.bin/ssh/sshconnect2.c
1166
return match_list(sshkey_ssh_name(key),
usr.bin/ssh/sshconnect2.c
1188
tmp = match_list(sshkey_sigalg_by_name(cp),
usr.bin/ssh/sshconnect2.c
2330
if ((name = match_list(preferred, supported, &next)) == NULL) {