Lines Matching refs:formstr
28 PHPAPI int php_url_encode_hash_ex(HashTable *ht, smart_str *formstr, in php_url_encode_hash_ex() argument
140 …php_url_encode_hash_ex(HASH_OF(*zdata), formstr, NULL, 0, newprefix, newprefix_len, "%5D", 3, (Z_T… in php_url_encode_hash_ex()
147 if (formstr->len) { in php_url_encode_hash_ex()
148 smart_str_appendl(formstr, arg_sep, arg_sep_len); in php_url_encode_hash_ex()
151 smart_str_appendl(formstr, key_prefix, key_prefix_len); in php_url_encode_hash_ex()
158 smart_str_appendl(formstr, ekey, ekey_len); in php_url_encode_hash_ex()
163 smart_str_appendl(formstr, num_prefix, num_prefix_len); in php_url_encode_hash_ex()
166 smart_str_appendl(formstr, ekey, ekey_len); in php_url_encode_hash_ex()
169 smart_str_appendl(formstr, key_suffix, key_suffix_len); in php_url_encode_hash_ex()
170 smart_str_appendl(formstr, "=", 1); in php_url_encode_hash_ex()
199 smart_str_appendl(formstr, ekey, ekey_len); in php_url_encode_hash_ex()
215 smart_str formstr = {0}; in PHP_FUNCTION() local
227 …if (php_url_encode_hash_ex(HASH_OF(formdata), &formstr, prefix, prefix_len, NULL, 0, NULL, 0, (Z_T… in PHP_FUNCTION()
228 if (formstr.c) { in PHP_FUNCTION()
229 efree(formstr.c); in PHP_FUNCTION()
234 if (!formstr.c) { in PHP_FUNCTION()
238 smart_str_0(&formstr); in PHP_FUNCTION()
240 RETURN_STRINGL(formstr.c, formstr.len, 0); in PHP_FUNCTION()