Lines Matching refs:key_len
1923 ZEND_API void add_assoc_long_ex(zval *arg, const char *key, size_t key_len, zend_long n) /* {{{ */ in add_assoc_long_ex() argument
1928 zend_symtable_str_update(Z_ARRVAL_P(arg), key, key_len, &tmp); in add_assoc_long_ex()
1932 ZEND_API void add_assoc_null_ex(zval *arg, const char *key, size_t key_len) /* {{{ */ in add_assoc_null_ex() argument
1937 zend_symtable_str_update(Z_ARRVAL_P(arg), key, key_len, &tmp); in add_assoc_null_ex()
1941 ZEND_API void add_assoc_bool_ex(zval *arg, const char *key, size_t key_len, bool b) /* {{{ */ in add_assoc_bool_ex() argument
1946 zend_symtable_str_update(Z_ARRVAL_P(arg), key, key_len, &tmp); in add_assoc_bool_ex()
1950 ZEND_API void add_assoc_resource_ex(zval *arg, const char *key, size_t key_len, zend_resource *r) /… in add_assoc_resource_ex() argument
1955 zend_symtable_str_update(Z_ARRVAL_P(arg), key, key_len, &tmp); in add_assoc_resource_ex()
1959 ZEND_API void add_assoc_double_ex(zval *arg, const char *key, size_t key_len, double d) /* {{{ */ in add_assoc_double_ex() argument
1964 zend_symtable_str_update(Z_ARRVAL_P(arg), key, key_len, &tmp); in add_assoc_double_ex()
1968 ZEND_API void add_assoc_str_ex(zval *arg, const char *key, size_t key_len, zend_string *str) /* {{{… in add_assoc_str_ex() argument
1973 zend_symtable_str_update(Z_ARRVAL_P(arg), key, key_len, &tmp); in add_assoc_str_ex()
1977 ZEND_API void add_assoc_string_ex(zval *arg, const char *key, size_t key_len, const char *str) /* {… in add_assoc_string_ex() argument
1982 zend_symtable_str_update(Z_ARRVAL_P(arg), key, key_len, &tmp); in add_assoc_string_ex()
1986 ZEND_API void add_assoc_stringl_ex(zval *arg, const char *key, size_t key_len, const char *str, siz… in add_assoc_stringl_ex() argument
1991 zend_symtable_str_update(Z_ARRVAL_P(arg), key, key_len, &tmp); in add_assoc_stringl_ex()
1995 ZEND_API void add_assoc_array_ex(zval *arg, const char *key, size_t key_len, zend_array *arr) /* {{… in add_assoc_array_ex() argument
2000 zend_symtable_str_update(Z_ARRVAL_P(arg), key, key_len, &tmp); in add_assoc_array_ex()
2004 ZEND_API void add_assoc_object_ex(zval *arg, const char *key, size_t key_len, zend_object *obj) /* … in add_assoc_object_ex() argument
2009 zend_symtable_str_update(Z_ARRVAL_P(arg), key, key_len, &tmp); in add_assoc_object_ex()
2013 ZEND_API void add_assoc_reference_ex(zval *arg, const char *key, size_t key_len, zend_reference *re… in add_assoc_reference_ex() argument
2018 zend_symtable_str_update(Z_ARRVAL_P(arg), key, key_len, &tmp); in add_assoc_reference_ex()
2022 ZEND_API void add_assoc_zval_ex(zval *arg, const char *key, size_t key_len, zval *value) /* {{{ */ in add_assoc_zval_ex() argument
2024 zend_symtable_str_update(Z_ARRVAL_P(arg), key, key_len, value); in add_assoc_zval_ex()
2267 ZEND_API void add_property_long_ex(zval *arg, const char *key, size_t key_len, zend_long n) /* {{{ … in add_property_long_ex() argument
2272 add_property_zval_ex(arg, key, key_len, &tmp); in add_property_long_ex()
2276 ZEND_API void add_property_bool_ex(zval *arg, const char *key, size_t key_len, zend_long b) /* {{{ … in add_property_bool_ex() argument
2281 add_property_zval_ex(arg, key, key_len, &tmp); in add_property_bool_ex()
2285 ZEND_API void add_property_null_ex(zval *arg, const char *key, size_t key_len) /* {{{ */ in add_property_null_ex() argument
2290 add_property_zval_ex(arg, key, key_len, &tmp); in add_property_null_ex()
2294 ZEND_API void add_property_resource_ex(zval *arg, const char *key, size_t key_len, zend_resource *r… in add_property_resource_ex() argument
2299 add_property_zval_ex(arg, key, key_len, &tmp); in add_property_resource_ex()
2304 ZEND_API void add_property_double_ex(zval *arg, const char *key, size_t key_len, double d) /* {{{ */ in add_property_double_ex() argument
2309 add_property_zval_ex(arg, key, key_len, &tmp); in add_property_double_ex()
2313 ZEND_API void add_property_str_ex(zval *arg, const char *key, size_t key_len, zend_string *str) /* … in add_property_str_ex() argument
2318 add_property_zval_ex(arg, key, key_len, &tmp); in add_property_str_ex()
2323 ZEND_API void add_property_string_ex(zval *arg, const char *key, size_t key_len, const char *str) /… in add_property_string_ex() argument
2328 add_property_zval_ex(arg, key, key_len, &tmp); in add_property_string_ex()
2333 ZEND_API void add_property_stringl_ex(zval *arg, const char *key, size_t key_len, const char *str, … in add_property_stringl_ex() argument
2338 add_property_zval_ex(arg, key, key_len, &tmp); in add_property_stringl_ex()
2343 ZEND_API void add_property_array_ex(zval *arg, const char *key, size_t key_len, zend_array *arr) /*… in add_property_array_ex() argument
2348 add_property_zval_ex(arg, key, key_len, &tmp); in add_property_array_ex()
2353 ZEND_API void add_property_object_ex(zval *arg, const char *key, size_t key_len, zend_object *obj) … in add_property_object_ex() argument
2358 add_property_zval_ex(arg, key, key_len, &tmp); in add_property_object_ex()
2363 ZEND_API void add_property_reference_ex(zval *arg, const char *key, size_t key_len, zend_reference … in add_property_reference_ex() argument
2368 add_property_zval_ex(arg, key, key_len, &tmp); in add_property_reference_ex()
2373 ZEND_API void add_property_zval_ex(zval *arg, const char *key, size_t key_len, zval *value) /* {{{ … in add_property_zval_ex() argument
2377 str = zend_string_init(key, key_len, 0); in add_property_zval_ex()