Home
last modified time | relevance | path

Searched refs:strfmt (Results 1 – 2 of 2) sorted by relevance

/PHP-8.0/sapi/phpdbg/
H A Dphpdbg_out.h42 …t(int severity, int fd, const char *tag, const char *xmlfmt, const char *strfmt, ...) PHPDBG_ATTRI…
48 …hpdbg_error(tag, xmlfmt, strfmt, ...) phpdbg_print(P_ERROR , PHPDBG_G(io)[PHPDBG_STD… argument
49 …hpdbg_notice(tag, xmlfmt, strfmt, ...) phpdbg_print(P_NOTICE , PHPDBG_G(io)[PHPDBG_STD… argument
50 …pdbg_writeln(tag, xmlfmt, strfmt, ...) phpdbg_print(P_WRITELN, PHPDBG_G(io)[PHPDBG_STDO… argument
51 …hpdbg_write(tag, xmlfmt, strfmt, ...) phpdbg_print(P_WRITE , PHPDBG_G(io)[PHPDBG_STD… argument
57 #define phpdbg_error_ex(out, tag, xmlfmt, strfmt, ...) phpdbg_print(P_ERROR , out, tag, xmlf… argument
58 #define phpdbg_notice_ex(out, tag, xmlfmt, strfmt, ...) phpdbg_print(P_NOTICE , out, tag, xmlf… argument
59 #define phpdbg_writeln_ex(out, tag, xmlfmt, strfmt, ...) phpdbg_print(P_WRITELN, out, tag, xmlf… argument
60 #define phpdbg_write_ex(out, tag, xmlfmt, strfmt, ...) phpdbg_print(P_WRITE , out, tag, xmlf… argument
80 PHPDBG_API int phpdbg_output_err_buf(const char *tag, const char *xmlfmt, const char *strfmt, ...);
H A Dphpdbg_out.c1075 …g_vprint(int type, int fd, const char *tag, const char *xmlfmt, const char *strfmt, va_list args) { in phpdbg_vprint() argument
1081 if (strfmt != NULL && strlen(strfmt) > 0L) { in phpdbg_vprint()
1083 msglen = phpdbg_xml_vasprintf(&msg, strfmt, 0, argcpy); in phpdbg_vprint()
1144 PHPDBG_API int phpdbg_output_err_buf(const char *tag, const char *xmlfmt, const char *strfmt, ...) { in phpdbg_output_err_buf() argument
1155 va_start(args, strfmt); in phpdbg_output_err_buf()
1156 …BG_G(err_buf).type, PHPDBG_G(err_buf).fd, tag ? tag : PHPDBG_G(err_buf).tag, xmlfmt, strfmt, args); in phpdbg_output_err_buf()
1165 … int phpdbg_print(int type, int fd, const char *tag, const char *xmlfmt, const char *strfmt, ...) { in phpdbg_print() argument
1173 va_start(args, strfmt); in phpdbg_print()
1174 len = phpdbg_vprint(type, fd, tag, xmlfmt, strfmt, args); in phpdbg_print()

Completed in 8 milliseconds