Home
last modified time | relevance | path

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

/freebsd-14.2/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-14.2/contrib/bc/src/
H A Dhistory.c929 bc_file_write(&vm->fout, bc_flush_none, "\x1b[6n", 4); in bc_history_cursorPos()
985 bc_file_write(&vm->fout, bc_flush_none, "\x1b[999C", 6); in bc_history_columns()
1071 bc_file_write(&vm->fout, bc_flush_none, "\r", 1); in bc_history_refresh()
1084 bc_file_write(&vm->fout, bc_flush_none, h->extras.v, extras_len); in bc_history_refresh()
1093 bc_file_write(&vm->fout, bc_flush_none, "\x1b[0K", 4); in bc_history_refresh()
1145 bc_file_write(&vm->fout, bc_flush_none, cbuf, clen); in bc_history_edit_insert()
1840 bc_file_write(&vm->fout, bc_flush_none, prompt, h->plen); in bc_history_edit()
1892 bc_file_write(&vm->fout, bc_flush_none, vm->sigmsg, vm->siglen); in bc_history_edit()
1893 bc_file_write(&vm->fout, bc_flush_none, bc_program_ready_msg, in bc_history_edit()
1999 bc_file_write(&vm->fout, bc_flush_none, "\x1b[H\x1b[2J", 7); 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
338 bc_file_write(f, bc_flush_none, ptr, len); in bc_file_vprintf()
421 bc_file_write(f, type, str, strlen(str)); in bc_file_puts()