Lines Matching full:eol
2019 size_t eol; in canon_copy_from_read_buf() local
2036 eol = find_next_bit(ldata->read_flags, size, tail); in canon_copy_from_read_buf()
2038 if (eol == N_TTY_BUF_SIZE && more) { in canon_copy_from_read_buf()
2040 eol = find_next_bit(ldata->read_flags, more, 0); in canon_copy_from_read_buf()
2041 found = eol != more; in canon_copy_from_read_buf()
2043 found = eol != size; in canon_copy_from_read_buf()
2045 n = eol - tail; in canon_copy_from_read_buf()
2050 if (!found || read_buf(ldata, eol) != __DISABLED_CHAR) in canon_copy_from_read_buf()
2053 n_tty_trace("%s: eol:%zu found:%d n:%zu c:%zu tail:%zu more:%zu\n", in canon_copy_from_read_buf()
2054 __func__, eol, found, n, c, tail, more); in canon_copy_from_read_buf()
2061 clear_bit(eol, ldata->read_flags); in canon_copy_from_read_buf()
2073 /* No EOL found - do a continuation retry if there is more data */ in canon_copy_from_read_buf()
2079 * EOF (special EOL character that's a __DISABLED_CHAR)
2101 // Clear the EOL bit, skip the EOF char. in canon_skip_eof()