Lines Matching refs:formstr

26 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_TY… in php_url_encode_hash_ex()
149 if (formstr->s) { in php_url_encode_hash_ex()
150 smart_str_appendl(formstr, arg_sep, arg_sep_len); in php_url_encode_hash_ex()
153 smart_str_appendl(formstr, key_prefix, key_prefix_len); in php_url_encode_hash_ex()
161 smart_str_append(formstr, ekey); in php_url_encode_hash_ex()
166 smart_str_appendl(formstr, num_prefix, num_prefix_len); in php_url_encode_hash_ex()
168 smart_str_append_long(formstr, idx); in php_url_encode_hash_ex()
170 smart_str_appendl(formstr, key_suffix, key_suffix_len); in php_url_encode_hash_ex()
171 smart_str_appendl(formstr, "=", 1); in php_url_encode_hash_ex()
180 smart_str_append(formstr, ekey); in php_url_encode_hash_ex()
185 smart_str_append_long(formstr, Z_LVAL_P(zdata)); in php_url_encode_hash_ex()
188 smart_str_appendl(formstr, "0", sizeof("0")-1); in php_url_encode_hash_ex()
191 smart_str_appendl(formstr, "1", sizeof("1")-1); in php_url_encode_hash_ex()
203 smart_str_append(formstr, ekey); in php_url_encode_hash_ex()
222 smart_str formstr = {0}; in PHP_FUNCTION() local
238 …if (php_url_encode_hash_ex(HASH_OF(formdata), &formstr, prefix, prefix_len, NULL, 0, NULL, 0, (Z_T… in PHP_FUNCTION()
239 if (formstr.s) { in PHP_FUNCTION()
240 smart_str_free(&formstr); in PHP_FUNCTION()
245 if (!formstr.s) { in PHP_FUNCTION()
249 smart_str_0(&formstr); in PHP_FUNCTION()
251 RETURN_NEW_STR(formstr.s); in PHP_FUNCTION()