Lines Matching refs:raw_c
2533 int raw_c; in terminal_loop() local
2574 raw_c = term_vgetc(); in terminal_loop()
2579 if (raw_c != K_IGNORE) in terminal_loop()
2580 vungetc(raw_c); in terminal_loop()
2583 if (raw_c == K_IGNORE) in terminal_loop()
2585 c = raw_c_to_ctrl(raw_c); in terminal_loop()
2618 int prev_raw_c = raw_c; in terminal_loop()
2625 raw_c = term_vgetc(); in terminal_loop()
2626 c = raw_c_to_ctrl(raw_c); in terminal_loop()
2659 raw_c = ctrl_to_raw_c(termwinkey == 0 ? Ctrl_W : termwinkey); in terminal_loop()
2664 raw_c = ctrl_to_raw_c(Ctrl_BSL); in terminal_loop()
2693 if (!enc_utf8 && has_mbyte && raw_c >= 0x80) in terminal_loop()
2698 mb[0] = (unsigned)raw_c >> 8; in terminal_loop()
2699 mb[1] = raw_c; in terminal_loop()
2701 raw_c = wc; in terminal_loop()
2704 if (send_keys_to_term(curbuf->b_term, raw_c, mod_mask, TRUE) != OK) in terminal_loop()
2706 if (raw_c == K_MOUSEMOVE) in terminal_loop()