Lines Matching refs:key_len

1692 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
1697 zend_symtable_str_update(Z_ARRVAL_P(arg), key, key_len, &tmp); in add_assoc_long_ex()
1701 ZEND_API void add_assoc_null_ex(zval *arg, const char *key, size_t key_len) /* {{{ */ in add_assoc_null_ex() argument
1706 zend_symtable_str_update(Z_ARRVAL_P(arg), key, key_len, &tmp); in add_assoc_null_ex()
1710 ZEND_API void add_assoc_bool_ex(zval *arg, const char *key, size_t key_len, bool b) /* {{{ */ in add_assoc_bool_ex() argument
1715 zend_symtable_str_update(Z_ARRVAL_P(arg), key, key_len, &tmp); in add_assoc_bool_ex()
1719 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
1724 zend_symtable_str_update(Z_ARRVAL_P(arg), key, key_len, &tmp); in add_assoc_resource_ex()
1728 ZEND_API void add_assoc_double_ex(zval *arg, const char *key, size_t key_len, double d) /* {{{ */ in add_assoc_double_ex() argument
1733 zend_symtable_str_update(Z_ARRVAL_P(arg), key, key_len, &tmp); in add_assoc_double_ex()
1737 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
1742 zend_symtable_str_update(Z_ARRVAL_P(arg), key, key_len, &tmp); in add_assoc_str_ex()
1746 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
1751 zend_symtable_str_update(Z_ARRVAL_P(arg), key, key_len, &tmp); in add_assoc_string_ex()
1755 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
1760 zend_symtable_str_update(Z_ARRVAL_P(arg), key, key_len, &tmp); in add_assoc_stringl_ex()
1764 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
1769 zend_symtable_str_update(Z_ARRVAL_P(arg), key, key_len, &tmp); in add_assoc_array_ex()
1773 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
1778 zend_symtable_str_update(Z_ARRVAL_P(arg), key, key_len, &tmp); in add_assoc_object_ex()
1782 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
1787 zend_symtable_str_update(Z_ARRVAL_P(arg), key, key_len, &tmp); in add_assoc_reference_ex()
1791 ZEND_API void add_assoc_zval_ex(zval *arg, const char *key, size_t key_len, zval *value) /* {{{ */ in add_assoc_zval_ex() argument
1793 zend_symtable_str_update(Z_ARRVAL_P(arg), key, key_len, value); in add_assoc_zval_ex()
2036 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
2041 add_property_zval_ex(arg, key, key_len, &tmp); in add_property_long_ex()
2045 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
2050 add_property_zval_ex(arg, key, key_len, &tmp); in add_property_bool_ex()
2054 ZEND_API void add_property_null_ex(zval *arg, const char *key, size_t key_len) /* {{{ */ in add_property_null_ex() argument
2059 add_property_zval_ex(arg, key, key_len, &tmp); in add_property_null_ex()
2063 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
2068 add_property_zval_ex(arg, key, key_len, &tmp); in add_property_resource_ex()
2073 ZEND_API void add_property_double_ex(zval *arg, const char *key, size_t key_len, double d) /* {{{ */ in add_property_double_ex() argument
2078 add_property_zval_ex(arg, key, key_len, &tmp); in add_property_double_ex()
2082 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
2087 add_property_zval_ex(arg, key, key_len, &tmp); in add_property_str_ex()
2092 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
2097 add_property_zval_ex(arg, key, key_len, &tmp); in add_property_string_ex()
2102 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
2107 add_property_zval_ex(arg, key, key_len, &tmp); in add_property_stringl_ex()
2112 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
2117 add_property_zval_ex(arg, key, key_len, &tmp); in add_property_array_ex()
2122 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
2127 add_property_zval_ex(arg, key, key_len, &tmp); in add_property_object_ex()
2132 ZEND_API void add_property_reference_ex(zval *arg, const char *key, size_t key_len, zend_reference … in add_property_reference_ex() argument
2137 add_property_zval_ex(arg, key, key_len, &tmp); in add_property_reference_ex()
2142 ZEND_API void add_property_zval_ex(zval *arg, const char *key, size_t key_len, zval *value) /* {{{ … in add_property_zval_ex() argument
2146 str = zend_string_init(key, key_len, 0); in add_property_zval_ex()