Lines Matching refs:ocs_textbuf_printf
581 ocs_textbuf_printf(textbuf, "<?xml version=\"1.0\" encoding=\"ISO-8859-1\" ?>\n"); in ocs_ddump_startfile()
614 ocs_textbuf_printf(textbuf, "<%s type=\"section\" instance=\"%d\">\n", name, instance); in ocs_ddump_section()
632 ocs_textbuf_printf(textbuf, "</%s>\n", name); in ocs_ddump_endsection()
657 ocs_textbuf_printf(textbuf, "<%s>%s</%s>\n", name, valuebuf, name); in ocs_ddump_value()
687 ocs_textbuf_printf(textbuf, "<%s type=\"buffer\" instance=\"%d\">\n", name, instance); in ocs_ddump_buffer()
692 ocs_textbuf_printf(textbuf, "%08x ", *dword++); in ocs_ddump_buffer()
694 ocs_textbuf_printf(textbuf, "\n"); in ocs_ddump_buffer()
698 ocs_textbuf_printf(textbuf, "</%s>\n", name); in ocs_ddump_buffer()
740 ocs_textbuf_printf(textbuf, "<qentries>\n"); in ocs_ddump_queue_entries()
746 ocs_textbuf_printf(textbuf, "[%04x] ", index); in ocs_ddump_queue_entries()
748 ocs_textbuf_printf(textbuf, "%08x ", *dword++); in ocs_ddump_queue_entries()
751 ocs_textbuf_printf(textbuf, "\n"); in ocs_ddump_queue_entries()
753 ocs_textbuf_printf(textbuf, " "); in ocs_ddump_queue_entries()
763 ocs_textbuf_printf(textbuf, "</qentries>\n"); in ocs_ddump_queue_entries()
1805 ocs_textbuf_printf(ocs_textbuf_t *textbuf, const char *fmt, ...) in ocs_textbuf_printf() function