Lines Matching refs:id
6 * This id is derived from software contributed to The NetBSD Foundation
12 * 1. Redistributions of source id must retain the above copyright
39 ti_getflag(const TERMINAL *term, const char *id)
46 _DIAGASSERT(id != NULL);
48 ind = _ti_flagindex(id);
53 if (ud->type == 'f' && strcmp(ud->id, id) == 0)
60 tigetflag(const char *id)
63 _DIAGASSERT(id != NULL);
65 return ti_getflag(cur_term, id);
70 ti_getnum(const TERMINAL *term, const char *id)
77 _DIAGASSERT(id != NULL);
79 ind = _ti_numindex(id);
87 if (ud->type == 'n' && strcmp(ud->id, id) == 0) {
97 tigetnum(const char *id)
100 _DIAGASSERT(id != NULL);
102 return ti_getnum(cur_term, id);
107 ti_getstr(const TERMINAL *term, const char *id)
114 _DIAGASSERT(id != NULL);
116 ind = _ti_strindex(id);
121 if (ud->type == 's' && strcmp(ud->id, id) == 0)
128 tigetstr(const char *id)
131 _DIAGASSERT(id != NULL);
133 return __UNCONST(ti_getstr(cur_term, id));