Lines Matching refs:docref

994 PHPAPI ZEND_COLD void php_verror(const char *docref, const char *params, int type, const char *form…  in php_verror()  argument
1082 if (docref && docref[0] == '#') { in php_verror()
1083 docref_target = strchr(docref, '#'); in php_verror()
1084 docref = NULL; in php_verror()
1088 if (!docref && is_function) { in php_verror()
1102 docref = docref_buf; in php_verror()
1109 if (docref && is_function && PG(html_errors) && strlen(PG(docref_root))) { in php_verror()
1110 if (strncmp(docref, "http://", 7)) { in php_verror()
1117 ref = estrdup(docref); in php_verror()
1136 docref = docref_buf; in php_verror()
1140 …d(0, "%s [<a href='%s%s%s'>%s</a>]: %S", origin, docref_root, docref, docref_target, docref, buffe… in php_verror()
1142 …message = zend_strpprintf_unchecked(0, "%s [%s%s%s]: %S", origin, docref_root, docref, docref_targ… in php_verror()
1168 #define php_error_docref_impl(docref, type, format) do {\ argument
1171 php_verror(docref, "", type, format, args); \
1175 PHPAPI ZEND_COLD void php_error_docref(const char *docref, int type, const char *format, ...) in php_error_docref() argument
1177 php_error_docref_impl(docref, type, format); in php_error_docref()
1180 PHPAPI ZEND_COLD void php_error_docref_unchecked(const char *docref, int type, const char *format, … in php_error_docref_unchecked() argument
1182 php_error_docref_impl(docref, type, format); in php_error_docref_unchecked()
1188 PHPAPI ZEND_COLD void php_error_docref1(const char *docref, const char *param1, int type, const cha… in php_error_docref1() argument
1193 php_verror(docref, param1, type, format, args); in php_error_docref1()
1200 PHPAPI ZEND_COLD void php_error_docref2(const char *docref, const char *param1, const char *param2,… in php_error_docref2() argument
1207 php_verror(docref, params ? params : "...", type, format, args); in php_error_docref2()