strfmt           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) {
strfmt           1104 sapi/phpdbg/phpdbg_out.c 	if (strfmt != NULL && strlen(strfmt) > 0L) {
strfmt           1106 sapi/phpdbg/phpdbg_out.c 		msglen = phpdbg_xml_vasprintf(&msg, strfmt, 0, argcpy);
strfmt           1167 sapi/phpdbg/phpdbg_out.c PHPDBG_API int phpdbg_output_err_buf(const char *tag, const char *xmlfmt, const char *strfmt, ...) {
strfmt           1178 sapi/phpdbg/phpdbg_out.c 	va_start(args, strfmt);
strfmt           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);
strfmt           1188 sapi/phpdbg/phpdbg_out.c PHPDBG_API int phpdbg_print(int type, int fd, const char *tag, const char *xmlfmt, const char *strfmt, ...) {
strfmt           1196 sapi/phpdbg/phpdbg_out.c 	va_start(args, strfmt);
strfmt           1197 sapi/phpdbg/phpdbg_out.c 	len = phpdbg_vprint(type, fd, tag, xmlfmt, strfmt, args);
strfmt             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);
strfmt             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__)
strfmt             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__)
strfmt             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__)
strfmt             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__)
strfmt             52 sapi/phpdbg/phpdbg_out.h #define phpdbg_error_ex(out, tag, xmlfmt, strfmt, ...)      phpdbg_print(P_ERROR  , out, tag,  xmlfmt, strfmt, ##__VA_ARGS__)
strfmt             53 sapi/phpdbg/phpdbg_out.h #define phpdbg_notice_ex(out, tag, xmlfmt, strfmt, ...)     phpdbg_print(P_NOTICE , out, tag,  xmlfmt, strfmt, ##__VA_ARGS__)
strfmt             54 sapi/phpdbg/phpdbg_out.h #define phpdbg_writeln_ex(out, tag, xmlfmt, strfmt, ...)    phpdbg_print(P_WRITELN, out, tag,  xmlfmt, strfmt, ##__VA_ARGS__)
strfmt             55 sapi/phpdbg/phpdbg_out.h #define phpdbg_write_ex(out, tag, xmlfmt, strfmt, ...)      phpdbg_print(P_WRITE  , out, tag,  xmlfmt, strfmt, ##__VA_ARGS__)
strfmt             78 sapi/phpdbg/phpdbg_out.h PHPDBG_API int phpdbg_output_err_buf(const char *tag, const char *xmlfmt, const char *strfmt, ...);