Home
last modified time | relevance | path

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

/PHP-7.3/Zend/
H A Dzend_ini.c264 zend_string_init_interned(ini_entry->value, ini_entry->value_length, 1) : NULL; in zend_register_ini_entries()
309 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
314 new_value = zend_string_init(value, value_length, !(stage & ZEND_INI_STAGE_IN_REQUEST)); in zend_alter_ini_entry_chars()
321 …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
326 new_value = zend_string_init(value, value_length, !(stage & ZEND_INI_STAGE_IN_REQUEST)); in zend_alter_ini_entry_chars_ex()
545 display_string_length = ini_entry->value_length; in zend_ini_displayer_cb()
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_API.h330 …end_class_entry *ce, const char *name, size_t name_length, const char *value, size_t value_length);
343 …scope, zval *object, const char *name, size_t name_length, const char *value, size_t value_length);
353 …_class_entry *scope, const char *name, size_t name_length, const char *value, size_t value_length);
H A Dzend_API.c3947 …_entry *ce, const char *name, size_t name_length, const char *value, size_t value_length) /* {{{ */ in zend_declare_class_constant_stringl() argument
3951 ZVAL_NEW_STR(&constant, zend_string_init(value, value_length, ce->type & ZEND_INTERNAL_CLASS)); in zend_declare_class_constant_stringl()
/PHP-7.3/main/
H A Dmain.c500 static int php_get_display_errors_mode(char *value, size_t value_length) in php_get_display_errors_mode() argument
508 if (value_length == 2 && !strcasecmp("on", value)) { in php_get_display_errors_mode()
510 } else if (value_length == 3 && !strcasecmp("yes", value)) { in php_get_display_errors_mode()
512 } else if (value_length == 4 && !strcasecmp("true", value)) { in php_get_display_errors_mode()
514 } else if (value_length == 6 && !strcasecmp(value, "stderr")) { in php_get_display_errors_mode()
516 } else if (value_length == 6 && !strcasecmp(value, "stdout")) { in php_get_display_errors_mode()
/PHP-7.3/ext/mbstring/
H A Dmbstring.c729 php_mb_parse_encoding_list(const char *value, size_t value_length, const mbfl_encoding ***return_li… in php_mb_parse_encoding_list() argument
737 if (value == NULL || value_length == 0) { in php_mb_parse_encoding_list()
747 if (value[0]=='"' && value[value_length-1]=='"' && value_length>2) { in php_mb_parse_encoding_list()
748 tmpstr = (char *)estrndup(value+1, value_length-2); in php_mb_parse_encoding_list()
749 value_length -= 2; in php_mb_parse_encoding_list()
752 tmpstr = (char *)estrndup(value, value_length); in php_mb_parse_encoding_list()
754 endp = tmpstr + value_length; in php_mb_parse_encoding_list()

Completed in 64 milliseconds