| /PHP_5_5/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_5/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_5/ext/openssl/ |
| H A D | openssl.c | 3371 char *method; int method_len = 0; local 3380 &method, &method_len) == FAILURE) { 3388 if (method_len) { 4240 int method_len = 0; local 4244 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "szza/|s", &data, &data_len, &sealdata, &ekeys, &pubkeys, &method, &method_len) == FAILURE) { 4366 int method_len = 0; local 4369 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "szsZ|s", &data, &data_len, &opendata, &ekey, &ekey_len, &privkey, &method, &method_len) == FAILURE) { 4715 int data_len, method_len; local 4721 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ss|b", &data, &data_len, &method, &method_len, &raw_output) == FAILURE) { 4794 int data_len, method_len, password_le local 4873 int data_len, method_len, password_len, iv_len = 0; local 4956 int method_len; local [all...] |
| /PHP_5_5/Zend/ |
| 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_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.h | 512 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 | 989 static inline union _zend_function *zend_get_user_call_function(zend_class_entry *ce, const char *method_name, int method_len) /* {{{ */ argument 999 call_user_call->function_name = estrndup(method_name, method_len); 1005 static union _zend_function *zend_std_get_method(zval **object_ptr, char *method_name, int method_len, const zend_literal *key TSRMLS_DC) /* {{{ */ argument 1018 lc_method_name = do_alloca(method_len+1, use_heap); 1020 zend_str_tolower_copy(lc_method_name, method_name, method_len); 1021 hash_value = zend_hash_func(lc_method_name, method_len+1); 1024 if (UNEXPECTED(zend_hash_quick_find(&zobj->ce->function_table, lc_method_name, method_len+1, hash_value, (void **)&fbc) == FAILURE)) { 1029 return zend_get_user_call_function(zobj->ce, method_name, method_len); 1042 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); 1047 fbc = zend_get_user_call_function(zobj->ce, method_name, method_len); 1132 zend_get_user_callstatic_function(zend_class_entry *ce, const char *method_name, int method_len) argument [all...] |
| /PHP_5_5/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_5/ext/intl/breakiterator/ |
| H A D | breakiterator_iterators.cpp | 254 char *method, int method_len, const zend_literal *key TSRMLS_DC) 262 do_alloca(method_len + 1, use_heap)); 264 method, method_len); local 266 Z_STRVAL(local_literal.constant), method_len + 1); 271 && method_len == sizeof("getrulestatus") - 1 272 && memcmp("getrulestatus", Z_STRVAL(key->constant), method_len) == 0) { 279 method, method_len, key TSRMLS_CC); 285 method, method_len, key TSRMLS_CC); 253 IntlPartsIterator_get_method(zval **object_ptr, char *method, int method_len, const zend_literal *key TSRMLS_DC) argument
|
| /PHP_5_5/ext/pdo/ |
| 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) { 2705 char *method_name, int method_len, const zend_literal *key TSRMLS_DC) 2710 lc_method_name = emalloc(method_len + 1); 2711 zend_str_tolower_copy(lc_method_name, method_name, method_len); 2713 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 2699 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) 1372 lc_method_name = emalloc(method_len + 1); 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) { 1387 lc_method_name, method_len+1, (void**)&fbc) == FAILURE) { 1357 dbh_method_get( zval **object_pp, char *method_name, int method_len, const zend_literal *key TSRMLS_DC) argument
|
| /PHP_5_5/ext/spl/ |
| 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);
|
| H A D | spl_iterators.c | 831 static union _zend_function *spl_recursive_it_get_method(zval **object_ptr, char *method, int method_len, const zend_literal *key TSRMLS_DC) argument 843 function_handler = std_object_handlers.get_method(object_ptr, method, method_len, key TSRMLS_CC); 845 if (zend_hash_find(&Z_OBJCE_P(zobj)->function_table, method, method_len+1, (void **) &function_handler) == FAILURE) { 848 function_handler = Z_OBJ_HT_P(*object_ptr)->get_method(object_ptr, method, method_len, key TSRMLS_CC); 1258 static union _zend_function *spl_dual_it_get_method(zval **object_ptr, char *method, int method_len, const zend_literal *key TSRMLS_DC) argument 1265 function_handler = std_object_handlers.get_method(object_ptr, method, method_len, key TSRMLS_CC); 1267 if (zend_hash_find(&intern->inner.ce->function_table, method, method_len+1, (void **) &function_handler) == FAILURE) { 1270 function_handler = Z_OBJ_HT_P(*object_ptr)->get_method(object_ptr, method, method_len, key TSRMLS_CC);
|