~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/include/linux/tty_flip.h

Version: ~ [ linux-6.11.5 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.58 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.114 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.169 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.228 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.284 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.322 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 /* SPDX-License-Identifier: GPL-2.0 */
  2 #ifndef _LINUX_TTY_FLIP_H
  3 #define _LINUX_TTY_FLIP_H
  4 
  5 #include <linux/tty_buffer.h>
  6 #include <linux/tty_port.h>
  7 
  8 struct tty_ldisc;
  9 
 10 int tty_buffer_set_limit(struct tty_port *port, int limit);
 11 unsigned int tty_buffer_space_avail(struct tty_port *port);
 12 int tty_buffer_request_room(struct tty_port *port, size_t size);
 13 size_t __tty_insert_flip_string_flags(struct tty_port *port, const u8 *chars,
 14                                       const u8 *flags, bool mutable_flags,
 15                                       size_t size);
 16 size_t tty_prepare_flip_string(struct tty_port *port, u8 **chars, size_t size);
 17 void tty_flip_buffer_push(struct tty_port *port);
 18 
 19 /**
 20  * tty_insert_flip_string_fixed_flag - add characters to the tty buffer
 21  * @port: tty port
 22  * @chars: characters
 23  * @flag: flag value for each character
 24  * @size: size
 25  *
 26  * Queue a series of bytes to the tty buffering. All the characters passed are
 27  * marked with the supplied flag.
 28  *
 29  * Returns: the number added.
 30  */
 31 static inline size_t tty_insert_flip_string_fixed_flag(struct tty_port *port,
 32                                                        const u8 *chars, u8 flag,
 33                                                        size_t size)
 34 {
 35         return __tty_insert_flip_string_flags(port, chars, &flag, false, size);
 36 }
 37 
 38 /**
 39  * tty_insert_flip_string_flags - add characters to the tty buffer
 40  * @port: tty port
 41  * @chars: characters
 42  * @flags: flag bytes
 43  * @size: size
 44  *
 45  * Queue a series of bytes to the tty buffering. For each character the flags
 46  * array indicates the status of the character.
 47  *
 48  * Returns: the number added.
 49  */
 50 static inline size_t tty_insert_flip_string_flags(struct tty_port *port,
 51                                                   const u8 *chars,
 52                                                   const u8 *flags, size_t size)
 53 {
 54         return __tty_insert_flip_string_flags(port, chars, flags, true, size);
 55 }
 56 
 57 /**
 58  * tty_insert_flip_char - add one character to the tty buffer
 59  * @port: tty port
 60  * @ch: character
 61  * @flag: flag byte
 62  *
 63  * Queue a single byte @ch to the tty buffering, with an optional flag.
 64  */
 65 static inline size_t tty_insert_flip_char(struct tty_port *port, u8 ch, u8 flag)
 66 {
 67         struct tty_buffer *tb = port->buf.tail;
 68         int change;
 69 
 70         change = !tb->flags && (flag != TTY_NORMAL);
 71         if (!change && tb->used < tb->size) {
 72                 if (tb->flags)
 73                         *flag_buf_ptr(tb, tb->used) = flag;
 74                 *char_buf_ptr(tb, tb->used++) = ch;
 75                 return 1;
 76         }
 77         return __tty_insert_flip_string_flags(port, &ch, &flag, false, 1);
 78 }
 79 
 80 static inline size_t tty_insert_flip_string(struct tty_port *port,
 81                                             const u8 *chars, size_t size)
 82 {
 83         return tty_insert_flip_string_fixed_flag(port, chars, TTY_NORMAL, size);
 84 }
 85 
 86 size_t tty_ldisc_receive_buf(struct tty_ldisc *ld, const u8 *p, const u8 *f,
 87                              size_t count);
 88 
 89 void tty_buffer_lock_exclusive(struct tty_port *port);
 90 void tty_buffer_unlock_exclusive(struct tty_port *port);
 91 
 92 #endif /* _LINUX_TTY_FLIP_H */
 93 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php