Lines Matching refs:trace_seq
30 * a trace_seq structure after it was destroyed.
36 die("Usage of trace_seq after it was destroyed"); \
40 * trace_seq_init - initialize the trace_seq structure
41 * @s: a pointer to the trace_seq structure to initialize
43 void trace_seq_init(struct trace_seq *s)
52 * trace_seq_reset - re-initialize the trace_seq structure
53 * @s: a pointer to the trace_seq structure to reset
55 void trace_seq_reset(struct trace_seq *s)
65 * trace_seq_destroy - free up memory of a trace_seq
66 * @s: a pointer to the trace_seq to free the buffer
68 * Only frees the buffer, not the trace_seq struct itself.
70 void trace_seq_destroy(struct trace_seq *s)
79 static void expand_buffer(struct trace_seq *s)
84 die("Can't allocate trace_seq buffer memory");
102 trace_seq_printf(struct trace_seq *s, const char *fmt, ...)
139 trace_seq_vprintf(struct trace_seq *s, const char *fmt, va_list args)
171 int trace_seq_puts(struct trace_seq *s, const char *str)
188 int trace_seq_putc(struct trace_seq *s, unsigned char c)
200 void trace_seq_terminate(struct trace_seq *s)
208 int trace_seq_do_printf(struct trace_seq *s)