Lines Matching refs:textbuf

100 extern int32_t ocs_textbuf_alloc(ocs_t *ocs, ocs_textbuf_t *textbuf, uint32_t length);
101 extern uint32_t ocs_textbuf_initialized(ocs_textbuf_t *textbuf);
102 extern int32_t ocs_textbuf_init(ocs_t *ocs, ocs_textbuf_t *textbuf, void *buffer, uint32_t length);
103 extern void ocs_textbuf_free(ocs_t *ocs, ocs_textbuf_t *textbuf);
104 extern void ocs_textbuf_putc(ocs_textbuf_t *textbuf, uint8_t c);
105 extern void ocs_textbuf_puts(ocs_textbuf_t *textbuf, char *s);
107 extern void ocs_textbuf_printf(ocs_textbuf_t *textbuf, const char *fmt, ...);
109 extern void ocs_textbuf_vprintf(ocs_textbuf_t *textbuf, const char *fmt, va_list ap);
110 extern void ocs_textbuf_buffer(ocs_textbuf_t *textbuf, uint8_t *buffer, uint32_t buffer_length);
111 extern void ocs_textbuf_copy(ocs_textbuf_t *textbuf, uint8_t *buffer, uint32_t buffer_length);
112 extern int32_t ocs_textbuf_remaining(ocs_textbuf_t *textbuf);
113 extern void ocs_textbuf_reset(ocs_textbuf_t *textbuf);
114 extern uint8_t *ocs_textbuf_get_buffer(ocs_textbuf_t *textbuf);
115 extern int32_t ocs_textbuf_get_length(ocs_textbuf_t *textbuf);
116 extern int32_t ocs_textbuf_get_written(ocs_textbuf_t *textbuf);
117 extern uint8_t *ocs_textbuf_ext_get_buffer(ocs_textbuf_t *textbuf, uint32_t idx);
118 extern int32_t ocs_textbuf_ext_get_length(ocs_textbuf_t *textbuf, uint32_t idx);
119 extern int32_t ocs_textbuf_ext_get_written(ocs_textbuf_t *textbuf, uint32_t idx);
254 extern void ocs_display_sparams(const char *prelabel, const char *reqlabel, int dest, void *textbuf
332 extern int32_t ocs_ddump_ramlog(ocs_textbuf_t *textbuf, ocs_ramlog_t *ramlog);