Home
last modified time | relevance | path

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

/PHP-8.0/Zend/
H A Dzend_ini.c246 zend_string_init_interned(ini_entry->value, ini_entry->value_length, 1) : NULL; in zend_register_ini_entries()
285 …nd_alter_ini_entry_chars(zend_string *name, const char *value, size_t value_length, int modify_typ… in zend_alter_ini_entry_chars() argument
290 new_value = zend_string_init(value, value_length, !(stage & ZEND_INI_STAGE_IN_REQUEST)); in zend_alter_ini_entry_chars()
297 …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
302 new_value = zend_string_init(value, value_length, !(stage & ZEND_INI_STAGE_IN_REQUEST)); in zend_alter_ini_entry_chars_ex()
H A Dzend_ini.h40 uint32_t value_length; member
79 …nd_alter_ini_entry_chars(zend_string *name, const char *value, size_t value_length, int modify_typ…
80 …alter_ini_entry_chars_ex(zend_string *name, const char *value, size_t value_length, int modify_typ…
H A Dzend_API.h381 …end_class_entry *ce, const char *name, size_t name_length, const char *value, size_t value_length);
394 …zend_object *object, const char *name, size_t name_length, const char *value, size_t value_length);
404 …_class_entry *scope, const char *name, size_t name_length, const char *value, size_t value_length);
H A Dzend_API.c4128 …_entry *ce, const char *name, size_t name_length, const char *value, size_t value_length) /* {{{ */ in zend_declare_class_constant_stringl() argument
4132 ZVAL_NEW_STR(&constant, zend_string_init(value, value_length, ce->type & ZEND_INTERNAL_CLASS)); in zend_declare_class_constant_stringl()
/PHP-8.0/main/
H A Dmain.c423 static zend_uchar php_get_display_errors_mode(char *value, size_t value_length) in php_get_display_errors_mode() argument
431 if (value_length == 2 && !strcasecmp("on", value)) { in php_get_display_errors_mode()
433 } else if (value_length == 3 && !strcasecmp("yes", value)) { in php_get_display_errors_mode()
435 } else if (value_length == 4 && !strcasecmp("true", value)) { in php_get_display_errors_mode()
437 } else if (value_length == 6 && !strcasecmp(value, "stderr")) { in php_get_display_errors_mode()
439 } else if (value_length == 6 && !strcasecmp(value, "stdout")) { in php_get_display_errors_mode()
/PHP-8.0/ext/mbstring/
H A Dmbstring.c262 static zend_result php_mb_parse_encoding_list(const char *value, size_t value_length, in php_mb_parse_encoding_list() argument
266 if (value == NULL || value_length == 0) { in php_mb_parse_encoding_list()
277 if (value[0]=='"' && value[value_length-1]=='"' && value_length>2) { in php_mb_parse_encoding_list()
278 tmpstr = (char *)estrndup(value+1, value_length-2); in php_mb_parse_encoding_list()
279 value_length -= 2; in php_mb_parse_encoding_list()
281 tmpstr = (char *)estrndup(value, value_length); in php_mb_parse_encoding_list()
284 endp = tmpstr + value_length; in php_mb_parse_encoding_list()

Completed in 73 milliseconds