Home
last modified time | relevance | path

Searched refs:history_pos (Results 1 – 6 of 6) sorted by relevance

/NextBSD/sys/dev/syscons/
HDschistory.c145 scp->history_pos = sc_vtb_tail(history); in sc_alloc_history_buffer()
147 scp->history_pos = 0; in sc_alloc_history_buffer()
213 scp->history_pos = sc_vtb_tail(scp->history); in sc_hist_save()
222 if (scp->history_pos != sc_vtb_tail(scp->history)) { in sc_hist_restore()
223 scp->history_pos = sc_vtb_tail(scp->history); in sc_hist_restore()
242 pos = scp->history_pos; in history_to_screen()
256 scp->history_pos = sc_vtb_tail(scp->history); in sc_hist_home()
264 scp->history_pos = sc_vtb_pos(scp->history, sc_vtb_tail(scp->history), in sc_hist_end()
273 if (sc_vtb_pos(scp->history, scp->history_pos, -(scp->xsize*scp->ysize)) in sc_hist_up_line()
276 scp->history_pos = sc_vtb_pos(scp->history, scp->history_pos, in sc_hist_up_line()
[all …]
HDsyscons.h342 int history_pos; /* position shown on screen */ member
HDsyscons.c446 scp->history_pos = sc_vtb_tail(scp->history); in sc_set_vesa_mode()
3303 scp->history_pos = 0; in init_scp()
/NextBSD/contrib/libreadline/
HDisearch.c106 cxt->history_pos = 0;
240 cxt->history_pos = cxt->save_line;
334 cxt->history_pos = cxt->last_found_line;
557 cxt->history_pos += cxt->direction;
560 if ((cxt->sflags & SF_REVERSE) ? (cxt->history_pos < 0) : (cxt->history_pos == cxt->hlen))
567 cxt->sline = cxt->lines[cxt->history_pos];
570 while ((cxt->prev_line_found && STREQ (cxt->prev_line_found, cxt->lines[cxt->history_pos])) ||
584 cxt->history_pos = cxt->last_found_line;
593 cxt->prev_line_found = cxt->lines[cxt->history_pos];
594 rl_replace_line (cxt->lines[cxt->history_pos], 0);
[all …]
HDrlprivate.h68 int history_pos; member
HDsearch.c200 cxt->history_pos = cxt->save_line;