Searched defs:cur_term (Results 1 - 4 of 4) sorted by relevance

/illumos-gate/usr/src/lib/libxcurses/src/libc/xcurses/
H A Dsetup.c57 TERMINAL *cur_term; variable
94 for(j = 0; cur_term->_str[i][j]; ++j)
95 if (cur_term->_str[i][j] == proto)
96 cur_term->_str[i][j] = CC;
258 * On success, cur_term set to a terminfo structure and OK returned.
271 * in which case we have to be able to restore cur_term in
274 old_term = cur_term;
276 cur_term = (TERMINAL *) calloc(1, sizeof *cur_term);
277 if (cur_term
[all...]
/illumos-gate/usr/src/lib/libcurses/screen/
H A Dsetupterm.c73 TERMINAL _first_term, *cur_term = &_first_term; variable
377 if ((cur_term = (TERMINAL *)
393 free((char *)cur_term);
409 cur_term = &_first_term;
429 (void) strncpy(cur_term->_termname, term, 14);
431 cur_term->_termname[14] = '\0';
432 cur_term->_bools = cur_bools;
433 cur_term->_nums = cur_nums;
434 cur_term->_strs = cur_strs;
435 cur_term
[all...]
/illumos-gate/usr/src/lib/libxcurses2/src/libc/xcurses/
H A Dsetup.c60 TERMINAL *cur_term; variable
111 for (j = 0; cur_term->_str[i][j]; ++j)
112 if (cur_term->_str[i][j] == proto)
113 cur_term->_str[i][j] = *CC;
293 * On success, cur_term set to a terminfo structure and OK returned.
304 * in which case we have to be able to restore cur_term in
307 old_term = cur_term;
309 cur_term = (TERMINAL *) calloc(1, sizeof (*cur_term));
310 if (cur_term
[all...]
/illumos-gate/usr/src/cmd/newtask/
H A Dnewtask.c210 char *cur_term = getenv("TERM"); local
252 if (cur_term != NULL) {
253 len_term = strlen(cur_term) + strlen("TERM=") + 1;
257 cur_term);

Completed in 63 milliseconds