method            167 Zend/zend.h    	union _zend_function *(*get_static_method)(zend_class_entry *ce, zend_string* method);
method           3249 Zend/zend_API.c 				zval *method = NULL;
method           3255 Zend/zend_API.c 					method = zend_hash_index_find(Z_ARRVAL_P(callable), 1);
method           3259 Zend/zend_API.c 					if (obj == NULL || method == NULL) {
method           3263 Zend/zend_API.c 					ZVAL_DEREF(method);
method           3264 Zend/zend_API.c 					if (Z_TYPE_P(method) != IS_STRING) {
method           3274 Zend/zend_API.c 							*callable_name = zend_string_alloc(Z_STRLEN_P(obj) + Z_STRLEN_P(method) + sizeof("::") - 1, 0);
method           3280 Zend/zend_API.c 							memcpy(ptr, Z_STRVAL_P(method), Z_STRLEN_P(method) + 1);
method           3304 Zend/zend_API.c 							*callable_name = zend_string_alloc(ZSTR_LEN(fcc->calling_scope->name) + Z_STRLEN_P(method) + sizeof("::") - 1, 0);
method           3310 Zend/zend_API.c 							memcpy(ptr, Z_STRVAL_P(method), Z_STRLEN_P(method) + 1);
method           3321 Zend/zend_API.c 					ret = zend_is_callable_check_func(check_flags, method, fcc, strict_class, error);
method            549 Zend/zend_API.h #define add_method(arg, key, method)	add_assoc_function((arg), (key), (method))
method            167 Zend/zend_builtin_functions.c 	ZEND_ARG_INFO(0, method)
method            298 Zend/zend_closures.c static zend_function *zend_closure_get_method(zend_object **object, zend_string *method, const zval *key) /* {{{ */
method            302 Zend/zend_closures.c 	lc_name = zend_string_tolower(method);
method            303 Zend/zend_closures.c 	if (zend_string_equals_literal(method, ZEND_INVOKE_FUNC_NAME)) {
method            308 Zend/zend_closures.c 	return std_object_handlers.get_method(object, method, key);
method           2870 Zend/zend_compile.c 			zend_string *method = zend_string_init(colon + 1, ZSTR_LEN(str) - (colon - ZSTR_VAL(str)) - 1, 0);
method           2875 Zend/zend_compile.c 			opline->op2.constant = zend_add_func_name_literal(CG(active_op_array), method);
method             94 Zend/zend_object_handlers.h typedef int (*zend_object_call_method_t)(zend_string *method, zend_object *object, INTERNAL_FUNCTION_PARAMETERS);
method             95 Zend/zend_object_handlers.h typedef union _zend_function *(*zend_object_get_method_t)(zend_object **object, zend_string *method, const zval *key);
method           3291 Zend/zend_vm_def.h 		zval *method;
method           3293 Zend/zend_vm_def.h 		method = zend_hash_index_find(Z_ARRVAL_P(function_name), 1);
method           3295 Zend/zend_vm_def.h 		if (!obj || !method) {
method           3308 Zend/zend_vm_def.h 		ZVAL_DEREF(method);
method           3309 Zend/zend_vm_def.h 		if (Z_TYPE_P(method) != IS_STRING) {
method           3323 Zend/zend_vm_def.h 				fbc = called_scope->get_static_method(called_scope, Z_STR_P(method));
method           3325 Zend/zend_vm_def.h 				fbc = zend_std_get_static_method(called_scope, Z_STR_P(method), NULL);
method           3329 Zend/zend_vm_def.h 					zend_throw_error(NULL, "Call to undefined method %s::%s()", ZSTR_VAL(called_scope->name), Z_STRVAL_P(method));
method           3355 Zend/zend_vm_def.h 			fbc = Z_OBJ_HT_P(obj)->get_method(&object, Z_STR_P(method), NULL);
method           3358 Zend/zend_vm_def.h 					zend_throw_error(NULL, "Call to undefined method %s::%s()", ZSTR_VAL(object->ce->name), Z_STRVAL_P(method));
method           2037 Zend/zend_vm_execute.h 		zval *method;
method           2039 Zend/zend_vm_execute.h 		method = zend_hash_index_find(Z_ARRVAL_P(function_name), 1);
method           2041 Zend/zend_vm_execute.h 		if (!obj || !method) {
method           2054 Zend/zend_vm_execute.h 		ZVAL_DEREF(method);
method           2055 Zend/zend_vm_execute.h 		if (Z_TYPE_P(method) != IS_STRING) {
method           2069 Zend/zend_vm_execute.h 				fbc = called_scope->get_static_method(called_scope, Z_STR_P(method));
method           2071 Zend/zend_vm_execute.h 				fbc = zend_std_get_static_method(called_scope, Z_STR_P(method), NULL);
method           2075 Zend/zend_vm_execute.h 					zend_throw_error(NULL, "Call to undefined method %s::%s()", ZSTR_VAL(called_scope->name), Z_STRVAL_P(method));
method           2101 Zend/zend_vm_execute.h 			fbc = Z_OBJ_HT_P(obj)->get_method(&object, Z_STR_P(method), NULL);
method           2104 Zend/zend_vm_execute.h 					zend_throw_error(NULL, "Call to undefined method %s::%s()", ZSTR_VAL(object->ce->name), Z_STRVAL_P(method));
method           2460 Zend/zend_vm_execute.h 		zval *method;
method           2462 Zend/zend_vm_execute.h 		method = zend_hash_index_find(Z_ARRVAL_P(function_name), 1);
method           2464 Zend/zend_vm_execute.h 		if (!obj || !method) {
method           2477 Zend/zend_vm_execute.h 		ZVAL_DEREF(method);
method           2478 Zend/zend_vm_execute.h 		if (Z_TYPE_P(method) != IS_STRING) {
method           2492 Zend/zend_vm_execute.h 				fbc = called_scope->get_static_method(called_scope, Z_STR_P(method));
method           2494 Zend/zend_vm_execute.h 				fbc = zend_std_get_static_method(called_scope, Z_STR_P(method), NULL);
method           2498 Zend/zend_vm_execute.h 					zend_throw_error(NULL, "Call to undefined method %s::%s()", ZSTR_VAL(called_scope->name), Z_STRVAL_P(method));
method           2524 Zend/zend_vm_execute.h 			fbc = Z_OBJ_HT_P(obj)->get_method(&object, Z_STR_P(method), NULL);
method           2527 Zend/zend_vm_execute.h 					zend_throw_error(NULL, "Call to undefined method %s::%s()", ZSTR_VAL(object->ce->name), Z_STRVAL_P(method));
method           2716 Zend/zend_vm_execute.h 		zval *method;
method           2718 Zend/zend_vm_execute.h 		method = zend_hash_index_find(Z_ARRVAL_P(function_name), 1);
method           2720 Zend/zend_vm_execute.h 		if (!obj || !method) {
method           2733 Zend/zend_vm_execute.h 		ZVAL_DEREF(method);
method           2734 Zend/zend_vm_execute.h 		if (Z_TYPE_P(method) != IS_STRING) {
method           2748 Zend/zend_vm_execute.h 				fbc = called_scope->get_static_method(called_scope, Z_STR_P(method));
method           2750 Zend/zend_vm_execute.h 				fbc = zend_std_get_static_method(called_scope, Z_STR_P(method), NULL);
method           2754 Zend/zend_vm_execute.h 					zend_throw_error(NULL, "Call to undefined method %s::%s()", ZSTR_VAL(called_scope->name), Z_STRVAL_P(method));
method           2780 Zend/zend_vm_execute.h 			fbc = Z_OBJ_HT_P(obj)->get_method(&object, Z_STR_P(method), NULL);
method           2783 Zend/zend_vm_execute.h 					zend_throw_error(NULL, "Call to undefined method %s::%s()", ZSTR_VAL(object->ce->name), Z_STRVAL_P(method));
method            127 ext/calendar/calendar.c 	ZEND_ARG_INFO(0, method)
method             34 ext/calendar/easter.c 	zend_long method = CAL_EASTER_DEFAULT;
method             50 ext/calendar/easter.c 		"|ll", &year, &method) == FAILURE) {
method             61 ext/calendar/easter.c 	if ((year <= 1582 && method != CAL_EASTER_ALWAYS_GREGORIAN) ||
method             62 ext/calendar/easter.c 	    (year >= 1583 && year <= 1752 && method != CAL_EASTER_ROMAN && method != CAL_EASTER_ALWAYS_GREGORIAN) ||
method             63 ext/calendar/easter.c 	     method == CAL_EASTER_ALWAYS_JULIAN) {		/* JULIAN CALENDAR */
method            361 ext/com_dotnet/com_handlers.c static int com_call_method(zend_string *method, zend_object *object, INTERNAL_FUNCTION_PARAMETERS)
method            325 ext/com_dotnet/com_saproxy.c static int saproxy_call_method(zend_string *method, zend_object *object, INTERNAL_FUNCTION_PARAMETERS)
method            268 ext/curl/interface.c 			ch->handlers->write_header->method = PHP_CURL_IGNORE;
method            282 ext/curl/interface.c 			ch->handlers->write->method = PHP_CURL_STDOUT;
method           1319 ext/curl/interface.c 	switch (t->method) {
method           1379 ext/curl/interface.c 	switch (t->method) {
method           1434 ext/curl/interface.c 	switch (t->method) {
method           1489 ext/curl/interface.c 	switch (t->method) {
method           1557 ext/curl/interface.c 	switch (t->method) {
method           1561 ext/curl/interface.c 			if (ch->handlers->write->method == PHP_CURL_RETURN && length > 0) {
method           1901 ext/curl/interface.c 	ch->handlers->write->method = PHP_CURL_STDOUT;
method           1902 ext/curl/interface.c 	ch->handlers->read->method  = PHP_CURL_DIRECT;
method           1903 ext/curl/interface.c 	ch->handlers->write_header->method = PHP_CURL_IGNORE;
method           1949 ext/curl/interface.c 	dupch->handlers->write->method = ch->handlers->write->method;
method           1954 ext/curl/interface.c 	dupch->handlers->read->method  = ch->handlers->read->method;
method           1955 ext/curl/interface.c 	dupch->handlers->write_header->method = ch->handlers->write_header->method;
method           1991 ext/curl/interface.c 		dupch->handlers->progress->method = ch->handlers->progress->method;
method           2002 ext/curl/interface.c 		dupch->handlers->fnmatch->method = ch->handlers->fnmatch->method;
method           2350 ext/curl/interface.c 						ch->handlers->write->method = PHP_CURL_STDOUT;
method           2354 ext/curl/interface.c 						ch->handlers->write->method = PHP_CURL_FILE;
method           2368 ext/curl/interface.c 						ch->handlers->write_header->method = PHP_CURL_IGNORE;
method           2372 ext/curl/interface.c 						ch->handlers->write_header->method = PHP_CURL_FILE;
method           2516 ext/curl/interface.c 			ch->handlers->write_header->method = PHP_CURL_USER;
method           2647 ext/curl/interface.c 			ch->handlers->progress->method = PHP_CURL_USER;
method           2656 ext/curl/interface.c 			ch->handlers->read->method = PHP_CURL_USER;
method           2662 ext/curl/interface.c 				ch->handlers->write->method = PHP_CURL_RETURN;
method           2664 ext/curl/interface.c 				ch->handlers->write->method = PHP_CURL_STDOUT;
method           2674 ext/curl/interface.c 			ch->handlers->write->method = PHP_CURL_USER;
method           2769 ext/curl/interface.c 			ch->handlers->fnmatch->method = PHP_CURL_USER;
method           2896 ext/curl/interface.c 	if (ch->handlers->write->method == PHP_CURL_RETURN && ch->handlers->write->buf.s) {
method           2902 ext/curl/interface.c 	if (ch->handlers->write->method == PHP_CURL_FILE && ch->handlers->write->fp) {
method           2905 ext/curl/interface.c 	if (ch->handlers->write_header->method == PHP_CURL_FILE && ch->handlers->write_header->fp) {
method           2909 ext/curl/interface.c 	if (ch->handlers->write->method == PHP_CURL_RETURN) {
method           3308 ext/curl/interface.c 	ch->handlers->write->method = PHP_CURL_STDOUT;
method           3315 ext/curl/interface.c 	ch->handlers->write_header->method = PHP_CURL_IGNORE;
method           3323 ext/curl/interface.c 	ch->handlers->read->method  = PHP_CURL_DIRECT;
method            262 ext/curl/multi.c 	if (ch->handlers->write->method == PHP_CURL_RETURN) {
method            128 ext/curl/php_curl.h 	int                   method;
method            137 ext/curl/php_curl.h 	int                   method;
method            144 ext/curl/php_curl.h 	int                   method;
method            396 ext/fileinfo/libmagic/compress.c uncompressbuf(struct magic_set *ms, int fd, size_t method,
method            405 ext/fileinfo/libmagic/compress.c 	if (method == 2)
method            432 ext/fileinfo/libmagic/compress.c 		if (compr[method].silent)
method            436 ext/fileinfo/libmagic/compress.c 		(void)execvp(compr[method].argv[0],
method            437 ext/fileinfo/libmagic/compress.c 		    (char *const *)(intptr_t)compr[method].argv);
method            440 ext/fileinfo/libmagic/compress.c 		    compr[method].argv[0], strerror(errno));
method            818 ext/gd/gd.c    	ZEND_ARG_INFO(0, method)
method           4648 ext/gd/gd.c    	gdInterpolationMethod method;
method           4653 ext/gd/gd.c    	method = tmp_m;
method           4673 ext/gd/gd.c    	if (gdImageSetInterpolationMethod(im, method)) {
method           4936 ext/gd/gd.c    	zend_long method = GD_BILINEAR_FIXED;
method           4938 ext/gd/gd.c    	if (zend_parse_parameters(ZEND_NUM_ARGS(), "r|l", &IM, &method) == FAILURE)  {
method           4946 ext/gd/gd.c    	if (method == -1) {
method           4947 ext/gd/gd.c    		 method = GD_BILINEAR_FIXED;
method           4949 ext/gd/gd.c    	RETURN_BOOL(gdImageSetInterpolationMethod(im, (gdInterpolationMethod) method));
method            258 ext/mysqlnd/mysqlnd.h #define MYSQLND_METHOD(class, method) php_##class##_##method##_pub
method            259 ext/mysqlnd/mysqlnd.h #define MYSQLND_METHOD_PRIVATE(class, method) php_##class##_##method##_priv
method            143 ext/openssl/openssl.c 	ZEND_ARG_INFO(0, method)
method            345 ext/openssl/openssl.c 	ZEND_ARG_INFO(0, method)
method            352 ext/openssl/openssl.c 	ZEND_ARG_INFO(0, method)
method            360 ext/openssl/openssl.c 	ZEND_ARG_INFO(0, method)
method            382 ext/openssl/openssl.c 	ZEND_ARG_INFO(0, method)
method            388 ext/openssl/openssl.c 	ZEND_ARG_INFO(0, method)
method            396 ext/openssl/openssl.c 	ZEND_ARG_INFO(0, method)
method            403 ext/openssl/openssl.c 	ZEND_ARG_INFO(0, method)
method           1506 ext/openssl/openssl.c 	zval *method = NULL;
method           1512 ext/openssl/openssl.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "rs|z", &zpkey, &challenge, &challenge_len, &method) == FAILURE) {
method           1524 ext/openssl/openssl.c 	if (method != NULL) {
method           1525 ext/openssl/openssl.c 		if (Z_TYPE_P(method) == IS_LONG) {
method           1526 ext/openssl/openssl.c 			algo = Z_LVAL_P(method);
method           1814 ext/openssl/openssl.c zend_string* php_openssl_x509_fingerprint(X509 *peer, const char *method, zend_bool raw)
method           1821 ext/openssl/openssl.c 	if (!(mdtype = EVP_get_digestbyname(method))) {
method           1846 ext/openssl/openssl.c 	char *method = "sha1";
method           1850 ext/openssl/openssl.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "z|sb", &zcert, &method, &method_len, &raw_output) == FAILURE) {
method           1860 ext/openssl/openssl.c 	fingerprint = php_openssl_x509_fingerprint(cert, method, raw_output);
method           1911 ext/openssl/openssl.c 	const X509V3_EXT_METHOD *method = NULL;
method           1915 ext/openssl/openssl.c 	method = X509V3_EXT_get(extension);
method           1916 ext/openssl/openssl.c 	if (method == NULL) {
method           1922 ext/openssl/openssl.c 	if (method->it) {
method           1924 ext/openssl/openssl.c 			ASN1_ITEM_ptr(method->it)));
method           1926 ext/openssl/openssl.c 		names = (GENERAL_NAMES*) (method->d2i(NULL, &p, length));
method           4027 ext/openssl/openssl.c 	char *method;
method           4037 ext/openssl/openssl.c 				&method, &method_len) == FAILURE) {
method           4046 ext/openssl/openssl.c 		digest = EVP_get_digestbyname(method);
method           4784 ext/openssl/openssl.c 	zval *method = NULL;
method           4788 ext/openssl/openssl.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "sz/z|z", &data, &data_len, &signature, &key, &method) == FAILURE) {
method           4797 ext/openssl/openssl.c 	if (method == NULL || Z_TYPE_P(method) == IS_LONG) {
method           4798 ext/openssl/openssl.c 		if (method != NULL) {
method           4799 ext/openssl/openssl.c 			signature_algo = Z_LVAL_P(method);
method           4802 ext/openssl/openssl.c 	} else if (Z_TYPE_P(method) == IS_STRING) {
method           4803 ext/openssl/openssl.c 		mdtype = EVP_get_digestbyname(Z_STRVAL_P(method));
method           4849 ext/openssl/openssl.c 	zval *method = NULL;
method           4852 ext/openssl/openssl.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "ssz|z", &data, &data_len, &signature, &signature_len, &key, &method) == FAILURE) {
method           4858 ext/openssl/openssl.c 	if (method == NULL || Z_TYPE_P(method) == IS_LONG) {
method           4859 ext/openssl/openssl.c 		if (method != NULL) {
method           4860 ext/openssl/openssl.c 			signature_algo = Z_LVAL_P(method);
method           4863 ext/openssl/openssl.c 	} else if (Z_TYPE_P(method) == IS_STRING) {
method           4864 ext/openssl/openssl.c 		mdtype = EVP_get_digestbyname(Z_STRVAL_P(method));
method           4904 ext/openssl/openssl.c 	char *method =NULL;
method           4910 ext/openssl/openssl.c 				&sealdata, &ekeys, &pubkeys, &method, &method_len, &iv) == FAILURE) {
method           4922 ext/openssl/openssl.c 	if (method) {
method           4923 ext/openssl/openssl.c 		cipher = EVP_get_cipherbyname(method);
method           5035 ext/openssl/openssl.c 	char *method = NULL, *iv = NULL;
method           5040 ext/openssl/openssl.c 				&ekey, &ekey_len, &privkey, &method, &method_len, &iv, &iv_len) == FAILURE) {
method           5053 ext/openssl/openssl.c 	if (method) {
method           5054 ext/openssl/openssl.c 		cipher = EVP_get_cipherbyname(method);
method           5155 ext/openssl/openssl.c 	char *data, *method;
method           5162 ext/openssl/openssl.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "ss|b", &data, &data_len, &method, &method_len, &raw_output) == FAILURE) {
method           5165 ext/openssl/openssl.c 	mdtype = EVP_get_digestbyname(method);
method           5236 ext/openssl/openssl.c 	char *data, *method, *password, *iv = "";
method           5245 ext/openssl/openssl.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "sss|ls", &data, &data_len, &method, &method_len, &password, &password_len, &options, &iv, &iv_len) == FAILURE) {
method           5248 ext/openssl/openssl.c 	cipher_type = EVP_get_cipherbyname(method);
method           5319 ext/openssl/openssl.c 	char *data, *method, *password, *iv = "";
method           5329 ext/openssl/openssl.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "sss|ls", &data, &data_len, &method, &method_len, &password, &password_len, &options, &iv, &iv_len) == FAILURE) {
method           5340 ext/openssl/openssl.c 	cipher_type = EVP_get_cipherbyname(method);
method           5406 ext/openssl/openssl.c 	char *method;
method           5410 ext/openssl/openssl.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "s", &method, &method_len) == FAILURE) {
method           5419 ext/openssl/openssl.c 	cipher_type = EVP_get_cipherbyname(method);
method            108 ext/openssl/xp_ssl.c extern zend_string* php_openssl_x509_fingerprint(X509 *peer, const char *method, zend_bool raw);
method            152 ext/openssl/xp_ssl.c 	php_stream_xport_crypt_method_t method;
method            309 ext/openssl/xp_ssl.c static int php_x509_fingerprint_cmp(X509 *peer, const char *method, const char *expected)
method            314 ext/openssl/xp_ssl.c 	fingerprint = php_openssl_x509_fingerprint(peer, method, 0);
method            326 ext/openssl/xp_ssl.c 		const char *method = NULL;
method            330 ext/openssl/xp_ssl.c 				method = "md5";
method            334 ext/openssl/xp_ssl.c 				method = "sha1";
method            338 ext/openssl/xp_ssl.c 		return method && php_x509_fingerprint_cmp(peer, method, Z_STRVAL_P(val)) == 0;
method           1495 ext/openssl/xp_ssl.c 	const SSL_METHOD *method;
method           1515 ext/openssl/xp_ssl.c 	sslsock->is_client = cparam->inputs.method & STREAM_CRYPTO_IS_CLIENT;
method           1516 ext/openssl/xp_ssl.c 	method_flags = ((cparam->inputs.method >> 1) << 1);
method           1521 ext/openssl/xp_ssl.c 		method = php_select_crypto_method(method_flags, sslsock->is_client);
method           1522 ext/openssl/xp_ssl.c 		if (method == NULL) {
method           1526 ext/openssl/xp_ssl.c 		method = sslsock->is_client ? SSLv23_client_method() : SSLv23_server_method();
method           1534 ext/openssl/xp_ssl.c 	sslsock->ctx = SSL_CTX_new(method);
method           1537 ext/openssl/xp_ssl.c 	sslsock->ctx = SSL_CTX_new((SSL_METHOD*)method);
method           2240 ext/openssl/xp_ssl.c 			if (sock->method & STREAM_CRYPTO_IS_CLIENT) {
method           2241 ext/openssl/xp_ssl.c 				sock->method = ((sock->method >> 1) << 1);
method           2244 ext/openssl/xp_ssl.c 			clisockdata->method = sock->method;
method           2246 ext/openssl/xp_ssl.c 			if (php_stream_xport_crypto_setup(xparam->outputs.client, clisockdata->method,
method           2410 ext/openssl/xp_ssl.c 						if (php_stream_xport_crypto_setup(stream, sslsock->method, NULL) < 0 ||
method           2581 ext/openssl/xp_ssl.c 		sslsock->method = get_crypto_method(context, STREAM_CRYPTO_METHOD_ANY_CLIENT);
method           2585 ext/openssl/xp_ssl.c 		sslsock->method = STREAM_CRYPTO_METHOD_SSLv2_CLIENT;
method           2594 ext/openssl/xp_ssl.c 		sslsock->method = STREAM_CRYPTO_METHOD_SSLv3_CLIENT;
method           2602 ext/openssl/xp_ssl.c 		sslsock->method = get_crypto_method(context, STREAM_CRYPTO_METHOD_TLS_CLIENT);
method           2605 ext/openssl/xp_ssl.c 		sslsock->method = STREAM_CRYPTO_METHOD_TLSv1_0_CLIENT;
method           2609 ext/openssl/xp_ssl.c 		sslsock->method = STREAM_CRYPTO_METHOD_TLSv1_1_CLIENT;
method           2618 ext/openssl/xp_ssl.c 		sslsock->method = STREAM_CRYPTO_METHOD_TLSv1_2_CLIENT;
method           2625 ext/pdo/pdo_stmt.c static int row_call_method(zend_string *method, zend_object *object, INTERNAL_FUNCTION_PARAMETERS)
method           1014 ext/phar/phar_object.c 	zend_long method = 0;
method           1016 ext/phar/phar_object.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "|l", &method) == FAILURE) {
method           1021 ext/phar/phar_object.c 	switch (method) {
method           2326 ext/phar/phar_object.c 	zend_long format = 9021976, method = 9021976;
method           2329 ext/phar/phar_object.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "|lls", &format, &method, &ext, &ext_len) == FAILURE) {
method           2361 ext/phar/phar_object.c 	switch (method) {
method           2430 ext/phar/phar_object.c 	zend_long format = 9021976, method = 9021976;
method           2433 ext/phar/phar_object.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "|lls", &format, &method, &ext, &ext_len) == FAILURE) {
method           2464 ext/phar/phar_object.c 	switch (method) {
method           3162 ext/phar/phar_object.c 	zend_long method;
method           3169 ext/phar/phar_object.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "l|s", &method, &ext, &ext_len) == FAILURE) {
method           3185 ext/phar/phar_object.c 	switch (method) {
method           3275 ext/phar/phar_object.c 	zend_long method;
method           3278 ext/phar/phar_object.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "l", &method) == FAILURE) {
method           3288 ext/phar/phar_object.c 	switch (method) {
method           4502 ext/phar/phar_object.c 	zend_long method = 9021976;
method           4505 ext/phar/phar_object.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "|l", &method) == FAILURE) {
method           4509 ext/phar/phar_object.c 	switch (method) {
method           4846 ext/phar/phar_object.c 	zend_long method;
method           4850 ext/phar/phar_object.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "l", &method) == FAILURE) {
method           4888 ext/phar/phar_object.c 	switch (method) {
method           5065 ext/phar/phar_object.c 	ZEND_ARG_INFO(0, method)
method           1290 ext/reflection/php_reflection.c static void reflection_method_factory(zend_class_entry *ce, zend_function *method, zval *closure_object, zval *object)
method           1296 ext/reflection/php_reflection.c 	ZVAL_STR_COPY(&name, (method->common.scope && method->common.scope->trait_aliases)?
method           1297 ext/reflection/php_reflection.c 			zend_resolve_method_name(ce, method) : method->common.function_name);
method           1298 ext/reflection/php_reflection.c 	ZVAL_STR_COPY(&classname, method->common.scope->name);
method           1301 ext/reflection/php_reflection.c 	intern->ptr = method;
method           2365 ext/reflection/php_reflection.c 				zval *method;
method           2370 ext/reflection/php_reflection.c 					|| ((method = zend_hash_index_find(Z_ARRVAL_P(reference), 1)) == NULL))
method           2387 ext/reflection/php_reflection.c 				convert_to_string_ex(method);
method           2388 ext/reflection/php_reflection.c 				lcname_len = Z_STRLEN_P(method);
method           2389 ext/reflection/php_reflection.c 				lcname = zend_str_tolower_dup(Z_STRVAL_P(method), lcname_len);
method           2400 ext/reflection/php_reflection.c 						"Method %s::%s() does not exist", ZSTR_VAL(ce->name), Z_STRVAL_P(method));
method           4111 ext/reflection/php_reflection.c 	zval method;
method           4124 ext/reflection/php_reflection.c 		reflection_method_factory(ce, mptr, NULL, &method);
method           4125 ext/reflection/php_reflection.c 		add_next_index_zval(retval, &method);
method           6566 ext/reflection/php_reflection.c 	REGISTER_REFLECTION_CLASS_CONST_LONG(method, "IS_STATIC", ZEND_ACC_STATIC);
method           6567 ext/reflection/php_reflection.c 	REGISTER_REFLECTION_CLASS_CONST_LONG(method, "IS_PUBLIC", ZEND_ACC_PUBLIC);
method           6568 ext/reflection/php_reflection.c 	REGISTER_REFLECTION_CLASS_CONST_LONG(method, "IS_PROTECTED", ZEND_ACC_PROTECTED);
method           6569 ext/reflection/php_reflection.c 	REGISTER_REFLECTION_CLASS_CONST_LONG(method, "IS_PRIVATE", ZEND_ACC_PRIVATE);
method           6570 ext/reflection/php_reflection.c 	REGISTER_REFLECTION_CLASS_CONST_LONG(method, "IS_ABSTRACT", ZEND_ACC_ABSTRACT);
method           6571 ext/reflection/php_reflection.c 	REGISTER_REFLECTION_CLASS_CONST_LONG(method, "IS_FINAL", ZEND_ACC_FINAL);
method            317 ext/snmp/snmp.c 	ZEND_ARG_INFO(0, method)
method           1748 ext/snmp/snmp.c 	zend_long method;
method           1750 ext/snmp/snmp.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "l", &method) == FAILURE) {
method           1754 ext/snmp/snmp.c 	if (method >= 0 && method <= (SNMP_VALUE_LIBRARY|SNMP_VALUE_PLAIN|SNMP_VALUE_OBJECT)) {
method           1755 ext/snmp/snmp.c 			SNMP_G(valueretrieval) = method;
method           1758 ext/snmp/snmp.c 		php_error_docref(NULL, E_WARNING, "Unknown SNMP value retrieval method '%pd'", method);
method           3754 ext/soap/soap.c 	xmlNodePtr method = NULL, param;
method           3768 ext/soap/soap.c 				method = xmlNewChild(body, ns, BAD_CAST(function->responseName), NULL);
method           3770 ext/soap/soap.c 				method = xmlNewChild(body, ns, BAD_CAST(function->functionName), NULL);
method           3778 ext/soap/soap.c 			method = xmlNewChild(body, ns, BAD_CAST(function_name), NULL);
method           3799 ext/soap/soap.c 				rpc_result = xmlNewChild(method, rpc_ns, BAD_CAST("result"), NULL);
method           3800 ext/soap/soap.c 				param = serialize_parameter(parameter, ret, 0, "return", use, method);
method           3803 ext/soap/soap.c 				param = serialize_parameter(parameter, ret, 0, "return", use, method);
method           3828 ext/soap/soap.c 				param = serialize_parameter(parameter, data, i, ZSTR_VAL(param_name), use, method);
method           3844 ext/soap/soap.c 	if (use == SOAP_ENCODED && version == SOAP_1_2 && method != NULL) {
method           3845 ext/soap/soap.c 		xmlSetNsProp(method, body->ns, BAD_CAST("encodingStyle"), BAD_CAST(SOAP_1_2_ENC_NAMESPACE));
method           3848 ext/soap/soap.c 		*node = method;
method           4215 ext/soap/soap.c 	xmlNodePtr envelope = NULL, body, method = NULL, head = NULL;
method           4256 ext/soap/soap.c 				method = xmlNewChild(body, ns, BAD_CAST(function->requestName), NULL);
method           4258 ext/soap/soap.c 				method = xmlNewChild(body, ns, BAD_CAST(function->functionName), NULL);
method           4273 ext/soap/soap.c 				method = xmlNewChild(body, ns, BAD_CAST(function_name), NULL);
method           4275 ext/soap/soap.c 				method = xmlNewChild(body, ns, BAD_CAST(function->requestName), NULL);
method           4277 ext/soap/soap.c 				method = xmlNewChild(body, ns, BAD_CAST(function->functionName), NULL);
method           4279 ext/soap/soap.c 				method = body;
method           4282 ext/soap/soap.c 			method = body;
method           4298 ext/soap/soap.c 			param = serialize_parameter(parameter, &arguments[i], i, NULL, use, method);
method           4320 ext/soap/soap.c 					param = serialize_parameter(parameter, NULL, i, NULL, use, method);
method           4395 ext/soap/soap.c 			if (method) {
method           4396 ext/soap/soap.c 				xmlSetNsProp(method, envelope->ns, BAD_CAST("encodingStyle"), BAD_CAST(SOAP_1_2_ENC_NAMESPACE));
method            656 ext/spl/spl_directory.c zend_function *spl_filesystem_object_get_method_check(zend_object **object, zend_string *method, const zval *key) /* {{{ */
method            668 ext/spl/spl_directory.c 	return zend_get_std_object_handlers()->get_method(object, method, key);
method            883 ext/spl/spl_iterators.c static union _zend_function *spl_recursive_it_get_method(zend_object **zobject, zend_string *method, const zval *key)
method            895 ext/spl/spl_iterators.c 	function_handler = std_object_handlers.get_method(zobject, method, key);
method            897 ext/spl/spl_iterators.c 		if ((function_handler = zend_hash_find_ptr(&Z_OBJCE_P(zobj)->function_table, method)) == NULL) {
method            900 ext/spl/spl_iterators.c 				function_handler = (*zobject)->handlers->get_method(zobject, method, key);
method           1361 ext/spl/spl_iterators.c static union _zend_function *spl_dual_it_get_method(zend_object **object, zend_string *method, const zval *key)
method           1368 ext/spl/spl_iterators.c 	function_handler = std_object_handlers.get_method(object, method, key);
method           1370 ext/spl/spl_iterators.c 		if ((function_handler = zend_hash_find_ptr(&intern->inner.ce->function_table, method)) == NULL) {
method           1373 ext/spl/spl_iterators.c 				function_handler = (*object)->handlers->get_method(object, method, key);
method           1383 ext/spl/spl_iterators.c int spl_dual_it_call_method(char *method, INTERNAL_FUNCTION_PARAMETERS)
method           1395 ext/spl/spl_iterators.c 	ZVAL_STRING(&func, method, 0);
method           1396 ext/spl/spl_iterators.c 	if (!zend_is_callable(&func, 0, &method)) {
method           1397 ext/spl/spl_iterators.c 		php_error_docref(NULL, E_ERROR, "Method %s::%s() does not exist", intern->inner.ce->name, method);
method           1418 ext/spl/spl_iterators.c 		php_error_docref(NULL, E_ERROR, "Unable to call %s::%s()", intern->inner.ce->name, method);
method           4953 ext/standard/basic_functions.c 			zval *obj, *method;
method           4959 ext/standard/basic_functions.c 						&& (method = zend_hash_index_find(Z_ARRVAL_P(function), 1)) != NULL
method           4961 ext/standard/basic_functions.c 						&& Z_TYPE_P(method) == IS_STRING) {
method           4962 ext/standard/basic_functions.c 				php_error_docref(NULL, E_WARNING, "Unable to call %s::%s() - function does not exist", ZSTR_VAL(Z_OBJCE_P(obj)->name), Z_STRVAL_P(method));
method             90 ext/standard/incomplete_class.c static union _zend_function *incomplete_class_get_method(zend_object **object, zend_string *method, const zval *key) /* {{{ */
method            498 ext/xml/xml.c  			zval *method;
method            504 ext/xml/xml.c  					   (method = zend_hash_index_find(Z_ARRVAL_P(handler), 1)) != NULL &&
method            506 ext/xml/xml.c  					   Z_TYPE_P(method) == IS_STRING) {
method            507 ext/xml/xml.c  				php_error_docref(NULL, E_WARNING, "Unable to call handler %s::%s()", ZSTR_VAL(Z_OBJCE_P(obj)->name), Z_STRVAL_P(method));
method            309 ext/xmlrpc/libxmlrpc/xml_to_dandarpc.c          xml_element* method = xml_elem_new();
method            310 ext/xmlrpc/libxmlrpc/xml_to_dandarpc.c          method->name = strdup(ELEM_METHODNAME);
method            311 ext/xmlrpc/libxmlrpc/xml_to_dandarpc.c          simplestring_add(&method->text, pStr);
method            312 ext/xmlrpc/libxmlrpc/xml_to_dandarpc.c          Q_PushTail(&wrapper->children, method);
method            394 ext/xmlrpc/libxmlrpc/xml_to_xmlrpc.c          xml_element* method = xml_elem_new();
method            395 ext/xmlrpc/libxmlrpc/xml_to_xmlrpc.c          method->name = strdup(ELEM_METHODNAME);
method            396 ext/xmlrpc/libxmlrpc/xml_to_xmlrpc.c          simplestring_add(&method->text, pStr);
method            397 ext/xmlrpc/libxmlrpc/xml_to_xmlrpc.c          Q_PushTail(&wrapper->children, method);
method           2446 ext/xmlrpc/libxmlrpc/xmlrpc.c          sm->method = cb;
method           2531 ext/xmlrpc/libxmlrpc/xmlrpc.c             return sm->method;
method            100 ext/xmlrpc/libxmlrpc/xmlrpc_introspection.c             dm->method(server, userData);
method            110 ext/xmlrpc/libxmlrpc/xmlrpc_introspection.c static inline void describe_method(XMLRPC_SERVER server, XMLRPC_VALUE vector, const char* method) {
method            111 ext/xmlrpc/libxmlrpc/xmlrpc_introspection.c    if(method) {
method            112 ext/xmlrpc/libxmlrpc/xmlrpc_introspection.c       server_method* sm = find_method(server, method);
method            191 ext/xmlrpc/libxmlrpc/xmlrpc_introspection.c    const char* method = XMLRPC_GetValueString(XMLRPC_VectorRewind(XMLRPC_RequestGetData(input)));
method            197 ext/xmlrpc/libxmlrpc/xmlrpc_introspection.c    if(method) {
method            198 ext/xmlrpc/libxmlrpc/xmlrpc_introspection.c       server_method* sm = find_method(server, method);
method            250 ext/xmlrpc/libxmlrpc/xmlrpc_introspection.c    const char* method = XMLRPC_GetValueString(XMLRPC_VectorRewind(XMLRPC_RequestGetData(input)));
method            256 ext/xmlrpc/libxmlrpc/xmlrpc_introspection.c    if(method) {
method            257 ext/xmlrpc/libxmlrpc/xmlrpc_introspection.c       server_method* sm = find_method(server, method);
method            584 ext/xmlrpc/libxmlrpc/xmlrpc_introspection.c          dm->method = cb;
method             84 ext/xmlrpc/libxmlrpc/xmlrpc_introspection_private.h    XMLRPC_IntrospectionCallback         method;
method            152 ext/xmlrpc/libxmlrpc/xmlrpc_private.h    XMLRPC_Callback         method;
method             90 ext/xmlrpc/xmlrpc-epi-php.c 	ZEND_ARG_INFO(1, method)
method             95 ext/xmlrpc/xmlrpc-epi-php.c 	ZEND_ARG_INFO(0, method)
method            675 ext/xmlrpc/xmlrpc-epi-php.c 	char *method = NULL;
method            679 ext/xmlrpc/xmlrpc-epi-php.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "s!z|a", &method, &method_len, &vals, &out_opts) == FAILURE) {
method            690 ext/xmlrpc/xmlrpc-epi-php.c 			if (method == NULL) {
method            693 ext/xmlrpc/xmlrpc-epi-php.c 				XMLRPC_RequestSetMethodName(xRequest, method);
method            784 ext/xmlrpc/xmlrpc-epi-php.c 	zval *method;
method            787 ext/xmlrpc/xmlrpc-epi-php.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "sz/|s", &xml, &xml_len, &method, &encoding, &encoding_len) == FAILURE) {
method            792 ext/xmlrpc/xmlrpc-epi-php.c 		decode_request_worker(xml, xml_len, encoding_len ? encoding : NULL, method, return_value);
method             39 ext/zip/lib/zip_set_file_compression.c zip_set_file_compression(zip_t *za, zip_uint64_t idx, zip_int32_t method, zip_uint32_t flags)
method             54 ext/zip/lib/zip_set_file_compression.c     if (method != ZIP_CM_DEFAULT && method != ZIP_CM_STORE && method != ZIP_CM_DEFLATE) {
method             65 ext/zip/lib/zip_set_file_compression.c     if (method == old_method) {
method             82 ext/zip/lib/zip_set_file_compression.c         e->changes->comp_method = method;
method            488 ext/zip/lib/zip_source_win32handle.c     DWORD method;
method            492 ext/zip/lib/zip_source_win32handle.c 	method = FILE_BEGIN;
method            495 ext/zip/lib/zip_source_win32handle.c 	method = FILE_END;
method            498 ext/zip/lib/zip_source_win32handle.c 	method = FILE_CURRENT;
method            506 ext/zip/lib/zip_source_win32handle.c     if (!SetFilePointerEx(h, li, NULL, method)) {
method           2949 ext/zip/php_zip.c 	ZEND_ARG_INFO(0, method)
method           2955 ext/zip/php_zip.c 	ZEND_ARG_INFO(0, method)
method            203 main/streams/php_stream_transport.h 		php_stream_xport_crypt_method_t method;
method            359 main/streams/transports.c 	param.inputs.method = crypto_method;
method            139 sapi/apache2handler/php_functions.c 		ADD_STRING(method);
method            486 sapi/apache2handler/sapi_apache2.c 	SG(request_info).request_method = r->method;
method           1567 sapi/cli/php_cli_server.c 	client->request.request_method = parser->method;
method            416 sapi/cli/php_http_parser.c           parser->method = PHP_HTTP_HEAD;
method            581 sapi/cli/php_http_parser.c         parser->method = (enum php_http_method) 0;
method            584 sapi/cli/php_http_parser.c           case 'C': parser->method = PHP_HTTP_CONNECT; /* or COPY, CHECKOUT */ break;
method            585 sapi/cli/php_http_parser.c           case 'D': parser->method = PHP_HTTP_DELETE; break;
method            586 sapi/cli/php_http_parser.c           case 'G': parser->method = PHP_HTTP_GET; break;
method            587 sapi/cli/php_http_parser.c           case 'H': parser->method = PHP_HTTP_HEAD; break;
method            588 sapi/cli/php_http_parser.c           case 'L': parser->method = PHP_HTTP_LOCK; break;
method            589 sapi/cli/php_http_parser.c           case 'M': parser->method = PHP_HTTP_MKCOL; /* or MOVE, MKCALENDAR, MKACTIVITY, MERGE, M-SEARCH */ break;
method            590 sapi/cli/php_http_parser.c           case 'N': parser->method = PHP_HTTP_NOTIFY; break;
method            591 sapi/cli/php_http_parser.c           case 'O': parser->method = PHP_HTTP_OPTIONS; break;
method            592 sapi/cli/php_http_parser.c           case 'P': parser->method = PHP_HTTP_POST; /* or PROPFIND or PROPPATCH or PUT */ break;
method            593 sapi/cli/php_http_parser.c           case 'R': parser->method = PHP_HTTP_REPORT; break;
method            594 sapi/cli/php_http_parser.c           case 'S': parser->method = PHP_HTTP_SUBSCRIBE; /* or SEARCH */ break;
method            595 sapi/cli/php_http_parser.c           case 'T': parser->method = PHP_HTTP_TRACE; break;
method            596 sapi/cli/php_http_parser.c           case 'U': parser->method = PHP_HTTP_UNLOCK; /* or UNSUBSCRIBE */ break;
method            597 sapi/cli/php_http_parser.c           default: parser->method = PHP_HTTP_NOT_IMPLEMENTED; break;
method            608 sapi/cli/php_http_parser.c         matcher = method_strings[parser->method];
method            610 sapi/cli/php_http_parser.c           if (parser->method != PHP_HTTP_NOT_IMPLEMENTED && matcher[index] != '\0') {
method            611 sapi/cli/php_http_parser.c             parser->method = PHP_HTTP_NOT_IMPLEMENTED;
method            614 sapi/cli/php_http_parser.c         } else if (parser->method == PHP_HTTP_NOT_IMPLEMENTED || ch == matcher[index]) {
method            616 sapi/cli/php_http_parser.c         } else if (parser->method == PHP_HTTP_CONNECT) {
method            618 sapi/cli/php_http_parser.c             parser->method = PHP_HTTP_CHECKOUT;
method            620 sapi/cli/php_http_parser.c             parser->method = PHP_HTTP_COPY;
method            622 sapi/cli/php_http_parser.c             parser->method = PHP_HTTP_NOT_IMPLEMENTED;
method            624 sapi/cli/php_http_parser.c         } else if (parser->method == PHP_HTTP_MKCOL) {
method            626 sapi/cli/php_http_parser.c             parser->method = PHP_HTTP_MOVE;
method            628 sapi/cli/php_http_parser.c             parser->method = PHP_HTTP_MKCALENDAR;
method            630 sapi/cli/php_http_parser.c             parser->method = PHP_HTTP_MERGE;
method            632 sapi/cli/php_http_parser.c             parser->method = PHP_HTTP_MSEARCH;
method            634 sapi/cli/php_http_parser.c             parser->method = PHP_HTTP_MKACTIVITY;
method            636 sapi/cli/php_http_parser.c             parser->method = PHP_HTTP_NOT_IMPLEMENTED;
method            638 sapi/cli/php_http_parser.c         } else if (index == 1 && parser->method == PHP_HTTP_POST && ch == 'R') {
method            639 sapi/cli/php_http_parser.c           parser->method = PHP_HTTP_PROPFIND; /* or HTTP_PROPPATCH */
method            640 sapi/cli/php_http_parser.c         } else if (index == 1 && parser->method == PHP_HTTP_POST && ch == 'U') {
method            641 sapi/cli/php_http_parser.c           parser->method = PHP_HTTP_PUT;
method            642 sapi/cli/php_http_parser.c         } else if (index == 1 && parser->method == PHP_HTTP_POST && ch == 'A') {
method            643 sapi/cli/php_http_parser.c           parser->method = PHP_HTTP_PATCH;
method            644 sapi/cli/php_http_parser.c         } else if (index == 1 && parser->method == PHP_HTTP_SUBSCRIBE && ch == 'E') {
method            645 sapi/cli/php_http_parser.c           parser->method = PHP_HTTP_SEARCH;
method            646 sapi/cli/php_http_parser.c         } else if (index == 2 && parser->method == PHP_HTTP_UNLOCK && ch == 'S') {
method            647 sapi/cli/php_http_parser.c           parser->method = PHP_HTTP_UNSUBSCRIBE;
method            648 sapi/cli/php_http_parser.c         } else if (index == 4 && parser->method == PHP_HTTP_PROPFIND && ch == 'P') {
method            649 sapi/cli/php_http_parser.c           parser->method = PHP_HTTP_PROPPATCH;
method            651 sapi/cli/php_http_parser.c           parser->method = PHP_HTTP_NOT_IMPLEMENTED;
method           1387 sapi/cli/php_http_parser.c         if (parser->flags & F_UPGRADE || parser->method == PHP_HTTP_CONNECT) {
method           1623 sapi/cli/php_http_parser.c   parser->method = 0;
method            129 sapi/cli/php_http_parser.h   unsigned char method;    /* requests only */
method            345 sapi/phpdbg/phpdbg.c 	char *class = NULL, *method = NULL;
method            348 sapi/phpdbg/phpdbg.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "ss", &class, &clen, &method, &mlen) == FAILURE) {
method            352 sapi/phpdbg/phpdbg.c 	phpdbg_set_breakpoint_method(class, method);
method            697 sapi/phpdbg/phpdbg.c 	ZEND_ARG_INFO(0, method)
method            198 sapi/phpdbg/phpdbg_bp.c 											conditional->param.method.class, conditional->param.method.name,
method            615 sapi/phpdbg/phpdbg_bp.c PHPDBG_API void phpdbg_set_breakpoint_method_opline(const char *class, const char *method, zend_ulong opline) /* {{{ */
method            622 sapi/phpdbg/phpdbg_bp.c 	new_break.func_len = strlen(method);
method            623 sapi/phpdbg/phpdbg_bp.c 	new_break.func_name = estrndup(method, new_break.func_len);
method           1030 sapi/phpdbg/phpdbg_bp.c 					size_t lengths[2] = { strlen(param->method.class), ZSTR_LEN(ops->scope->name) };
method           1031 sapi/phpdbg/phpdbg_bp.c 					if (lengths[0] == lengths[1] && memcmp(param->method.class, ops->scope->name, lengths[0]) == SUCCESS) {
method           1032 sapi/phpdbg/phpdbg_bp.c 						lengths[0] = strlen(param->method.name);
method           1035 sapi/phpdbg/phpdbg_bp.c 						if (lengths[0] == lengths[1] && memcmp(param->method.name, ops->function_name, lengths[0]) == SUCCESS) {
method           1580 sapi/phpdbg/phpdbg_bp.c 				 				brake->id, brake->param.method.class, brake->param.method.name, brake->code,
method           1586 sapi/phpdbg/phpdbg_bp.c 				 				brake->id, brake->param.method.class, brake->param.method.name, brake->param.num, brake->code,
method            134 sapi/phpdbg/phpdbg_bp.h PHPDBG_API void phpdbg_set_breakpoint_method_opline(const char *class, const char *method, zend_ulong opline);
method             81 sapi/phpdbg/phpdbg_cmd.c 				efree(param->method.class);
method             82 sapi/phpdbg/phpdbg_cmd.c 				efree(param->method.name);
method            110 sapi/phpdbg/phpdbg_cmd.c 			ZEND_IGNORE_VALUE(asprintf(pointer, "%s::%s", param->method.class, param->method.name));
method            126 sapi/phpdbg/phpdbg_cmd.c 			ZEND_IGNORE_VALUE(asprintf(pointer, "%s::%s#%lu", param->method.class, param->method.name, param->num));
method            162 sapi/phpdbg/phpdbg_cmd.c 			dest->method.class = estrdup(src->method.class);
method            163 sapi/phpdbg/phpdbg_cmd.c 			dest->method.name = estrdup(src->method.name);
method            181 sapi/phpdbg/phpdbg_cmd.c 			dest->method.class = estrdup(src->method.class);
method            182 sapi/phpdbg/phpdbg_cmd.c 			dest->method.name = estrdup(src->method.name);
method            208 sapi/phpdbg/phpdbg_cmd.c 			hash += zend_inline_hash_func(param->method.class, strlen(param->method.class));
method            209 sapi/phpdbg/phpdbg_cmd.c 			hash += zend_inline_hash_func(param->method.name, strlen(param->method.name));
method            233 sapi/phpdbg/phpdbg_cmd.c 			hash += zend_inline_hash_func(param->method.class, strlen(param->method.class));
method            234 sapi/phpdbg/phpdbg_cmd.c 			hash += zend_inline_hash_func(param->method.name, strlen(param->method.name));
method            297 sapi/phpdbg/phpdbg_cmd.c 						strlen(l->method.class), strlen(r->method.class)};
method            299 sapi/phpdbg/phpdbg_cmd.c 						if (memcmp(l->method.class, r->method.class, lengths[0]) == SUCCESS) {
method            300 sapi/phpdbg/phpdbg_cmd.c 							lengths[0] = strlen(l->method.name);
method            301 sapi/phpdbg/phpdbg_cmd.c 							lengths[1] = strlen(r->method.name);
method            305 sapi/phpdbg/phpdbg_cmd.c 									l->method.name, r->method.name, lengths[0]) == SUCCESS);
method            344 sapi/phpdbg/phpdbg_cmd.c 				fprintf(stderr, "%s METHOD_PARAM(%s::%s)\n", msg, param->method.class, param->method.name);
method            348 sapi/phpdbg/phpdbg_cmd.c 				fprintf(stderr, "%s NUMERIC_METHOD_PARAM(%s::%s)\n", msg, param->method.class, param->method.name);
method            388 sapi/phpdbg/phpdbg_cmd.c 					if (remove->method.class) {
method            389 sapi/phpdbg/phpdbg_cmd.c 						efree(remove->method.class);
method            391 sapi/phpdbg/phpdbg_cmd.c 					if (remove->method.name) {
method            392 sapi/phpdbg/phpdbg_cmd.c 						efree(remove->method.name);
method             64 sapi/phpdbg/phpdbg_cmd.h 	} method;
method             77 sapi/phpdbg/phpdbg_cmd.h 	(v)->method.class = NULL; \
method             78 sapi/phpdbg/phpdbg_cmd.h 	(v)->method.name = NULL; \
method             44 sapi/phpdbg/phpdbg_list.c 	PHPDBG_LIST_COMMAND_D(method,    "lists the specified method",   'm', list_method, NULL, "m", PHPDBG_ASYNC_SAFE),
method             83 sapi/phpdbg/phpdbg_list.c PHPDBG_LIST(method) /* {{{ */
method             87 sapi/phpdbg/phpdbg_list.c 	if (phpdbg_safe_class_lookup(param->method.class, strlen(param->method.class), &ce) == SUCCESS) {
method             89 sapi/phpdbg/phpdbg_list.c 		char *lcname = zend_str_tolower_dup(param->method.name, strlen(param->method.name));
method             94 sapi/phpdbg/phpdbg_list.c 			phpdbg_error("list", "type=\"notfound\" method=\"%s::%s\"", "Could not find %s::%s", param->method.class, param->method.name);
method             99 sapi/phpdbg/phpdbg_list.c 		phpdbg_error("list", "type=\"notfound\" class=\"%s\"", "Could not find the class %s", param->method.class);
method             32 sapi/phpdbg/phpdbg_list.h PHPDBG_LIST(method);
method            120 sapi/phpdbg/phpdbg_parser.y 		$$.method.class = $1.str;
method            121 sapi/phpdbg/phpdbg_parser.y 		$$.method.name = $3.str;
method            125 sapi/phpdbg/phpdbg_parser.y 		$$.method.class = $1.str;
method            126 sapi/phpdbg/phpdbg_parser.y 		$$.method.name = $3.str;
method             36 sapi/phpdbg/phpdbg_print.c 	PHPDBG_PRINT_COMMAND_D(method,     "print out the instructions in the specified method",       'm', print_method, NULL, "m", PHPDBG_ASYNC_SAFE),
method             53 sapi/phpdbg/phpdbg_print.c static inline void phpdbg_print_function_helper(zend_function *method) /* {{{ */
method             55 sapi/phpdbg/phpdbg_print.c 	switch (method->type) {
method             57 sapi/phpdbg/phpdbg_print.c 			zend_op_array* op_array = &(method->op_array);
method             64 sapi/phpdbg/phpdbg_print.c 				if (method->common.scope) {
method             68 sapi/phpdbg/phpdbg_print.c 						ZSTR_VAL(method->common.scope->name),
method             69 sapi/phpdbg/phpdbg_print.c 						ZSTR_VAL(method->common.function_name),
method             77 sapi/phpdbg/phpdbg_print.c 						method->common.function_name ? ZSTR_VAL(method->common.function_name) : "{main}",
method             96 sapi/phpdbg/phpdbg_print.c 			if (method->common.scope) {
method             97 sapi/phpdbg/phpdbg_print.c 				phpdbg_writeln("printoplineinfo", "type=\"Internal\" method=\"%s::%s\"", "\tInternal %s::%s()", ZSTR_VAL(method->common.scope->name), ZSTR_VAL(method->common.function_name));
method             99 sapi/phpdbg/phpdbg_print.c 				phpdbg_writeln("printoplineinfo", "type=\"Internal\" function=\"%s\"", "\tInternal %s()", ZSTR_VAL(method->common.function_name));
method            168 sapi/phpdbg/phpdbg_print.c 			zend_function *method;
method            170 sapi/phpdbg/phpdbg_print.c 			ZEND_HASH_FOREACH_PTR(&ce->function_table, method) {
method            171 sapi/phpdbg/phpdbg_print.c 				phpdbg_print_function_helper(method);
method            183 sapi/phpdbg/phpdbg_print.c PHPDBG_PRINT(method) /* {{{ */
method            187 sapi/phpdbg/phpdbg_print.c 	if (phpdbg_safe_class_lookup(param->method.class, strlen(param->method.class), &ce) == SUCCESS) {
method            189 sapi/phpdbg/phpdbg_print.c 		zend_string *lcname = zend_string_alloc(strlen(param->method.name), 0);
method            190 sapi/phpdbg/phpdbg_print.c 		zend_str_tolower_copy(ZSTR_VAL(lcname), param->method.name, ZSTR_LEN(lcname));
method            200 sapi/phpdbg/phpdbg_print.c 			phpdbg_error("print", "type=\"nomethod\" method=\"%s::%s\"", "The method %s::%s could not be found", param->method.class, param->method.name);
method            205 sapi/phpdbg/phpdbg_print.c 		phpdbg_error("print", "type=\"noclass\" class=\"%s\"", "The class %s could not be found", param->method.class);
method            321 sapi/phpdbg/phpdbg_print.c 	zend_function *method;
method            340 sapi/phpdbg/phpdbg_print.c 	ZEND_HASH_FOREACH_PTR(&ce->function_table, method) {
method            346 sapi/phpdbg/phpdbg_print.c 		phpdbg_out("%s", ZSTR_VAL(method->common.function_name));
method            353 sapi/phpdbg/phpdbg_print.c 	ZEND_HASH_FOREACH_STR_KEY_PTR(&ce->function_table, method_name, method) {
method            355 sapi/phpdbg/phpdbg_print.c 		phpdbg_print_function_helper(method);
method             34 sapi/phpdbg/phpdbg_print.h PHPDBG_PRINT(method);
method            151 sapi/phpdbg/phpdbg_prompt.c 							spprintf(&buffered, 0, "%s::%s", next->method.class, next->method.name);
method            156 sapi/phpdbg/phpdbg_prompt.c 							spprintf(&buffered, 0, "%s::%s#%ld", next->method.class, next->method.name, next->num);
method            967 sapi/phpdbg/phpdbg_prompt.c 			phpdbg_set_breakpoint_method(param->method.class, param->method.name);
method            970 sapi/phpdbg/phpdbg_prompt.c 			phpdbg_set_breakpoint_method_opline(param->method.class, param->method.name, param->num);
method           1318 sapi/phpdbg/phpdbg_prompt.c 			return PHPDBG_LIST_HANDLER(method)(PHPDBG_COMMAND_ARGS);
method            115 sapi/phpdbg/phpdbg_utils.c PHPDBG_API int phpdbg_is_class_method(const char *str, size_t len, char **class, char **method) /* {{{ */
method            142 sapi/phpdbg/phpdbg_utils.c 	if (method != NULL) {
method            143 sapi/phpdbg/phpdbg_utils.c 		*method = estrndup(sep+2, str + len - (sep + 2));