Lines Matching full:column

124 	unsigned int column;  member
409 * Locking: should be called under the %output_lock to protect the column state
423 ldata->column = 0; in do_output_char()
427 ldata->canon_column = ldata->column = 0; in do_output_char()
431 ldata->canon_column = ldata->column; in do_output_char()
434 if (O_ONOCR(tty) && ldata->column == 0) in do_output_char()
439 ldata->canon_column = ldata->column = 0; in do_output_char()
442 ldata->canon_column = ldata->column = 0; in do_output_char()
445 spaces = 8 - (ldata->column & 7); in do_output_char()
449 ldata->column += spaces; in do_output_char()
453 ldata->column += spaces; in do_output_char()
456 if (ldata->column > 0) in do_output_char()
457 ldata->column--; in do_output_char()
464 ldata->column++; in do_output_char()
483 * Locking: %output_lock to protect column state and space left (also, this is
518 * Locking: %output_lock to protect column state and space left (also, this is
545 ldata->column = 0; in process_output_block()
548 ldata->canon_column = ldata->column; in process_output_block()
551 if (O_ONOCR(tty) && ldata->column == 0) in process_output_block()
555 ldata->canon_column = ldata->column = 0; in process_output_block()
560 if (ldata->column > 0) in process_output_block()
561 ldata->column--; in process_output_block()
568 ldata->column++; in process_output_block()
613 * offset by canon column. Otherwise, tab spacing is normal. in n_tty_process_echo_ops()
625 if (ldata->column > 0) in n_tty_process_echo_ops()
626 ldata->column--; in n_tty_process_echo_ops()
632 ldata->canon_column = ldata->column; in n_tty_process_echo_ops()
637 if (ldata->column > 0) in n_tty_process_echo_ops()
638 ldata->column--; in n_tty_process_echo_ops()
648 ldata->column++; in n_tty_process_echo_ops()
665 ldata->column += 2; in n_tty_process_echo_ops()
687 * driver at the time of the write, operations like certain changes in column
826 * echo_move_back_col - add operation to move back a column
829 * Add an operation to the echo buffer to move back one column.
838 * echo_set_canon_col - add operation to set the canon column
841 * Add an operation to the echo buffer to set the canon column to the current
842 * column.
860 * information will be used later, along with canon column (if applicable), to
1333 /* Record the column of first canon char. */ in n_tty_receive_char_canon()
1396 /* Record the column of first canon char. */ in n_tty_receive_char_special()
1433 /* Record the column of first canon char. */ in n_tty_receive_char()
2339 * here as well as in the echo processing function to protect the column state
2344 * Locking: output_lock to protect column state and space left