Home
last modified time | relevance | path

Searched refs:zend_value_error (Results 1 – 25 of 53) sorted by relevance

123

/php-src/ext/sodium/
H A Dsodium_pwhash.c43 zend_value_error("Memory cost is outside of allowed memory range"); in get_options()
51 zend_value_error("Time cost is outside of allowed time range"); in get_options()
56 zend_value_error("A thread value other than 1 is not supported by this implementation"); in get_options()
67 zend_value_error("Password is too long"); in php_sodium_argon2_hash()
77 zend_value_error("Unexpected failure hashing password"); in php_sodium_argon2_hash()
/php-src/ext/standard/
H A Dmail.c126 zend_value_error("Header name \"%s\" contains invalid characters", ZSTR_VAL(key)); in php_mail_build_headers_elem()
135zend_value_error("Header \"%s\" contains LF character that is not allowed in the header", ZSTR_VAL… in php_mail_build_headers_elem()
138zend_value_error("Header \"%s\" contains CR character that is not allowed in the header", ZSTR_VAL… in php_mail_build_headers_elem()
141zend_value_error("Header \"%s\" contains CRLF characters that are used as a line separator and are… in php_mail_build_headers_elem()
144zend_value_error("Header \"%s\" contains NULL character that is not allowed in the header", ZSTR_V… in php_mail_build_headers_elem()
148zend_value_error("Header \"%s\" has invalid format, or contains invalid characters", ZSTR_VAL(key)… in php_mail_build_headers_elem()
208 zend_value_error("The additional headers cannot contain the \"To\" header"); in php_mail_build_headers()
220 zend_value_error("The additional headers cannot contain the \"Subject\" header"); in php_mail_build_headers()
H A Dformatted_print.c385 zend_value_error("Argument number specifier must be greater than zero and less than %d", INT_MAX); in php_sprintf_get_argnum()
494 zend_value_error("Missing padding character"); in php_formatted_print()
526 zend_value_error("Width must be an integer"); in php_formatted_print()
530 zend_value_error("Width must be greater than zero and less than %d", INT_MAX); in php_formatted_print()
538 zend_value_error("Width must be greater than zero and less than %d", INT_MAX); in php_formatted_print()
570 zend_value_error("Precision must be an integer"); in php_formatted_print()
574 zend_value_error("Precision must be between -1 and %d", INT_MAX); in php_formatted_print()
582 zend_value_error("Precision must be greater than zero and less than %d", INT_MAX); in php_formatted_print()
612 zend_value_error("Precision -1 is only supported for %%g, %%G, %%h and %%H"); in php_formatted_print()
701 zend_value_error("Missing format specifier at end of string"); in php_formatted_print()
[all …]
H A Dpassword.c82 zend_value_error("Length is too large to safely generate"); in php_password_make_salt()
88 zend_value_error("Unable to generate salt"); in php_password_make_salt()
95 zend_value_error("Generated salt too short"); in php_password_make_salt()
185 zend_value_error("Bcrypt password must not contain null character"); in php_password_bcrypt_hash()
194 zend_value_error("Invalid bcrypt cost parameter specified: " ZEND_LONG_FMT, cost); in php_password_bcrypt_hash()
317 zend_value_error("Memory cost is outside of allowed memory range"); in php_password_argon2_hash()
326 zend_value_error("Time cost is outside of allowed time range"); in php_password_argon2_hash()
335 zend_value_error("Invalid number of threads"); in php_password_argon2_hash()
375 zend_value_error("%s", argon2_error_message(status)); in php_password_argon2_hash()
H A Dhead.c104 zend_value_error("%s(): \"path\" option cannot contain " ILLEGAL_COOKIE_CHARACTER, in php_setcookie()
109 zend_value_error("%s(): \"domain\" option cannot contain " ILLEGAL_COOKIE_CHARACTER, in php_setcookie()
115 zend_value_error("%s(): \"expires\" option cannot have a year greater than 9999", in php_setcookie()
202 zend_value_error("%s(): option array cannot have numeric keys", get_active_function_name()); in php_head_parse_cookie_options_array()
218 zend_value_error("%s(): option \"%s\" is invalid", get_active_function_name(), ZSTR_VAL(key)); in php_head_parse_cookie_options_array()
H A Dscanf.c392 zend_value_error("%s", "cannot mix \"%\" and \"%n$\" conversion specifiers"); in ValidateFormat()
474 zend_value_error("Unmatched [ in format string"); in ValidateFormat()
478 zend_value_error("Bad scan conversion character \"%c\"", *ch); in ValidateFormat()
528 zend_value_error("%s", "Variable is assigned by multiple \"%n$\" conversion specifiers"); in ValidateFormat()
535 zend_value_error("Variable is not assigned by any conversion specifiers"); in ValidateFormat()
547 zend_value_error("%s", "\"%n$\" argument index out of range"); in ValidateFormat()
549 zend_value_error("Different numbers of variable names and field specifiers"); in ValidateFormat()
H A Dhttp.c257 zend_value_error("Invalid %s value in $options argument", zend_zval_value_name(option)); in cache_request_parse_body_option()
275 zend_value_error("Invalid integer key in $options argument"); in cache_request_parse_body_options()
279 zend_value_error("Invalid empty string key in $options argument"); in cache_request_parse_body_options()
308 zend_value_error("Invalid key \"%s\" in $options argument", ZSTR_VAL(key)); in cache_request_parse_body_options()
H A Dexec.c296 zend_value_error("Command exceeds the allowed length of %zu bytes", cmd_max_len); in php_escape_shell_cmd()
372 zend_value_error("Escaped command exceeds the allowed length of %zu bytes", cmd_max_len); in php_escape_shell_cmd()
403 zend_value_error("Argument exceeds the allowed length of %zu bytes", cmd_max_len); in php_escape_shell_arg()
462 zend_value_error("Escaped argument exceeds the allowed length of %zu bytes", cmd_max_len); in php_escape_shell_arg()
H A Dpack.c48 zend_value_error("Type %c: integer overflow in format string", code); \
297 zend_value_error("Type %c: not enough arguments", code); in PHP_FUNCTION()
328 zend_value_error("64-bit format codes are not available for 32-bit versions of PHP"); in PHP_FUNCTION()
361 zend_value_error("Type %c: too few arguments", code); in PHP_FUNCTION()
369 zend_value_error("Type %c: unknown format code", code); in PHP_FUNCTION()
852 zend_value_error("64-bit format codes are not available for 32-bit versions of PHP"); in PHP_FUNCTION()
871 zend_value_error("Invalid format type %c", type); in PHP_FUNCTION()
H A Dproc_open.c513 zend_value_error("First element must contain a non-empty program name"); in get_valid_arg_string()
519 zend_value_error("Command array element %d contains a null byte", elem_num); in get_valid_arg_string()
763 zend_value_error("Missing %s", param_name); in get_string_parameter()
1006 zend_value_error("Missing redirection target"); in set_proc_descriptor_from_array()
1010zend_value_error("Redirection target must be of type int, %s given", zend_zval_value_name(ztarget)… in set_proc_descriptor_from_array()
H A Dtype.c128 zend_value_error("Cannot convert to resource type"); in PHP_FUNCTION()
/php-src/ext/calendar/
H A Dcal_unix.c66zend_value_error("jday must be between 2440588 and " ZEND_LONG_FMT, ZEND_LONG_MAX / SECS_PER_DAY +… in PHP_FUNCTION()
H A Dcalendar.c202 zend_value_error("Invalid date"); in PHP_FUNCTION()
468 zend_value_error("Year out of range (0-9999)"); in PHP_FUNCTION()
/php-src/ext/snmp/
H A Dsnmp.c660 zend_value_error("Type must be a single character"); in php_snmp_parse_oid()
671 zend_value_error("Array of object IDs cannot be empty"); in php_snmp_parse_oid()
704 zend_value_error("Type must be a single character"); in php_snmp_parse_oid()
908zend_value_error("Security level must be one of \"noAuthNoPriv\", \"authNoPriv\", or \"authPriv\""… in netsnmp_session_set_sec_level()
961 zend_value_error("%s", err.c); in netsnmp_session_set_auth_protocol()
989 zend_value_error("Security protocol must be one of \"DES\", \"AES128\", or \"AES\""); in netsnmp_session_set_sec_protocol()
991 zend_value_error("Security protocol must be one of \"AES128\", or \"AES\""); in netsnmp_session_set_sec_protocol()
995 zend_value_error("Security protocol must be \"DES\""); in netsnmp_session_set_sec_protocol()
997 zend_value_error("No security protocol supported"); in netsnmp_session_set_sec_protocol()
1888 zend_value_error("SNMP::$max_oids must be greater than 0 or null");
[all …]
/php-src/ext/filter/
H A Dlogical_filters.c374zend_value_error("%s(): \"decimal\" option must be one character long", get_active_function_name()… in php_filter_float()
385 zend_value_error("%s(): \"thousand\" option cannot be empty", get_active_function_name()); in php_filter_float()
486 zend_value_error("%s(): \"regexp\" option is missing", get_active_function_name()); in php_filter_validate_regexp()
995zend_value_error("%s(): \"separator\" option must be one character long", get_active_function_name… in php_filter_validate_mac()
/php-src/ext/intl/resourcebundle/
H A Dresourcebundle_class.c191 zend_value_error("Offset cannot be empty"); in resource_bundle_array_fetch()
202 zend_value_error("Index must be between %d and %d", INT32_MIN, INT32_MAX); in resource_bundle_array_fetch()
/php-src/ext/pdo/
H A Dpdo_dbh.c579 zend_value_error("PDO::ATTR_STATEMENT_CLASS value must be an array with the format " in PHP_METHOD()
797 zend_value_error("Error mode must be one of the PDO::ERRMODE_* constants"); in pdo_dbh_attribute_set()
813 zend_value_error("Case folding mode must be one of the PDO::CASE_* constants"); in pdo_dbh_attribute_set()
831zend_value_error("PDO::FETCH_INTO and PDO::FETCH_CLASS cannot be set as the default fetch mode"); in pdo_dbh_attribute_set()
842 zend_value_error("Fetch mode must be a bitmask of PDO::FETCH_* constants"); in pdo_dbh_attribute_set()
877 zend_value_error("PDO::ATTR_STATEMENT_CLASS value must be an array with the format " in pdo_dbh_attribute_set()
H A Dpdo_stmt.c490 zend_value_error("Column index must be greater than or equal to 0"); in fetch_value()
496 zend_value_error("Invalid column index"); in fetch_value()
780 zend_value_error("Column index must be greater than or equal to 0"); in do_fetch()
785 zend_value_error("Invalid column index"); in do_fetch()
1020 zend_value_error("Fetch mode must be a bitmask of PDO::FETCH_* constants"); in do_fetch()
1111 zend_value_error("Can only use PDO::FETCH_FUNC in PDOStatement::fetchAll()"); in pdo_stmt_verify_mode()
/php-src/ext/zlib/
H A Dzlib.c881 zend_value_error("zlib window size (logarithm) (" ZEND_LONG_FMT ") must be within 8..15", window); in PHP_FUNCTION()
895zend_value_error("Encoding mode must be ZLIB_ENCODING_RAW, ZLIB_ENCODING_GZIP or ZLIB_ENCODING_DEF… in PHP_FUNCTION()
1099 zend_value_error("deflate_init(): \"level\" option must be between -1 and 9"); in PHP_FUNCTION()
1107 zend_value_error("deflate_init(): \"memory\" option must be between 1 and 9"); in PHP_FUNCTION()
1115 zend_value_error("deflate_init(): \"window\" option must be between 8 and 15"); in PHP_FUNCTION()
1130zend_value_error("deflate_init(): \"strategy\" option must be one of ZLIB_FILTERED, ZLIB_HUFFMAN_O… in PHP_FUNCTION()
/php-src/ext/pgsql/
H A Dpgsql.c2418 zend_value_error("Invalid OID value passed"); in PHP_FUNCTION()
2425 zend_value_error("Invalid OID value passed"); in PHP_FUNCTION()
2465 zend_value_error("Invalid OID value passed"); in PHP_FUNCTION()
2474 zend_value_error("Invalid OID value passed"); in PHP_FUNCTION()
2484 zend_value_error("Invalid OID value passed"); in PHP_FUNCTION()
2493 zend_value_error("Invalid OID value passed"); in PHP_FUNCTION()
2534 zend_value_error("Invalid OID value passed"); in PHP_FUNCTION()
2543 zend_value_error("Invalid OID value passed"); in PHP_FUNCTION()
2554 zend_value_error("Invalid OID value passed"); in PHP_FUNCTION()
2563 zend_value_error("Invalid OID value passed"); in PHP_FUNCTION()
[all …]
/php-src/ext/ldap/
H A Dldap.c395 zend_value_error("%s(): Control must have an \"oid\" key", get_active_function_name()); in _php_ldap_control_from_array()
450 zend_value_error("%s(): Control must have a \"filter\" key", get_active_function_name()); in _php_ldap_control_from_array()
473 zend_value_error("%s(): Control must have a \"filter\" key", get_active_function_name()); in _php_ldap_control_from_array()
497 zend_value_error("%s(): Control must have an \"attrs\" key", get_active_function_name()); in _php_ldap_control_from_array()
565 zend_value_error("%s(): Sort key list must have an \"attr\" key", get_active_function_name()); in _php_ldap_control_from_array()
612zend_value_error("%s(): Array value for VLV control must have a \"before\" key", get_active_functi… in _php_ldap_control_from_array()
620zend_value_error("%s(): Array value for VLV control must have an \"after\" key", get_active_functi… in _php_ldap_control_from_array()
641zend_value_error("%s(): Array value for VLV control must have a \"count\" key", get_active_functio… in _php_ldap_control_from_array()
646zend_value_error("%s(): Array value for VLV control must have either an \"attrvalue\" or an \"offs… in _php_ldap_control_from_array()
2699zend_value_error("%s(): Option \"" LDAP_MODIFY_BATCH_VALUES "\" cannot be empty", get_active_funct… in PHP_FUNCTION()
[all …]
/php-src/ext/sockets/
H A Dmulticast.c90 zend_value_error("Index must be between 0 and %u", UINT_MAX); in php_get_if_index_from_zval()
127 zend_value_error("No key \"%s\" passed in optval", key); in php_get_address_from_array()
494 zend_value_error("Option %s is inapplicable to this socket type", in _php_mcast_join_leave()
/php-src/ext/enchant/
H A Denchant.c256 zend_value_error("Invalid or uninitialized EnchantBroker object"); \
263 zend_value_error("Invalid or uninitialized EnchantDictionary object"); \
/php-src/ext/xsl/
H A Dphp_xsl.c162zend_value_error("%s::$%s must be greater than or equal to 0", ZSTR_VAL(object->ce->name), ZSTR_VA… in xsl_objects_write_property_with_validation()
/php-src/Zend/
H A Dzend_enum.c319zend_value_error(ZEND_LONG_FMT " is not a valid backing value for enum %s", long_key, ZSTR_VAL(ce-… in zend_enum_get_case_by_value()
322zend_value_error("\"%s\" is not a valid backing value for enum %s", ZSTR_VAL(string_key), ZSTR_VAL… in zend_enum_get_case_by_value()

Completed in 98 milliseconds

123