Searched defs:error_type (Results 1 - 6 of 6) sorted by relevance
| /PHP_5_5/ext/libxml/ |
| H A D | libxml.c | 513 static void php_libxml_internal_error_handler(int error_type, void *ctx, const char **msg, va_list ap) argument 537 switch (error_type) {
|
| /PHP_5_5/Zend/ |
| H A D | zend_execute.c | 578 ZEND_API int zend_verify_arg_error(int error_type, const zend_function *zf, zend_uint arg_num, const char *need_msg, const char *need_kind, const char *given_msg, const char *given_kind TSRMLS_DC) argument 594 zend_error(error_type, "Argument %d passed to %s%s%s() must %s%s, %s%s given, called in %s on line %d and defined", arg_num, fclass, fsep, fname, need_msg, need_kind, given_msg, given_kind, ptr->op_array->filename, ptr->opline->lineno); 596 zend_error(error_type, "Argument %d passed to %s%s%s() must %s%s, %s%s given", arg_num, fclass, fsep, fname, need_msg, need_kind, given_msg, given_kind);
|
| H A D | zend_builtin_functions.c | 200 ZEND_ARG_INFO(0, error_type) 1499 /* {{{ proto void trigger_error(string message [, int error_type]) 1503 long error_type = E_USER_NOTICE; local 1507 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|l", &message, &message_len, &error_type) == FAILURE) { 1511 switch (error_type) { 1523 zend_error((int)error_type, "%s", message); 1535 long error_type = E_ALL; local 1537 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "z|l", &error_handler, &error_type) == FAILURE) { 1565 EG(user_error_handler_error_reporting) = (int)error_type;
|
| H A D | zend_API.c | 1965 ZEND_API void zend_check_magic_method_implementation(const zend_class_entry *ce, const zend_function *fptr, int error_type TSRMLS_DC) /* {{{ */ 1977 zend_error(error_type, "Destructor %s::%s() cannot take arguments", ce->name, ZEND_DESTRUCTOR_FUNC_NAME); 1979 zend_error(error_type, "Method %s::%s() cannot accept any arguments", ce->name, ZEND_CLONE_FUNC_NAME); 1982 zend_error(error_type, "Method %s::%s() must take exactly 1 argument", ce->name, ZEND_GET_FUNC_NAME); 1984 zend_error(error_type, "Method %s::%s() cannot take arguments by reference", ce->name, ZEND_GET_FUNC_NAME); 1988 zend_error(error_type, "Method %s::%s() must take exactly 2 arguments", ce->name, ZEND_SET_FUNC_NAME); 1990 zend_error(error_type, "Method %s::%s() cannot take arguments by reference", ce->name, ZEND_SET_FUNC_NAME); 1994 zend_error(error_type, "Method %s::%s() must take exactly 1 argument", ce->name, ZEND_UNSET_FUNC_NAME); 1996 zend_error(error_type, "Method %s::%s() cannot take arguments by reference", ce->name, ZEND_UNSET_FUNC_NAME); 2000 zend_error(error_type, "Metho 2034 int error_type; local [all...] |
| /PHP_5_5/ext/standard/ |
| H A D | dl.c | 108 int error_type; local 118 error_type = E_WARNING; 120 error_type = E_CORE_WARNING; 149 php_error_docref(NULL TSRMLS_CC, error_type, "Unable to load dynamic library '%s' - %s", libpath, err); 152 php_error_docref(NULL TSRMLS_CC, error_type, "Unable to load dynamic library '%s' - %s", libpath, "Unknown reason"); 155 php_error_docref(NULL TSRMLS_CC, error_type, "Unable to load dynamic library '%s' - %s", libpath, GET_DL_ERROR()); 176 php_error_docref(NULL TSRMLS_CC, error_type, "Invalid library (appears to be a Zend Extension, try loading using zend_extension=%s from php.ini)", filename); 180 php_error_docref(NULL TSRMLS_CC, error_type, "Invalid library (maybe not a PHP library) '%s'", filename); 219 php_error_docref(NULL TSRMLS_CC, error_type, 229 php_error_docref(NULL TSRMLS_CC, error_type, [all...] |
| /PHP_5_5/main/ |
| H A D | rfc1867.c | 1212 zval file_size, error_type; local 1214 error_type.value.lval = cancel_upload; 1215 error_type.type = IS_LONG; 1231 register_http_post_files_variable_ex(lbuf, &error_type, http_post_files, 0 TSRMLS_CC);
|
Completed in 20 milliseconds