Lines Matching refs:ocs_textbuf_printf
583 ocs_textbuf_printf(textbuf, "<?xml version=\"1.0\" encoding=\"ISO-8859-1\" ?>\n"); in ocs_ddump_startfile()
616 ocs_textbuf_printf(textbuf, "<%s type=\"section\" instance=\"%d\">\n", name, instance); in ocs_ddump_section()
634 ocs_textbuf_printf(textbuf, "</%s>\n", name); in ocs_ddump_endsection()
659 ocs_textbuf_printf(textbuf, "<%s>%s</%s>\n", name, valuebuf, name); in ocs_ddump_value()
689 ocs_textbuf_printf(textbuf, "<%s type=\"buffer\" instance=\"%d\">\n", name, instance); in ocs_ddump_buffer()
694 ocs_textbuf_printf(textbuf, "%08x ", *dword++); in ocs_ddump_buffer()
696 ocs_textbuf_printf(textbuf, "\n"); in ocs_ddump_buffer()
700 ocs_textbuf_printf(textbuf, "</%s>\n", name); in ocs_ddump_buffer()
742 ocs_textbuf_printf(textbuf, "<qentries>\n"); in ocs_ddump_queue_entries()
748 ocs_textbuf_printf(textbuf, "[%04x] ", index); in ocs_ddump_queue_entries()
750 ocs_textbuf_printf(textbuf, "%08x ", *dword++); in ocs_ddump_queue_entries()
753 ocs_textbuf_printf(textbuf, "\n"); in ocs_ddump_queue_entries()
755 ocs_textbuf_printf(textbuf, " "); in ocs_ddump_queue_entries()
765 ocs_textbuf_printf(textbuf, "</qentries>\n"); in ocs_ddump_queue_entries()
1807 ocs_textbuf_printf(ocs_textbuf_t *textbuf, const char *fmt, ...) in ocs_textbuf_printf() function