Home
last modified time | relevance | path

Searched refs:value_length (Results 1 – 6 of 6) sorted by relevance

/PHP-7.4/Zend/
H A Dzend_ini.h40 uint32_t value_length; member
79 ZEND_API int zend_alter_ini_entry_chars(zend_string *name, const char *value, size_t value_length, …
80 …alter_ini_entry_chars_ex(zend_string *name, const char *value, size_t value_length, int modify_typ…
H A Dzend_ini.c257 zend_string_init_interned(ini_entry->value, ini_entry->value_length, 1) : NULL; in zend_register_ini_entries()
296 ZEND_API int zend_alter_ini_entry_chars(zend_string *name, const char *value, size_t value_length, … in zend_alter_ini_entry_chars() argument
301 new_value = zend_string_init(value, value_length, !(stage & ZEND_INI_STAGE_IN_REQUEST)); in zend_alter_ini_entry_chars()
308 …alter_ini_entry_chars_ex(zend_string *name, const char *value, size_t value_length, int modify_typ… in zend_alter_ini_entry_chars_ex() argument
313 new_value = zend_string_init(value, value_length, !(stage & ZEND_INI_STAGE_IN_REQUEST)); in zend_alter_ini_entry_chars_ex()
H A Dzend_API.h332 …end_class_entry *ce, const char *name, size_t name_length, const char *value, size_t value_length);
345 …scope, zval *object, const char *name, size_t name_length, const char *value, size_t value_length);
355 …_class_entry *scope, const char *name, size_t name_length, const char *value, size_t value_length);
H A Dzend_API.c4098 …_entry *ce, const char *name, size_t name_length, const char *value, size_t value_length) /* {{{ */ in zend_declare_class_constant_stringl() argument
4102 ZVAL_NEW_STR(&constant, zend_string_init(value, value_length, ce->type & ZEND_INTERNAL_CLASS)); in zend_declare_class_constant_stringl()
/PHP-7.4/main/
H A Dmain.c497 static int php_get_display_errors_mode(char *value, size_t value_length) in php_get_display_errors_mode() argument
505 if (value_length == 2 && !strcasecmp("on", value)) { in php_get_display_errors_mode()
507 } else if (value_length == 3 && !strcasecmp("yes", value)) { in php_get_display_errors_mode()
509 } else if (value_length == 4 && !strcasecmp("true", value)) { in php_get_display_errors_mode()
511 } else if (value_length == 6 && !strcasecmp(value, "stderr")) { in php_get_display_errors_mode()
513 } else if (value_length == 6 && !strcasecmp(value, "stdout")) { in php_get_display_errors_mode()
/PHP-7.4/ext/mbstring/
H A Dmbstring.c709 php_mb_parse_encoding_list(const char *value, size_t value_length, const mbfl_encoding ***return_li… in php_mb_parse_encoding_list() argument
717 if (value == NULL || value_length == 0) { in php_mb_parse_encoding_list()
727 if (value[0]=='"' && value[value_length-1]=='"' && value_length>2) { in php_mb_parse_encoding_list()
728 tmpstr = (char *)estrndup(value+1, value_length-2); in php_mb_parse_encoding_list()
729 value_length -= 2; in php_mb_parse_encoding_list()
732 tmpstr = (char *)estrndup(value, value_length); in php_mb_parse_encoding_list()
734 endp = tmpstr + value_length; in php_mb_parse_encoding_list()

Completed in 93 milliseconds