Lines Matching full:eol
1996 size_t eol; in canon_copy_from_read_buf() local
2010 eol = find_next_bit(ldata->read_flags, size, tail); in canon_copy_from_read_buf()
2012 if (eol == N_TTY_BUF_SIZE && more) { in canon_copy_from_read_buf()
2014 eol = find_first_bit(ldata->read_flags, more); in canon_copy_from_read_buf()
2015 found = eol != more; in canon_copy_from_read_buf()
2017 found = eol != size; in canon_copy_from_read_buf()
2019 n = eol - tail; in canon_copy_from_read_buf()
2024 if (!found || read_buf(ldata, eol) != __DISABLED_CHAR) in canon_copy_from_read_buf()
2032 clear_bit(eol, ldata->read_flags); in canon_copy_from_read_buf()
2044 /* No EOL found - do a continuation retry if there is more data */ in canon_copy_from_read_buf()
2050 * EOF (special EOL character that's a __DISABLED_CHAR)
2071 // Clear the EOL bit, skip the EOF char. in canon_skip_eof()