Home | History | Annotate | Download | only in src

Lines Matching defs:ts

147 	{ "ts", "cursor to status line" },
966 struct ttysize ts;
967 if (ioctl(el->el_infd, TIOCGSIZE, &ts) != -1) {
968 if (ts.ts_cols)
969 *cols = ts.ts_cols;
970 if (ts.ts_lines)
971 *lins = ts.ts_lines;
1290 char **ts;
1306 for (t = tstr, ts = el->el_terminal.t_str; t->name != NULL; t++, ts++) {
1308 if (*ts && **ts) {
1310 ct_decode_string(*ts, &el->el_scratch)),
1331 const struct termcapstr *ts;
1346 for (ts = tstr; ts->name != NULL; ts++)
1347 if (strcmp(ts->name, what) == 0)
1350 if (ts->name != NULL) {
1351 terminal_alloc(el, ts, how);
1409 const struct termcapstr *ts;
1423 for (ts = tstr; ts->name != NULL; ts++)
1424 if (strcmp(ts->name, what) == 0)
1427 if (ts->name != NULL) {
1428 *(char **)how = el->el_terminal.t_str[ts - tstr];