Lines Matching defs:tab
30 const struct var_expand_table *tab = auth_request_var_expand_static_tab;
33 for (i = 0; tab[i].key != '\0' || tab[i].long_key != NULL; i++) {
35 if (key[0] == tab[i].key) {
39 } else if (tab[i].long_key != NULL) {
40 if (strncmp(key, tab[i].long_key, size) == 0 &&
41 tab[i].long_key[size] == '\0') {
67 const struct var_expand_table *tab =
73 if (tab->key != '\0')
74 str_append_c(str, tab->key);
77 str_append(str, tab->long_key);