Home
last modified time | relevance | path

Searched refs:t_loc (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/libedit/
H A Dterminal.c293 el->el_terminal.t_loc = 0; in terminal_init()
321 el->el_terminal.t_loc = 0; in terminal_end()
363 if (el->el_terminal.t_loc + 3 < TC_BUFSIZE) { in terminal_alloc()
366 el->el_terminal.t_loc], cap); in terminal_alloc()
367 el->el_terminal.t_loc += clen + 1; /* one for \0 */ in terminal_alloc()
384 el->el_terminal.t_loc = tlen; in terminal_alloc()
385 if (el->el_terminal.t_loc + 3 >= TC_BUFSIZE) { in terminal_alloc()
391 (void) strcpy(*str = &el->el_terminal.t_buf[el->el_terminal.t_loc], in terminal_alloc()
393 el->el_terminal.t_loc += (size_t)clen + 1; /* one for \0 */ in terminal_alloc()
H A Dterminal.h64 size_t t_loc; /* location used */ member