Home
last modified time | relevance | path

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

/freebsd-9-stable/sys/dev/syscons/
Dschistory.c144 scp->history_pos = sc_vtb_tail(history); in sc_alloc_history_buffer()
146 scp->history_pos = 0; in sc_alloc_history_buffer()
212 scp->history_pos = sc_vtb_tail(scp->history); in sc_hist_save()
221 if (scp->history_pos != sc_vtb_tail(scp->history)) { in sc_hist_restore()
222 scp->history_pos = sc_vtb_tail(scp->history); in sc_hist_restore()
241 pos = scp->history_pos; in history_to_screen()
255 scp->history_pos = sc_vtb_tail(scp->history); in sc_hist_home()
263 scp->history_pos = sc_vtb_pos(scp->history, sc_vtb_tail(scp->history), in sc_hist_end()
272 if (sc_vtb_pos(scp->history, scp->history_pos, -(scp->xsize*scp->ysize)) in sc_hist_up_line()
275 scp->history_pos = sc_vtb_pos(scp->history, scp->history_pos, in sc_hist_up_line()
[all …]
Dsyscons.h340 int history_pos; /* position shown on screen */ member
Dsyscons.c441 scp->history_pos = sc_vtb_tail(scp->history); in sc_set_vesa_mode()
3286 scp->history_pos = 0; in init_scp()
/freebsd-9-stable/contrib/libreadline/
Disearch.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 …]
Drlprivate.h68 int history_pos; member
Dsearch.c200 cxt->history_pos = cxt->save_line;