| /PHP_5_4/ext/soap/interop/ |
| H A D | client_round2_interop.php | 428 $return = eval('return $soap->'.$soap_test->method_name.'('.$args.');'); 431 $return = $soap->__soapCall($soap_test->method_name,$soap_test->method_params,array('soapaction'=>$soapaction,'uri'=>$namespace), $soap_test->headers, $result_headers); 433 $return = $soap->__soapCall($soap_test->method_name,$soap_test->method_params,array('soapaction'=>$soapaction,'uri'=>$namespace)); 582 #$this->_saveResults($endpoint_info['id'], $soap_test->method_name);
|
| H A D | client_round2_params.php | 27 var $method_name = NULL; variable 46 $this->method_name = $matches[1]; variable 48 $this->test_name = $this->method_name = $methodname;
|
| /PHP_5_4/Zend/ |
| H A D | zend_closures.c | 183 static zend_function *zend_closure_get_method(zval **object_ptr, char *method_name, int method_len, const zend_literal *key TSRMLS_DC) /* {{{ */ argument 189 zend_str_tolower_copy(lc_name, method_name, method_len); 197 return std_object_handlers.get_method(object_ptr, method_name, method_len, key TSRMLS_CC);
|
| H A D | zend.h | 429 const char* method_name; member in struct:_zend_trait_method_reference
|
| H A D | zend_builtin_functions.c | 1041 zval *method_name; local 1083 MAKE_STD_ZVAL(method_name); 1084 ZVAL_STRINGL(method_name, mptr->common.function_name, len, 1); 1085 zend_hash_next_index_insert(return_value->value.ht, &method_name, sizeof(zval *), NULL); 1094 MAKE_STD_ZVAL(method_name); 1095 ZVAL_STRINGL(method_name, zend_find_alias_name(mptr->common.scope, key, key_len - 1), key_len - 1, 1); 1096 zend_hash_next_index_insert(return_value->value.ht, &method_name, sizeof(zval *), NULL); 1098 MAKE_STD_ZVAL(method_name); 1099 ZVAL_STRINGL(method_name, mptr->common.function_name, len, 1); 1100 zend_hash_next_index_insert(return_value->value.ht, &method_name, sizeo 1115 char *method_name; local [all...] |
| H A D | zend_compile.h | 489 int zend_do_begin_class_member_function_call(znode *class_name, znode *method_name TSRMLS_DC); 511 void zend_prepare_reference(znode *result, znode *class_name, znode *method_name TSRMLS_DC);
|
| H A D | zend_object_handlers.c | 986 static inline union _zend_function *zend_get_user_call_function(zend_class_entry *ce, const char *method_name, int method_len) /* {{{ */ argument 996 call_user_call->function_name = estrndup(method_name, method_len); 1002 static union _zend_function *zend_std_get_method(zval **object_ptr, char *method_name, int method_len, const zend_literal *key TSRMLS_DC) /* {{{ */ argument 1017 zend_str_tolower_copy(lc_method_name, method_name, method_len); 1026 return zend_get_user_call_function(zobj->ce, method_name, method_len); 1044 fbc = zend_get_user_call_function(zobj->ce, method_name, method_len); 1046 zend_error_noreturn(E_ERROR, "Call to %s method %s::%s() from context '%s'", zend_visibility_string(fbc->common.fn_flags), ZEND_FN_SCOPE_NAME(fbc), method_name, EG(scope) ? EG(scope)->name : ""); 1070 fbc = zend_get_user_call_function(zobj->ce, method_name, method_len); 1072 zend_error_noreturn(E_ERROR, "Call to %s method %s::%s() from context '%s'", zend_visibility_string(fbc->common.fn_flags), ZEND_FN_SCOPE_NAME(fbc), method_name, EG(scope) ? EG(scope)->name : ""); 1129 static inline union _zend_function *zend_get_user_callstatic_function(zend_class_entry *ce, const char *method_name, in argument [all...] |
| H A D | zend_opcode.c | 226 if (ce->trait_aliases[i]->trait_method->method_name) { 227 efree((char*)ce->trait_aliases[i]->trait_method->method_name); 250 efree((char*)ce->trait_precedences[i]->trait_method->method_name);
|
| H A D | zend_compile.c | 2368 int zend_do_begin_class_member_function_call(znode *class_name, znode *method_name TSRMLS_DC) /* {{{ */ 2374 if (method_name->op_type == IS_CONST) { 2376 if (Z_TYPE(method_name->u.constant) != IS_STRING) { 2379 lcname = zend_str_tolower_dup(Z_STRVAL(method_name->u.constant), Z_STRLEN(method_name->u.constant)); 2380 if ((sizeof(ZEND_CONSTRUCTOR_FUNC_NAME)-1) == Z_STRLEN(method_name->u.constant) && 2382 zval_dtor(&method_name->u.constant); 2383 method_name->op_type = IS_UNUSED; 2406 if (method_name->op_type == IS_CONST) { 2409 zend_add_func_name_literal(CG(active_op_array), &method_name [all...] |
| /PHP_5_4/ext/pdo/ |
| H A D | pdo_stmt.c | 2270 char *method_name, int method_len, const zend_literal *key TSRMLS_DC) 2279 zend_str_tolower_copy(lc_method_name, method_name, method_len); 2706 char *method_name, int method_len, const zend_literal *key TSRMLS_DC) 2712 zend_str_tolower_copy(lc_method_name, method_name, method_len); 2264 dbstmt_method_get( zval **object_pp, char *method_name, int method_len, const zend_literal *key TSRMLS_DC) argument 2700 row_method_get( zval **object_pp, char *method_name, int method_len, const zend_literal *key TSRMLS_DC) argument
|
| H A D | pdo_dbh.c | 1363 char *method_name, int method_len, const zend_literal *key TSRMLS_DC) 1373 zend_str_tolower_copy(lc_method_name, method_name, method_len); 1375 if ((fbc = std_object_handlers.get_method(object_pp, method_name, method_len, key TSRMLS_CC)) == NULL) { 1357 dbh_method_get( zval **object_pp, char *method_name, int method_len, const zend_literal *key TSRMLS_DC) argument
|
| /PHP_5_4/ext/standard/ |
| H A D | basic_functions.c | 715 ZEND_ARG_INFO(0, method_name) 722 ZEND_ARG_INFO(0, method_name) 4762 /* {{{ proto mixed call_user_method(string method_name, mixed object [, mixed parameter] [, mixed ...]) 4800 /* {{{ proto mixed call_user_method_array(string method_name, mixed object, array params)
|
| /PHP_5_4/ext/xmlrpc/ |
| H A D | xmlrpc-epi-php.c | 120 ZEND_ARG_INFO(0, method_name) 782 const char *method_name; local 793 method_name = XMLRPC_RequestGetMethodName(response); 794 if (method_name) { 797 Z_STRVAL_P(method_name_out) = estrdup(method_name); 950 /* php func prototype: function user_func($method_name, $xmlrpc_params, $user_params) */ 1024 /* {{{ proto bool xmlrpc_server_register_method(resource server, string method_name, string function) 1025 Register a PHP function to handle method matching method_name */ 1030 zval *handle, *method_name_save, **method_name; local 1034 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rsZ", &handle, &method_key, &method_key_len, &method_name) 1063 zval **method_name, *handle, *method_name_save; local [all...] |
| /PHP_5_4/ext/reflection/ |
| H A D | php_reflection.c | 4464 char *method_name; local 4469 method_name_len = spprintf(&method_name, 0, "%s::%s", cur_ref->ce->name, cur_ref->method_name); 4470 add_assoc_stringl_ex(return_value, ce->trait_aliases[i]->alias, ce->trait_aliases[i]->alias_len + 1, method_name, method_name_len, 0);
|