xmlfmt           1098 sapi/phpdbg/phpdbg_out.c PHPDBG_API int phpdbg_vprint(int type, int fd, const char *tag, const char *xmlfmt, const char *strfmt, va_list args) {
xmlfmt           1111 sapi/phpdbg/phpdbg_out.c 		if (xmlfmt != NULL && strlen(xmlfmt) > 0L) {
xmlfmt           1113 sapi/phpdbg/phpdbg_out.c 			xmllen = phpdbg_xml_vasprintf(&xml, xmlfmt, 1, argcpy);
xmlfmt           1167 sapi/phpdbg/phpdbg_out.c PHPDBG_API int phpdbg_output_err_buf(const char *tag, const char *xmlfmt, const char *strfmt, ...) {
xmlfmt           1179 sapi/phpdbg/phpdbg_out.c 	len = phpdbg_vprint(PHPDBG_G(err_buf).type, PHPDBG_G(err_buf).fd, tag ? tag : PHPDBG_G(err_buf).tag, xmlfmt, strfmt, args);
xmlfmt           1188 sapi/phpdbg/phpdbg_out.c PHPDBG_API int phpdbg_print(int type, int fd, const char *tag, const char *xmlfmt, const char *strfmt, ...) {
xmlfmt           1197 sapi/phpdbg/phpdbg_out.c 	len = phpdbg_vprint(type, fd, tag, xmlfmt, strfmt, args);
xmlfmt             37 sapi/phpdbg/phpdbg_out.h PHPDBG_API int phpdbg_print(int severity, int fd, const char *tag, const char *xmlfmt, const char *strfmt, ...) PHP_ATTRIBUTE_FORMAT(printf, 5, 6);
xmlfmt             43 sapi/phpdbg/phpdbg_out.h #define phpdbg_error(tag, xmlfmt, strfmt, ...)              phpdbg_print(P_ERROR  , PHPDBG_G(io)[PHPDBG_STDOUT].fd, tag,  xmlfmt, strfmt, ##__VA_ARGS__)
xmlfmt             44 sapi/phpdbg/phpdbg_out.h #define phpdbg_notice(tag, xmlfmt, strfmt, ...)             phpdbg_print(P_NOTICE , PHPDBG_G(io)[PHPDBG_STDOUT].fd, tag,  xmlfmt, strfmt, ##__VA_ARGS__)
xmlfmt             45 sapi/phpdbg/phpdbg_out.h #define phpdbg_writeln(tag, xmlfmt, strfmt, ...)            phpdbg_print(P_WRITELN, PHPDBG_G(io)[PHPDBG_STDOUT].fd, tag,  xmlfmt, strfmt, ##__VA_ARGS__)
xmlfmt             46 sapi/phpdbg/phpdbg_out.h #define phpdbg_write(tag, xmlfmt, strfmt, ...)              phpdbg_print(P_WRITE  , PHPDBG_G(io)[PHPDBG_STDOUT].fd, tag,  xmlfmt, strfmt, ##__VA_ARGS__)
xmlfmt             52 sapi/phpdbg/phpdbg_out.h #define phpdbg_error_ex(out, tag, xmlfmt, strfmt, ...)      phpdbg_print(P_ERROR  , out, tag,  xmlfmt, strfmt, ##__VA_ARGS__)
xmlfmt             53 sapi/phpdbg/phpdbg_out.h #define phpdbg_notice_ex(out, tag, xmlfmt, strfmt, ...)     phpdbg_print(P_NOTICE , out, tag,  xmlfmt, strfmt, ##__VA_ARGS__)
xmlfmt             54 sapi/phpdbg/phpdbg_out.h #define phpdbg_writeln_ex(out, tag, xmlfmt, strfmt, ...)    phpdbg_print(P_WRITELN, out, tag,  xmlfmt, strfmt, ##__VA_ARGS__)
xmlfmt             55 sapi/phpdbg/phpdbg_out.h #define phpdbg_write_ex(out, tag, xmlfmt, strfmt, ...)      phpdbg_print(P_WRITE  , out, tag,  xmlfmt, strfmt, ##__VA_ARGS__)
xmlfmt             78 sapi/phpdbg/phpdbg_out.h PHPDBG_API int phpdbg_output_err_buf(const char *tag, const char *xmlfmt, const char *strfmt, ...);