Lines Matching refs:ekey
34 char *key = NULL, *ekey, *newprefix, *p; in php_url_encode_hash_ex() local
84 ekey = php_url_encode(key, key_len, &ekey_len); in php_url_encode_hash_ex()
94 memcpy(p, ekey, ekey_len); in php_url_encode_hash_ex()
96 efree(ekey); in php_url_encode_hash_ex()
108 ekey_len = spprintf(&ekey, 0, "%ld", idx); in php_url_encode_hash_ex()
121 memcpy(p, ekey, ekey_len); in php_url_encode_hash_ex()
123 efree(ekey); in php_url_encode_hash_ex()
148 ekey = php_url_encode(key, key_len, &ekey_len); in php_url_encode_hash_ex()
149 smart_str_appendl(formstr, ekey, ekey_len); in php_url_encode_hash_ex()
150 efree(ekey); in php_url_encode_hash_ex()
156 ekey_len = spprintf(&ekey, 0, "%ld", idx); in php_url_encode_hash_ex()
157 smart_str_appendl(formstr, ekey, ekey_len); in php_url_encode_hash_ex()
158 efree(ekey); in php_url_encode_hash_ex()
164 ekey = php_url_encode(Z_STRVAL_PP(zdata), Z_STRLEN_PP(zdata), &ekey_len); in php_url_encode_hash_ex()
168 ekey_len = spprintf(&ekey, 0, "%ld", Z_LVAL_PP(zdata)); in php_url_encode_hash_ex()
171 ekey_len = spprintf(&ekey, 0, "%.*G", (int) EG(precision), Z_DVAL_PP(zdata)); in php_url_encode_hash_ex()
179 ekey = php_url_encode(Z_STRVAL_P(copyzval), Z_STRLEN_P(copyzval), &ekey_len); in php_url_encode_hash_ex()
182 smart_str_appendl(formstr, ekey, ekey_len); in php_url_encode_hash_ex()
183 efree(ekey); in php_url_encode_hash_ex()