Lines Matching refs:formstr

28 PHPAPI int php_url_encode_hash_ex(HashTable *ht, smart_str *formstr,  in php_url_encode_hash_ex()  argument
142 …php_url_encode_hash_ex(HASH_OF(zdata), formstr, NULL, 0, newprefix, newprefix_len, "%5D", 3, (Z_TY… in php_url_encode_hash_ex()
151 if (formstr->s) { in php_url_encode_hash_ex()
152 smart_str_appendl(formstr, arg_sep, arg_sep_len); in php_url_encode_hash_ex()
155 smart_str_appendl(formstr, key_prefix, key_prefix_len); in php_url_encode_hash_ex()
163 smart_str_append(formstr, ekey); in php_url_encode_hash_ex()
168 smart_str_appendl(formstr, num_prefix, num_prefix_len); in php_url_encode_hash_ex()
170 smart_str_append_long(formstr, idx); in php_url_encode_hash_ex()
172 smart_str_appendl(formstr, key_suffix, key_suffix_len); in php_url_encode_hash_ex()
173 smart_str_appendl(formstr, "=", 1); in php_url_encode_hash_ex()
182 smart_str_append(formstr, ekey); in php_url_encode_hash_ex()
187 smart_str_append_long(formstr, Z_LVAL_P(zdata)); in php_url_encode_hash_ex()
190 smart_str_appendl(formstr, "0", sizeof("0")-1); in php_url_encode_hash_ex()
193 smart_str_appendl(formstr, "1", sizeof("1")-1); in php_url_encode_hash_ex()
200 smart_str_appendl(formstr, ekey, ekey_len); in php_url_encode_hash_ex()
213 smart_str_append(formstr, ekey); in php_url_encode_hash_ex()
232 smart_str formstr = {0}; in PHP_FUNCTION() local
244 …if (php_url_encode_hash_ex(HASH_OF(formdata), &formstr, prefix, prefix_len, NULL, 0, NULL, 0, (Z_T… in PHP_FUNCTION()
245 if (formstr.s) { in PHP_FUNCTION()
246 smart_str_free(&formstr); in PHP_FUNCTION()
251 if (!formstr.s) { in PHP_FUNCTION()
255 smart_str_0(&formstr); in PHP_FUNCTION()
257 RETURN_NEW_STR(formstr.s); in PHP_FUNCTION()