Lines Matching refs:formstr
28 PHPAPI int php_url_encode_hash_ex(HashTable *ht, smart_str *formstr, in php_url_encode_hash_ex() argument
135 …php_url_encode_hash_ex(HASH_OF(*zdata), formstr, NULL, 0, newprefix, newprefix_len, "%5D", 3, (Z_T… in php_url_encode_hash_ex()
142 if (formstr->len) { in php_url_encode_hash_ex()
143 smart_str_appendl(formstr, arg_sep, arg_sep_len); in php_url_encode_hash_ex()
146 smart_str_appendl(formstr, key_prefix, key_prefix_len); in php_url_encode_hash_ex()
149 smart_str_appendl(formstr, ekey, ekey_len); in php_url_encode_hash_ex()
154 smart_str_appendl(formstr, num_prefix, num_prefix_len); in php_url_encode_hash_ex()
157 smart_str_appendl(formstr, ekey, ekey_len); in php_url_encode_hash_ex()
160 smart_str_appendl(formstr, key_suffix, key_suffix_len); in php_url_encode_hash_ex()
161 smart_str_appendl(formstr, "=", 1); in php_url_encode_hash_ex()
182 smart_str_appendl(formstr, ekey, ekey_len); in php_url_encode_hash_ex()
198 smart_str formstr = {0}; in PHP_FUNCTION() local
210 …if (php_url_encode_hash_ex(HASH_OF(formdata), &formstr, prefix, prefix_len, NULL, 0, NULL, 0, (Z_T… in PHP_FUNCTION()
211 if (formstr.c) { in PHP_FUNCTION()
212 efree(formstr.c); in PHP_FUNCTION()
217 if (!formstr.c) { in PHP_FUNCTION()
221 smart_str_0(&formstr); in PHP_FUNCTION()
223 RETURN_STRINGL(formstr.c, formstr.len, 0); in PHP_FUNCTION()