| /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 188 lc_name = do_alloca(method_len + 1, use_heap); 189 zend_str_tolower_copy(lc_name, method_name, method_len); 190 if ((method_len == sizeof(ZEND_INVOKE_FUNC_NAME)-1) && 197 return std_object_handlers.get_method(object_ptr, method_name, method_len, key TSRMLS_CC);
|
| H A D | zend_object_handlers.h | 91 typedef union _zend_function *(*zend_object_get_method_t)(zval **object_ptr, char *method, int method_len, const struct _zend_literal *key TSRMLS_DC);
|
| H A D | zend.h | 502 union _zend_function *(*get_static_method)(zend_class_entry *ce, char* method, int method_len TSRMLS_DC);
|
| H A D | zend_builtin_functions.c | 1116 int method_len; local 1120 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "zs", &klass, &method_name, &method_len) == FAILURE) { 1134 lcname = zend_str_tolower_dup(method_name, method_len); 1135 if (zend_hash_exists(&ce->function_table, lcname, method_len+1)) { 1143 && (func = Z_OBJ_HT_P(klass)->get_method(&klass, method_name, method_len, NULL TSRMLS_CC)) != NULL 1150 && (method_len == sizeof(ZEND_INVOKE_FUNC_NAME)-1)
|
| 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 1015 lc_method_name = do_alloca(method_len+1, use_heap); 1017 zend_str_tolower_copy(lc_method_name, method_name, method_len); 1018 hash_value = zend_hash_func(lc_method_name, method_len+1); 1021 if (UNEXPECTED(zend_hash_quick_find(&zobj->ce->function_table, lc_method_name, method_len+1, hash_value, (void **)&fbc) == FAILURE)) { 1026 return zend_get_user_call_function(zobj->ce, method_name, method_len); 1039 updated_fbc = zend_check_private_int(fbc, Z_OBJ_HANDLER_P(object, get_class_entry)(object TSRMLS_CC), lc_method_name, method_len, hash_value TSRMLS_CC); 1044 fbc = zend_get_user_call_function(zobj->ce, method_name, method_len); 1129 zend_get_user_callstatic_function(zend_class_entry *ce, const char *method_name, int method_len) argument [all...] |
| /PHP_5_4/ext/pdo/ |
| H A D | pdo_dbh.c | 1360 char *method_name, int method_len, const zend_literal *key TSRMLS_DC) 1369 lc_method_name = emalloc(method_len + 1); 1370 zend_str_tolower_copy(lc_method_name, method_name, method_len); 1372 if ((fbc = std_object_handlers.get_method(object_pp, method_name, method_len, key TSRMLS_CC)) == NULL) { 1384 lc_method_name, method_len+1, (void**)&fbc) == FAILURE) { 1354 dbh_method_get( zval **object_pp, char *method_name, int method_len, const zend_literal *key TSRMLS_DC) argument
|
| H A D | pdo_stmt.c | 2270 char *method_name, int method_len, const zend_literal *key TSRMLS_DC) 2278 lc_method_name = emalloc(method_len + 1); 2279 zend_str_tolower_copy(lc_method_name, method_name, method_len); 2282 method_len+1, (void**)&fbc) == FAILURE) { 2299 lc_method_name, method_len+1, (void**)&fbc) == FAILURE) { 2706 char *method_name, int method_len, const zend_literal *key TSRMLS_DC) 2711 lc_method_name = emalloc(method_len + 1); 2712 zend_str_tolower_copy(lc_method_name, method_name, method_len); 2714 if (zend_hash_find(&pdo_row_ce->function_table, lc_method_name, method_len+1, (void**)&fbc) == FAILURE) { 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
|
| /PHP_5_4/ext/spl/ |
| H A D | spl_iterators.c | 845 static union _zend_function *spl_recursive_it_get_method(zval **object_ptr, char *method, int method_len, const zend_literal *key TSRMLS_DC) argument 857 function_handler = std_object_handlers.get_method(object_ptr, method, method_len, key TSRMLS_CC); 859 if (zend_hash_find(&Z_OBJCE_P(zobj)->function_table, method, method_len+1, (void **) &function_handler) == FAILURE) { 862 function_handler = Z_OBJ_HT_P(*object_ptr)->get_method(object_ptr, method, method_len, key TSRMLS_CC); 1278 static union _zend_function *spl_dual_it_get_method(zval **object_ptr, char *method, int method_len, const zend_literal *key TSRMLS_DC) argument 1285 function_handler = std_object_handlers.get_method(object_ptr, method, method_len, key TSRMLS_CC); 1287 if (zend_hash_find(&intern->inner.ce->function_table, method, method_len+1, (void **) &function_handler) == FAILURE) { 1290 function_handler = Z_OBJ_HT_P(*object_ptr)->get_method(object_ptr, method, method_len, key TSRMLS_CC);
|
| H A D | spl_directory.c | 662 zend_function *spl_filesystem_object_get_method_check(zval **object_ptr, char *method, int method_len, const struct _zend_literal *key TSRMLS_DC) /* {{{ */ argument 668 method_len = sizeof("_bad_state_ex") - 1; 672 return zend_get_std_object_handlers()->get_method(object_ptr, method, method_len, key TSRMLS_CC);
|
| /PHP_5_4/ext/standard/ |
| H A D | incomplete_class.c | 95 static union _zend_function *incomplete_class_get_method(zval **object, char *method, int method_len, const zend_literal *key TSRMLS_DC) /* {{{ */ argument
|
| /PHP_5_4/ext/xmlrpc/ |
| H A D | xmlrpc-epi-php.c | 707 int method_len; local 710 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s!z|a", &method, &method_len, &vals, &out_opts) == FAILURE) {
|
| /PHP_5_4/sapi/apache_hooks/ |
| H A D | php_apache.c | 1211 int file_len, method_len; local 1214 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ss", &method, &method_len, &file, &file_len) == FAILURE) {
|
| /PHP_5_4/ext/openssl/ |
| H A D | openssl.c | 4179 int method_len = 0; local 4183 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "szza/|s", &data, &data_len, &sealdata, &ekeys, &pubkeys, &method, &method_len) == FAILURE) { 4305 int method_len = 0; local 4308 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "szsZ|s", &data, &data_len, &opendata, &ekey, &ekey_len, &privkey, &method, &method_len) == FAILURE) { 4654 int data_len, method_len; local 4660 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ss|b", &data, &data_len, &method, &method_len, &raw_output) == FAILURE) { 4733 int data_len, method_len, password_len, iv_len = 0, max_iv_len; local 4740 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "sss|ls", &data, &data_len, &method, &method_len, &password, &password_len, &options, &iv, &iv_len) == FAILURE) { 4812 int data_len, method_len, password_len, iv_len = 0; local 4821 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "sss|ls", &data, &data_len, &method, &method_len, 4895 int method_len; local [all...] |