Lines Matching refs:ocs_textbuf_printf
584 ocs_textbuf_printf(textbuf, "<?xml version=\"1.0\" encoding=\"ISO-8859-1\" ?>\n"); in ocs_ddump_startfile()
617 ocs_textbuf_printf(textbuf, "<%s type=\"section\" instance=\"%d\">\n", name, instance); in ocs_ddump_section()
635 ocs_textbuf_printf(textbuf, "</%s>\n", name); in ocs_ddump_endsection()
660 ocs_textbuf_printf(textbuf, "<%s>%s</%s>\n", name, valuebuf, name); in ocs_ddump_value()
691 ocs_textbuf_printf(textbuf, "<%s type=\"buffer\" instance=\"%d\">\n", name, instance); in ocs_ddump_buffer()
696 ocs_textbuf_printf(textbuf, "%08x ", *dword++); in ocs_ddump_buffer()
698 ocs_textbuf_printf(textbuf, "\n"); in ocs_ddump_buffer()
702 ocs_textbuf_printf(textbuf, "</%s>\n", name); in ocs_ddump_buffer()
745 ocs_textbuf_printf(textbuf, "<qentries>\n"); in ocs_ddump_queue_entries()
751 ocs_textbuf_printf(textbuf, "[%04x] ", index); in ocs_ddump_queue_entries()
753 ocs_textbuf_printf(textbuf, "%08x ", *dword++); in ocs_ddump_queue_entries()
756 ocs_textbuf_printf(textbuf, "\n"); in ocs_ddump_queue_entries()
758 ocs_textbuf_printf(textbuf, " "); in ocs_ddump_queue_entries()
768 ocs_textbuf_printf(textbuf, "</qentries>\n"); in ocs_ddump_queue_entries()
1815 ocs_textbuf_printf(ocs_textbuf_t *textbuf, const char *fmt, ...) in ocs_textbuf_printf() function