ekey              367 ext/openssl/openssl.c 	ZEND_ARG_INFO(0, ekey)
ekey             5033 ext/openssl/openssl.c 	char * ekey;
ekey             5040 ext/openssl/openssl.c 				&ekey, &ekey_len, &privkey, &method, &method_len, &iv, &iv_len) == FAILURE) {
ekey             5050 ext/openssl/openssl.c 	PHP_OPENSSL_CHECK_SIZE_T_TO_INT(ekey_len, ekey);
ekey             5081 ext/openssl/openssl.c 	if (EVP_OpenInit(&ctx, cipher, (unsigned char *)ekey, (int)ekey_len, iv_buf, pkey) &&
ekey               82 ext/standard/http.c 				zend_string *ekey;
ekey               84 ext/standard/http.c 					ekey = php_raw_url_encode(prop_name, prop_len);
ekey               86 ext/standard/http.c 					ekey = php_url_encode(prop_name, prop_len);
ekey               88 ext/standard/http.c 				newprefix_len = key_suffix_len + ZSTR_LEN(ekey) + key_prefix_len + 3 /* %5B */;
ekey               97 ext/standard/http.c 				memcpy(p, ZSTR_VAL(ekey), ZSTR_LEN(ekey));
ekey               98 ext/standard/http.c 				p += ZSTR_LEN(ekey);
ekey               99 ext/standard/http.c 				zend_string_free(ekey);
ekey              110 ext/standard/http.c 				char *ekey;
ekey              113 ext/standard/http.c 				ekey_len = spprintf(&ekey, 0, "%pd", idx);
ekey              126 ext/standard/http.c 				memcpy(p, ekey, ekey_len);
ekey              128 ext/standard/http.c 				efree(ekey);
ekey              157 ext/standard/http.c 				zend_string *ekey;
ekey              159 ext/standard/http.c 					ekey = php_raw_url_encode(prop_name, prop_len);
ekey              161 ext/standard/http.c 					ekey = php_url_encode(prop_name, prop_len);
ekey              163 ext/standard/http.c 				smart_str_append(formstr, ekey);
ekey              164 ext/standard/http.c 				zend_string_free(ekey);
ekey              176 ext/standard/http.c 						zend_string *ekey;
ekey              178 ext/standard/http.c 							ekey = php_raw_url_encode(Z_STRVAL_P(zdata), Z_STRLEN_P(zdata));
ekey              180 ext/standard/http.c 							ekey = php_url_encode(Z_STRVAL_P(zdata), Z_STRLEN_P(zdata));
ekey              182 ext/standard/http.c 						smart_str_append(formstr, ekey);
ekey              183 ext/standard/http.c 						zend_string_free(ekey);
ekey              197 ext/standard/http.c 						char *ekey;
ekey              199 ext/standard/http.c 						ekey_len = spprintf(&ekey, 0, "%.*G", (int) EG(precision), Z_DVAL_P(zdata));
ekey              200 ext/standard/http.c 						smart_str_appendl(formstr, ekey, ekey_len);
ekey              201 ext/standard/http.c 						efree(ekey);
ekey              206 ext/standard/http.c 						zend_string *ekey;
ekey              209 ext/standard/http.c 							ekey = php_raw_url_encode(ZSTR_VAL(tmp), ZSTR_LEN(tmp));
ekey              211 ext/standard/http.c 							ekey = php_url_encode(ZSTR_VAL(tmp), ZSTR_LEN(tmp));
ekey              213 ext/standard/http.c 						smart_str_append(formstr, ekey);
ekey              215 ext/standard/http.c 						zend_string_free(ekey);