| /NextBSD/contrib/libreadline/ |
| HD | complete.c | 1043 compute_lcd_of_matches (match_list, matches, text) in compute_lcd_of_matches() argument 1044 char **match_list; in compute_lcd_of_matches() 1062 match_list[0] = match_list[1]; 1063 match_list[1] = (char *)NULL; 1079 (c1 = _rl_to_lower(match_list[i][si])) && 1080 (c2 = _rl_to_lower(match_list[i + 1][si])); 1085 v = mbrtowc (&wc1, match_list[i]+si, strlen (match_list[i]+si), &ps1); 1086 mbrtowc (&wc2, match_list[i+1]+si, strlen (match_list[i+1]+si), &ps2); 1102 (c1 = match_list[i][si]) && 1103 (c2 = match_list[i + 1][si]); [all …]
|
| /NextBSD/lib/libedit/ |
| HD | filecomplete.c | 292 char **match_list = NULL, *retstr, *prevstr; in completion_matches() local 304 nmatch_list = el_realloc(match_list, in completion_matches() 307 el_free(match_list); in completion_matches() 310 match_list = nmatch_list; in completion_matches() 313 match_list[++matches] = retstr; in completion_matches() 316 if (!match_list) in completion_matches() 321 prevstr = match_list[1]; in completion_matches() 325 prevstr[i] == match_list[which][i]; i++) in completion_matches() 332 el_free(match_list); in completion_matches() 335 (void)strncpy(retstr, match_list[1], max_equal); in completion_matches() [all …]
|
| /NextBSD/contrib/dialog/ |
| HD | fselect.c | 353 match(char *name, LIST * d_list, LIST * f_list, MATCH * match_list) in match() argument 371 match_list->data = matches; in match() 372 match_list->length = (int) data_len; in match() 376 free_match(MATCH * match_list) in free_match() argument 378 free(match_list->data); in free_match() 379 match_list->length = 0; in free_match() 385 MATCH match_list; in complete() local 392 match(name, d_list, f_list, &match_list); in complete() 393 if (match_list.length == 0) { in complete() 398 test = match_list.data[0]; in complete() [all …]
|
| /NextBSD/contrib/libarchive/libarchive/ |
| HD | archive_match.c | 53 struct match_list { struct 98 struct match_list exclusions; 99 struct match_list inclusions; 128 struct match_list inclusion_unames; 129 struct match_list inclusion_gnames; 133 struct match_list *, int, const void *, int); 138 static int add_owner_name(struct archive_match *, struct match_list *, 140 static int add_pattern_mbs(struct archive_match *, struct match_list *, 142 static int add_pattern_wcs(struct archive_match *, struct match_list *, 154 static void match_list_add(struct match_list *, struct match *); [all …]
|
| /NextBSD/crypto/openssh/ |
| HD | kex.c | 353 char *name = match_list(client, server, NULL); in choose_enc() 371 char *name = match_list(client, server, NULL); in choose_mac() 388 char *name = match_list(client, server, NULL); in choose_comp() 408 k->name = match_list(client, server, NULL); in choose_kex() 421 char *hostkeyalg = match_list(client, server, NULL); in choose_hostkeyalg() 478 roaming = match_list(KEX_RESUME, peer[PROPOSAL_KEX_ALGS], NULL); in kex_choose_conf()
|
| HD | match.h | 22 char *match_list(const char *, const char *, u_int *);
|
| HD | match.c | 242 match_list(const char *client, const char *server, u_int *next) in match_list() function
|
| HD | roaming_client.c | 184 || (str = match_list(KEX_RESUME, kexlist, NULL)) == NULL) { in roaming_resume()
|
| HD | auth2-pubkey.c | 241 if ((result = match_list(cert->principals[i], in match_principals_option()
|
| HD | sftp-server.c | 170 ((result = match_list(h->name, request_blacklist, NULL))) != NULL) { in request_permitted() 176 ((result = match_list(h->name, request_whitelist, NULL))) != NULL) { in request_permitted()
|
| HD | ssh_namespace.h | 410 #define match_list ssh_match_list macro
|
| HD | sshconnect2.c | 1633 if ((name = match_list(preferred, supported, &next)) == NULL) { in authmethod_get()
|