Home
last modified time | relevance | path

Searched refs:seq_buf (Results 1 – 3 of 3) sorted by relevance

/freebsd/sys/compat/linuxkpi/common/include/linux/
H A Dseq_buf.h19 struct seq_buf { struct
26 struct seq_buf NAME = { \ argument
32 seq_buf_clear(struct seq_buf *s) in seq_buf_clear()
40 seq_buf_set_overflow(struct seq_buf *s) in seq_buf_set_overflow()
46 seq_buf_has_overflowed(struct seq_buf *s) in seq_buf_has_overflowed()
52 seq_buf_buffer_left(struct seq_buf *s) in seq_buf_buffer_left()
61 void linuxkpi_seq_buf_init(struct seq_buf *s, char *buf, unsigned int size);
64 int linuxkpi_seq_buf_printf(struct seq_buf *s, const char *fmt, ...) \
68 int linuxkpi_seq_buf_vprintf(struct seq_buf *s, const char *fmt, va_list args);
71 const char * linuxkpi_seq_buf_str(struct seq_buf *s);
/freebsd/sys/compat/linuxkpi/common/src/
H A Dlinux_seq_buf.c14 linuxkpi_seq_buf_init(struct seq_buf *s, char *buf, unsigned int size) in linuxkpi_seq_buf_init()
23 linuxkpi_seq_buf_printf(struct seq_buf *s, const char *fmt, ...) in linuxkpi_seq_buf_printf()
36 linuxkpi_seq_buf_vprintf(struct seq_buf *s, const char *fmt, va_list args) in linuxkpi_seq_buf_vprintf()
53 linuxkpi_seq_buf_str(struct seq_buf *s) in linuxkpi_seq_buf_str()
/freebsd/contrib/less/
H A Dlesskey_parse.c336 char seq_buf[8]; in tstr() local
338 strncpy(seq_buf, seq, len); in tstr()
339 seq_buf[len] = '\0'; in tstr()
340 parse_error(LM(invalid_escape_sequence), seq_buf); in tstr()