Lines Matching refs:formstr

26 PHPAPI int php_url_encode_hash_ex(HashTable *ht, smart_str *formstr,  in php_url_encode_hash_ex()  argument
154 …php_url_encode_hash_ex(HASH_OF(zdata), formstr, NULL, 0, newprefix, newprefix_len, "%5D", 3, (Z_TY… in php_url_encode_hash_ex()
163 if (formstr->s) { in php_url_encode_hash_ex()
164 smart_str_appendl(formstr, arg_sep, arg_sep_len); in php_url_encode_hash_ex()
168 smart_str_appendl(formstr, key_prefix, key_prefix_len); in php_url_encode_hash_ex()
177 smart_str_append(formstr, ekey); in php_url_encode_hash_ex()
182 smart_str_appendl(formstr, num_prefix, num_prefix_len); in php_url_encode_hash_ex()
184 smart_str_append_long(formstr, idx); in php_url_encode_hash_ex()
187 smart_str_appendl(formstr, key_suffix, key_suffix_len); in php_url_encode_hash_ex()
189 smart_str_appendl(formstr, "=", 1); in php_url_encode_hash_ex()
198 smart_str_append(formstr, ekey); in php_url_encode_hash_ex()
203 smart_str_append_long(formstr, Z_LVAL_P(zdata)); in php_url_encode_hash_ex()
206 smart_str_appendl(formstr, "0", sizeof("0")-1); in php_url_encode_hash_ex()
209 smart_str_appendl(formstr, "1", sizeof("1")-1); in php_url_encode_hash_ex()
221 smart_str_append(formstr, ekey); in php_url_encode_hash_ex()
240 smart_str formstr = {0}; in PHP_FUNCTION() local
251 …if (php_url_encode_hash_ex(HASH_OF(formdata), &formstr, prefix, prefix_len, NULL, 0, NULL, 0, (Z_T… in PHP_FUNCTION()
252 if (formstr.s) { in PHP_FUNCTION()
253 smart_str_free(&formstr); in PHP_FUNCTION()
258 if (!formstr.s) { in PHP_FUNCTION()
262 smart_str_0(&formstr); in PHP_FUNCTION()
264 RETURN_NEW_STR(formstr.s); in PHP_FUNCTION()