Home
last modified time | relevance | path

Searched refs:name_length (Results 1 – 18 of 18) sorted by relevance

/PHP-8.3/main/
H A Dphp_ini_builder.c31 …i_builder_unquoted(struct php_ini_builder *b, const char *name, size_t name_length, const char *va… in php_ini_builder_unquoted() argument
33 php_ini_builder_realloc(b, name_length + 1 + value_length + 1); in php_ini_builder_unquoted()
35 memcpy(b->value + b->length, name, name_length); in php_ini_builder_unquoted()
36 b->length += name_length; in php_ini_builder_unquoted()
46 PHPAPI void php_ini_builder_quoted(struct php_ini_builder *b, const char *name, size_t name_length,… in php_ini_builder_quoted() argument
48 php_ini_builder_realloc(b, name_length + 2 + value_length + 2); in php_ini_builder_quoted()
50 memcpy(b->value + b->length, name, name_length); in php_ini_builder_quoted()
51 b->length += name_length; in php_ini_builder_quoted()
H A Dphp_ini_builder.h81 …i_builder_unquoted(struct php_ini_builder *b, const char *name, size_t name_length, const char *va…
86 PHPAPI void php_ini_builder_quoted(struct php_ini_builder *b, const char *name, size_t name_length,…
H A Dphp_ini.h28 PHPAPI zval *cfg_get_entry(const char *name, size_t name_length);
H A Dphp_ini.c892 PHPAPI zval *cfg_get_entry(const char *name, size_t name_length) argument
894 return zend_hash_str_find(&configuration_hash, name, name_length);
/PHP-8.3/sapi/phpdbg/
H A Dphpdbg_utils.h54 size_t name_length; member
60 size_t name_length; member
64 PHPDBG_API const phpdbg_color_t *phpdbg_get_color(const char *name, size_t name_length);
66 PHPDBG_API void phpdbg_set_color_ex(int element, const char *name, size_t name_length);
82 int phpdbg_safe_class_lookup(const char *name, int name_length, zend_class_entry **ce);
H A Dphpdbg_utils.c232 if (name_length == color->name_length && in phpdbg_get_color()
233 memcmp(name, color->name, name_length) == SUCCESS) { in phpdbg_get_color()
234 phpdbg_debug("phpdbg_get_color(%s, %lu): %s", name, name_length, color->code); in phpdbg_get_color()
240 phpdbg_debug("phpdbg_get_color(%s, %lu): failed", name, name_length); in phpdbg_get_color()
252 const phpdbg_color_t *color = phpdbg_get_color(name, name_length); in phpdbg_set_color_ex()
268 if (len == element->name_length) { in phpdbg_get_element()
403 if (name == NULL || !name_length) { in phpdbg_safe_class_lookup()
407 lc_free = lc_name = emalloc(name_length + 1); in phpdbg_safe_class_lookup()
408 zend_str_tolower_copy(lc_name, name, name_length); in phpdbg_safe_class_lookup()
409 lc_length = name_length + 1; in phpdbg_safe_class_lookup()
[all …]
/PHP-8.3/ext/snmp/
H A Dsnmp.c84 php_snmp_add_property((a), (b)[i].name, (b)[i].name_length, \
401 rootlen = objid_query->vars[0].name_length; in php_snmp_internal()
481 snprint_objid(buf, sizeof(buf), vars->name, vars->name_length); in php_snmp_internal()
513 ….name_length == vars->name_length && snmp_oid_compare(objid_query->vars[count].name, objid_query->… in php_snmp_internal()
530 while(count < vars->name_length){ in php_snmp_internal()
549 …ompare(objid_query->vars[0].name, objid_query->vars[0].name_length, vars->name, vars->name_length)… in php_snmp_internal()
555 objid_query->vars[0].name_length = vars->name_length; in php_snmp_internal()
760 objid_query->vars[0].name_length = MAX_NAME_LEN; in php_snmp_parse_oid()
773 objid_query->vars[objid_query->offset].name_length = MAX_OID_LEN; in php_snmp_parse_oid()
1675 p.name_length = name_length; in php_snmp_add_property()
[all …]
H A Dphp_snmp.h72 size_t name_length; member
82 size_t name_length; member
/PHP-8.3/Zend/
H A Dzend_ini.h41 uint16_t name_length; member
86 ZEND_API zend_long zend_ini_long(const char *name, size_t name_length, int orig);
87 ZEND_API double zend_ini_double(const char *name, size_t name_length, int orig);
88 ZEND_API char *zend_ini_string(const char *name, size_t name_length, int orig);
89 ZEND_API char *zend_ini_string_ex(const char *name, size_t name_length, int orig, bool *exists);
90 ZEND_API zend_string *zend_ini_str(const char *name, size_t name_length, bool orig);
91 ZEND_API zend_string *zend_ini_str_ex(const char *name, size_t name_length, bool orig, bool *exists…
141 ZEND_API zend_result zend_ini_register_displayer(const char *name, uint32_t name_length, void (*dis…
H A Dzend_ini.c228 p->name = zend_string_init_interned(ini_entry->name, ini_entry->name_length, 1); in zend_register_ini_entries_ex()
433 ini_entry = zend_hash_str_find_ptr(registered_zend_ini_directives, name, name_length); in zend_ini_register_displayer()
447 ZEND_API zend_long zend_ini_long(const char *name, size_t name_length, int orig) /* {{{ */ in zend_ini_long() argument
451 ini_entry = zend_hash_str_find_ptr(EG(ini_directives), name, name_length); in zend_ini_long()
464 ZEND_API double zend_ini_double(const char *name, size_t name_length, int orig) /* {{{ */ in zend_ini_double() argument
468 ini_entry = zend_hash_str_find_ptr(EG(ini_directives), name, name_length); in zend_ini_double()
485 ini_entry = zend_hash_str_find_ptr(EG(ini_directives), name, name_length); in zend_ini_string_ex()
505 ZEND_API char *zend_ini_string(const char *name, size_t name_length, int orig) /* {{{ */ in zend_ini_string() argument
510 return_value = zend_ini_string_ex(name, name_length, orig, &exists); in zend_ini_string()
525 ini_entry = zend_hash_str_find_ptr(EG(ini_directives), name, name_length); in zend_ini_str_ex()
[all …]
H A Dzend_API.c4703 key = zend_string_init_interned(name, name_length, 1); in zend_declare_class_constant()
4705 key = zend_string_init(name, name_length, 0); in zend_declare_class_constant()
4782 property = zend_string_init(name, name_length, 0); in zend_update_property()
4795 zend_update_property(scope, object, name, name_length, &tmp); in zend_update_property_null()
4806 property = zend_string_init(name, name_length, 0); in zend_unset_property()
4819 zend_update_property(scope, object, name, name_length, &tmp); in zend_update_property_bool()
4828 zend_update_property(scope, object, name, name_length, &tmp); in zend_update_property_long()
4837 zend_update_property(scope, object, name, name_length, &tmp); in zend_update_property_double()
4908 zend_string *key = zend_string_init(name, name_length, 0); in zend_update_static_property()
4990 str = zend_string_init(name, name_length, 0); in zend_read_property()
[all …]
H A Dzend_API.h425 ZEND_API void zend_declare_property_null(zend_class_entry *ce, const char *name, size_t name_length
434 …nd_declare_class_constant(zend_class_entry *ce, const char *name, size_t name_length, zval *value);
435 … void zend_declare_class_constant_null(zend_class_entry *ce, const char *name, size_t name_length);
436 …are_class_constant_long(zend_class_entry *ce, const char *name, size_t name_length, zend_long valu…
437 …eclare_class_constant_bool(zend_class_entry *ce, const char *name, size_t name_length, bool value);
438 …re_class_constant_double(zend_class_entry *ce, const char *name, size_t name_length, double value);
492 …_property_null(zend_class_entry *scope, zend_object *object, const char *name, size_t name_length);
499 …unset_property(zend_class_entry *scope, zend_object *object, const char *name, size_t name_length);
502 …update_static_property(zend_class_entry *scope, const char *name, size_t name_length, zval *value);
503 …lt zend_update_static_property_null(zend_class_entry *scope, const char *name, size_t name_length);
[all …]
/PHP-8.3/sapi/fpm/fpm/
H A Dfpm_php.c24 static int fpm_php_zend_ini_alter_master(char *name, int name_length, char *new_value, int new_valu… in fpm_php_zend_ini_alter_master() argument
29 if ((ini_entry = zend_hash_str_find_ptr(EG(ini_directives), name, name_length)) == NULL) { in fpm_php_zend_ini_alter_master()
/PHP-8.3/ext/mysqlnd/
H A Dmysqlnd_result_meta.c159 new_fields[i].name_length = ZSTR_LEN(new_fields[i].sname); in MYSQLND_METHOD()
H A Dmysqlnd_wireprotocol.c1259 if (EXPECTED(meta->name_length != 0)) { in php_mysqlnd_rset_field_read()
1260 meta->sname = zend_string_init_interned(meta->name, meta->name_length, 0); in php_mysqlnd_rset_field_read()
H A Dmysqlnd_structs.h89 unsigned int name_length; member
/PHP-8.3/ext/standard/
H A Dinfo.c167 static ZEND_COLD void php_print_gpcse_array(char *name, uint32_t name_length) in php_print_gpcse_array() argument
174 key = zend_string_init(name, name_length, 0); in php_print_gpcse_array()
/PHP-8.3/ext/pdo_mysql/
H A Dmysql_statement.c657 cols[i].name = zend_string_init(S->fields[i].name, S->fields[i].name_length, 0); in pdo_mysql_stmt_describe()

Completed in 105 milliseconds