| /dragonfly/contrib/gdb-7/readline/ |
| HD | complete.c | 1148 compute_lcd_of_matches (match_list, matches, text) in compute_lcd_of_matches() argument 1149 char **match_list; in compute_lcd_of_matches() 1167 match_list[0] = match_list[1]; 1168 match_list[1] = (char *)NULL; 1184 (c1 = _rl_to_lower(match_list[i][si])) && 1185 (c2 = _rl_to_lower(match_list[i + 1][si])); 1190 v = mbrtowc (&wc1, match_list[i]+si, strlen (match_list[i]+si), &ps1); 1191 mbrtowc (&wc2, match_list[i+1]+si, strlen (match_list[i+1]+si), &ps2); 1207 (c1 = match_list[i][si]) && 1208 (c2 = match_list[i + 1][si]); [all …]
|
| /dragonfly/contrib/libedit/src/ |
| HD | filecomplete.c | 465 char **match_list = NULL, *retstr, *prevstr; in completion_matches() local 477 nmatch_list = el_realloc(match_list, in completion_matches() 480 el_free(match_list); in completion_matches() 483 match_list = nmatch_list; in completion_matches() 486 match_list[++matches] = retstr; in completion_matches() 489 if (!match_list) in completion_matches() 494 prevstr = match_list[1]; in completion_matches() 498 prevstr[i] == match_list[which][i]; i++) in completion_matches() 505 el_free(match_list); in completion_matches() 508 (void)strlcpy(retstr, match_list[1], max_equal + 1); in completion_matches() [all …]
|
| /dragonfly/contrib/dialog/ |
| HD | fselect.c | 330 match(char *name, LIST * d_list, LIST * f_list, MATCH * match_list) in match() argument 359 match_list->data = matches; in match() 360 match_list->length = (int) data_len; in match() 364 free_match(MATCH * match_list) in free_match() argument 366 free(match_list->data); in free_match() 367 match_list->length = 0; in free_match() 373 MATCH match_list; in complete() local 379 match(name, d_list, f_list, &match_list); in complete() 380 if (match_list.length == 0) { in complete() 381 free(match_list.data); in complete() [all …]
|
| /dragonfly/contrib/libarchive/libarchive/ |
| HD | archive_match.c | 54 struct match_list { struct 102 struct match_list exclusions; 103 struct match_list inclusions; 132 struct match_list inclusion_unames; 133 struct match_list inclusion_gnames; 137 struct match_list *, int, const void *, int); 142 static int add_owner_name(struct archive_match *, struct match_list *, 144 static int add_pattern_mbs(struct archive_match *, struct match_list *, 146 static int add_pattern_wcs(struct archive_match *, struct match_list *, 158 static void match_list_add(struct match_list *, struct match *); [all …]
|
| /dragonfly/contrib/lvm2/dist/tools/ |
| HD | lvm.c | 129 char **match_list = NULL; in _completion() local 137 match_list = rl_completion_matches(text, _list_cmds); in _completion() 140 match_list = rl_completion_matches(text, _list_args); in _completion() 145 return match_list; in _completion()
|
| /dragonfly/crypto/openssh/ |
| HD | match.h | 23 char *match_list(const char *, const char *, u_int *);
|
| HD | kex.c | 798 char *name = match_list(client, server, NULL); in choose_enc() 820 char *name = match_list(client, server, NULL); in choose_mac() 838 char *name = match_list(client, server, NULL); in choose_comp() 863 k->name = match_list(client, server, NULL); in choose_kex() 882 k->hostkey_alg = match_list(client, server, NULL); in choose_hostkeyalg()
|
| HD | match.c | 274 match_list(const char *client, const char *server, u_int *next) in match_list() function
|
| HD | kex-names.c | 186 if ((cp = match_list(proposal, algs, NULL)) == NULL) in kex_has_any_alg()
|
| HD | auth2-pubkeyfile.c | 155 if ((result = match_list(cert->principals[i], in match_principals_option()
|
| HD | sshconnect2.c | 1166 return match_list(sshkey_ssh_name(key), in key_sig_algorithm() 1188 tmp = match_list(sshkey_sigalg_by_name(cp), in key_sig_algorithm() 2323 if ((name = match_list(preferred, supported, &next)) == NULL) { in authmethod_get()
|
| HD | sftp-server.c | 202 ((result = match_list(h->name, request_denylist, NULL))) != NULL) { in request_permitted() 208 ((result = match_list(h->name, request_allowlist, NULL))) != NULL) { in request_permitted()
|