Lines Matching refs:prt_ps_buffer

1387 static garray_T prt_ps_buffer;  variable
1584 if (prt_ps_buffer.ga_len > 0) in prt_flush_buffer()
1635 prt_write_file_raw_len(prt_ps_buffer.ga_data, prt_ps_buffer.ga_len); in prt_flush_buffer()
1652 ga_clear(&prt_ps_buffer); in prt_flush_buffer()
1653 ga_init2(&prt_ps_buffer, (int)sizeof(char), prt_bufsiz); in prt_flush_buffer()
2652 ga_init2(&prt_ps_buffer, (int)sizeof(char), prt_bufsiz); in mch_print_init()
3367 ga_append(&prt_ps_buffer, ch); in mch_print_text_out()
3369 ga_append(&prt_ps_buffer, ch); in mch_print_text_out()
3386 ga_append(&prt_ps_buffer, IF_EB('\\', 0134)); in mch_print_text_out()
3389 case BS: ga_append(&prt_ps_buffer, IF_EB('b', 0142)); break; in mch_print_text_out()
3390 case TAB: ga_append(&prt_ps_buffer, IF_EB('t', 0164)); break; in mch_print_text_out()
3391 case NL: ga_append(&prt_ps_buffer, IF_EB('n', 0156)); break; in mch_print_text_out()
3392 case FF: ga_append(&prt_ps_buffer, IF_EB('f', 0146)); break; in mch_print_text_out()
3393 case CAR: ga_append(&prt_ps_buffer, IF_EB('r', 0162)); break; in mch_print_text_out()
3394 case '(': ga_append(&prt_ps_buffer, IF_EB('(', 0050)); break; in mch_print_text_out()
3395 case ')': ga_append(&prt_ps_buffer, IF_EB(')', 0051)); break; in mch_print_text_out()
3396 case '\\': ga_append(&prt_ps_buffer, IF_EB('\\', 0134)); break; in mch_print_text_out()
3403 ga_append(&prt_ps_buffer, ch_buff[0]); in mch_print_text_out()
3404 ga_append(&prt_ps_buffer, ch_buff[1]); in mch_print_text_out()
3405 ga_append(&prt_ps_buffer, ch_buff[2]); in mch_print_text_out()
3410 ga_append(&prt_ps_buffer, ch); in mch_print_text_out()