Home
last modified time | relevance | path

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

/external/bc/include/
Dfile.h67 #define bc_file_write(f, t, b, n) bc_file_write(f, b, n) macro
77 void bc_file_write(BcFile *restrict f, BcFlushType type,
/external/bc/src/
Dhistory.c508 bc_file_write(&vm.fout, bc_flush_none, "\x1b[6n", 4); in bc_history_cursorPos()
559 bc_file_write(&vm.fout, bc_flush_none, "\x1b[999C", 6); in bc_history_columns()
650 bc_file_write(&vm.fout, bc_flush_none, "\r", 1); in bc_history_refresh()
656 bc_file_write(&vm.fout, bc_flush_none, h->extras.v, h->extras.len - 1); in bc_history_refresh()
662 bc_file_write(&vm.fout, bc_flush_none, h->prompt, h->plen); in bc_history_refresh()
665 bc_file_write(&vm.fout, bc_flush_none, buf, BC_HIST_BUF_LEN(h)); in bc_history_refresh()
668 bc_file_write(&vm.fout, bc_flush_none, "\x1b[0K", 4); in bc_history_refresh()
704 bc_file_write(&vm.fout, bc_flush_none, cbuf, clen); in bc_history_edit_insert()
1113 bc_file_write(&vm.fout, bc_flush_none, newline, sizeof(newline) - 1); in bc_history_printCtrl()
1139 bc_file_write(&vm.fout, bc_flush_none, prompt, h->plen); in bc_history_edit()
[all …]
Dfile.c136 void bc_file_write(BcFile *restrict f, BcFlushType type, in bc_file_write() function
172 bc_file_write(f, bc_flush_none, ptr, len); in bc_file_vprintf()
229 bc_file_write(f, type, str, strlen(str)); in bc_file_puts()
Dprogram.c1815 bc_file_write(&vm.fout, bc_flush_none, bc_program_ready_msg, in bc_program_reset()