Home
last modified time | relevance | path

Searched refs:bc_file_write (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/bc/include/
H A Dfile.h112 #define bc_file_write(f, t, b, n) bc_file_write_impl(f, t, b, n) macro
123 #define bc_file_write(f, t, b, n) bc_file_write_impl(f, b, n) macro
197 bc_file_write(BcFile* restrict f, BcFlushType type, const char* buf, size_t n);
/freebsd/contrib/bc/src/
H A Dhistory.c919 bc_file_write(&vm->fout, bc_flush_none, "\x1b[6n", 4); in bc_history_cursorPos()
975 bc_file_write(&vm->fout, bc_flush_none, "\x1b[999C", 6); in bc_history_columns()
1061 bc_file_write(&vm->fout, bc_flush_none, "\r", 1); in bc_history_refresh()
1074 bc_file_write(&vm->fout, bc_flush_none, h->extras.v, extras_len); in bc_history_refresh()
1078 if (BC_PROMPT) bc_file_write(&vm->fout, bc_flush_none, h->prompt, h->plen); in bc_history_refresh()
1080 bc_file_write(&vm->fout, bc_flush_none, h->buf.v, len - extras_len); in bc_history_refresh()
1083 bc_file_write(&vm->fout, bc_flush_none, "\x1b[0K", 4); in bc_history_refresh()
1135 bc_file_write(&vm->fout, bc_flush_none, cbuf, clen); in bc_history_edit_insert()
1798 bc_file_write(&vm->fout, bc_flush_none, newline, sizeof(newline) - 1); in bc_history_printCtrl()
1830 bc_file_write(&vm->fout, bc_flush_none, prompt, h->plen); in bc_history_edit()
[all …]
H A Dfile.c218 bc_file_write(BcFile* restrict f, BcFlushType type, const char* buf, size_t n) in bc_file_write() function
339 bc_file_write(f, bc_flush_none, ptr, len); in bc_file_vprintf()
422 bc_file_write(f, type, str, strlen(str)); in bc_file_puts()