/src/lib/libterminfo/ |
term.h | 741 #define t_acs_chars(t) (t)->strs[TICODE_acsc] 742 #define t_alt_scancode_esc(t) (t)->strs[TICODE_scesa] 743 #define t_back_tab(t) (t)->strs[TICODE_cbt] 744 #define t_bell(t) (t)->strs[TICODE_bel] 745 #define t_bit_image_carriage_return(t) (t)->strs[TICODE_bicr] 746 #define t_bit_image_newline(t) (t)->strs[TICODE_binel] 747 #define t_bit_image_repeat(t) (t)->strs[TICODE_birep] 748 #define t_carriage_return(t) (t)->strs[TICODE_cr] 749 #define t_change_char_pitch(t) (t)->strs[TICODE_cpi] 750 #define t_change_line_pitch(t) (t)->strs[TICODE_lpi 1938 const char **strs; member in struct:__anona33762cb0108 [all...] |
genman | 57 strcaps=$(gentab $TERMH $TERMC strs)
|
term_private.h | 123 const char **strs; member in struct:__anon386157850208 174 TBUF strs; member in struct:__anon386157850408
|
term.c | 100 if (allocset(&term->strs, 0, TISTRMAX+1, sizeof(*term->strs)) == -1) 159 term->strs[ind] = cap; 161 term->strs[ind] = ABSENT_STRING; 163 term->strs[ind] = CANCELLED_STRING;
|
compile.c | 391 (sizeof(uint16_t) * 2) + tic->strs.bufpos + 408 _ti_encode_buf(&cap, &tic->strs); 679 _ti_find_cap(tic, &tic->strs, 's', ind) != NULL) 703 if (!_ti_encode_buf_id_count_str(&tic->strs, 769 if (_ti_find_cap(tic, &tic->strs, 's', ind) 773 &tic->strs, ind, 0, sizeof(uint16_t))) 808 free(tic->strs.buf);
|
curterm.c | 138 free(oterm->strs);
|
ti.c | 118 return term->strs[ind];
|
termcap.c | 152 str = cur_term->strs[_ti_cap_strids[ind].ti];
|
/src/lib/libcurses/ |
setterm.c | 89 screen->term->strs[TICODE_clear] = NULL; 90 screen->term->strs[TICODE_cud] = NULL; 91 screen->term->strs[TICODE_cud1] = NULL; 92 screen->term->strs[TICODE_cup] = NULL; 93 screen->term->strs[TICODE_cuu] = NULL; 94 screen->term->strs[TICODE_cuu1] = NULL; 95 screen->term->strs[TICODE_vpa] = NULL; 98 screen->term->strs[TICODE_home] = screen->term->strs[TICODE_cr];
|
getch.c | 452 s = screen->term->strs[tc[i].code];
|
/src/usr.bin/tput/ |
tput.c | 151 char *strs[TPARM_MAX], *tmp; local in function:process 167 strs[i] = *argv; 182 (piss[i - 1] ? (long)strs[i - 1] : nums[i - 1]) : 0)
|
/src/usr.bin/infocmp/ |
infocmp.c | 258 if (VALID_STRING(t->strs[i]) || 259 (aflag && t->strs[i] == CANCELLED_STRING)) 263 ents[n++].str = t->strs[i]; 484 if (t1->strs[i] != ABSENT_STRING || 485 t2->strs[i] != ABSENT_STRING) 565 if (terms[j]->strs[i] == ABSENT_STRING || 566 terms[j]->strs[i] == CANCELLED_STRING) 570 if (VALID_STRING(term->strs[i]) && 571 strcmp(term->strs[i], 572 terms[j]->strs[i]) == 0 [all...] |
/src/usr.bin/tic/ |
tic.c | 284 cap = utic->strs.buf; 285 for (n = utic->strs.entries; n > 0; n--) { 289 _ti_find_cap(rtic, &rtic->strs, 's', ind) == NULL) 291 if (!_ti_encode_buf_id_count_str(&rtic->strs, ind, cap, 382 if (dup_tbuf(&tic->strs, &rtic->strs) == -1) 400 free(tic->strs.buf);
|
/src/usr.bin/make/ |
var.c | 3404 ShuffleSubstrings(Substring *strs, size_t n) 3410 Substring t = strs[i]; 3411 strs[i] = strs[rndidx]; 3412 strs[rndidx] = t;
|
/src/sys/kern/ |
kern_exec.c | 1694 copyinargstrs(struct execve_data * restrict data, char * const *strs, 1709 if ((error = (*fetch_element)(strs, i, &sp)) != 0) {
|