Home
last modified time | relevance | path

Searched refs:method_len (Results 1 – 13 of 13) sorted by relevance

/PHP-5.4/Zend/
H A Dzend_closures.c183 static zend_function *zend_closure_get_method(zval **object_ptr, char *method_name, int method_len,… in zend_closure_get_method() argument
188 lc_name = do_alloca(method_len + 1, use_heap); in zend_closure_get_method()
189 zend_str_tolower_copy(lc_name, method_name, method_len); in zend_closure_get_method()
190 if ((method_len == sizeof(ZEND_INVOKE_FUNC_NAME)-1) && in zend_closure_get_method()
197 return std_object_handlers.get_method(object_ptr, method_name, method_len, key TSRMLS_CC); in zend_closure_get_method()
H A Dzend_object_handlers.c986 …end_get_user_call_function(zend_class_entry *ce, const char *method_name, int method_len) /* {{{ */ in zend_get_user_call_function() argument
996 call_user_call->function_name = estrndup(method_name, method_len); in zend_get_user_call_function()
1015 lc_method_name = do_alloca(method_len+1, use_heap); in zend_std_get_method()
1017 zend_str_tolower_copy(lc_method_name, method_name, method_len); in zend_std_get_method()
1018 hash_value = zend_hash_func(lc_method_name, method_len+1); in zend_std_get_method()
1021 …if (UNEXPECTED(zend_hash_quick_find(&zobj->ce->function_table, lc_method_name, method_len+1, hash_… in zend_std_get_method()
1026 return zend_get_user_call_function(zobj->ce, method_name, method_len); in zend_std_get_method()
1044 fbc = zend_get_user_call_function(zobj->ce, method_name, method_len); in zend_std_get_method()
1058 …if (zend_hash_quick_find(&EG(scope)->function_table, lc_method_name, method_len+1, hash_value, (vo… in zend_std_get_method()
1070 fbc = zend_get_user_call_function(zobj->ce, method_name, method_len); in zend_std_get_method()
[all …]
H A Dzend_object_handlers.h91 …tion *(*zend_object_get_method_t)(zval **object_ptr, char *method, int method_len, const struct _z…
H A Dzend_builtin_functions.c1116 int method_len; in ZEND_FUNCTION() local
1120 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "zs", &klass, &method_name, &method_len) == F… in ZEND_FUNCTION()
1134 lcname = zend_str_tolower_dup(method_name, method_len); in ZEND_FUNCTION()
1135 if (zend_hash_exists(&ce->function_table, lcname, method_len+1)) { in ZEND_FUNCTION()
1143 && (func = Z_OBJ_HT_P(klass)->get_method(&klass, method_name, method_len, NULL TSRMLS_CC)) != NULL in ZEND_FUNCTION()
1150 && (method_len == sizeof(ZEND_INVOKE_FUNC_NAME)-1) in ZEND_FUNCTION()
H A Dzend.h502 …union _zend_function *(*get_static_method)(zend_class_entry *ce, char* method, int method_len TSRM…
/PHP-5.4/ext/standard/
H A Dincomplete_class.c95 …function *incomplete_class_get_method(zval **object, char *method, int method_len, const zend_lite… in incomplete_class_get_method() argument
/PHP-5.4/ext/pdo/
H A Dpdo_stmt.c2270 char *method_name, int method_len, const zend_literal *key TSRMLS_DC) in dbstmt_method_get() argument
2278 lc_method_name = emalloc(method_len + 1); in dbstmt_method_get()
2279 zend_str_tolower_copy(lc_method_name, method_name, method_len); in dbstmt_method_get()
2282 method_len+1, (void**)&fbc) == FAILURE) { in dbstmt_method_get()
2299 lc_method_name, method_len+1, (void**)&fbc) == FAILURE) { in dbstmt_method_get()
2706 char *method_name, int method_len, const zend_literal *key TSRMLS_DC) in row_method_get() argument
2711 lc_method_name = emalloc(method_len + 1); in row_method_get()
2712 zend_str_tolower_copy(lc_method_name, method_name, method_len); in row_method_get()
2714 …if (zend_hash_find(&pdo_row_ce->function_table, lc_method_name, method_len+1, (void**)&fbc) == FAI… in row_method_get()
H A Dpdo_dbh.c1363 char *method_name, int method_len, const zend_literal *key TSRMLS_DC) in dbh_method_get() argument
1372 lc_method_name = emalloc(method_len + 1); in dbh_method_get()
1373 zend_str_tolower_copy(lc_method_name, method_name, method_len); in dbh_method_get()
1375 …if ((fbc = std_object_handlers.get_method(object_pp, method_name, method_len, key TSRMLS_CC)) == N… in dbh_method_get()
1387 lc_method_name, method_len+1, (void**)&fbc) == FAILURE) { in dbh_method_get()
/PHP-5.4/ext/openssl/
H A Dopenssl.c4287 int method_len = 0; in PHP_FUNCTION() local
4291 …S_CC, "szza/|s", &data, &data_len, &sealdata, &ekeys, &pubkeys, &method, &method_len) == FAILURE) { in PHP_FUNCTION()
4417 int method_len = 0; in PHP_FUNCTION() local
4765 int data_len, method_len; in PHP_FUNCTION() local
4771 …ameters(ZEND_NUM_ARGS() TSRMLS_CC, "ss|b", &data, &data_len, &method, &method_len, &raw_output) ==… in PHP_FUNCTION()
4844 int data_len, method_len, password_len, iv_len = 0, max_iv_len; in PHP_FUNCTION() local
4923 int data_len, method_len, password_len, iv_len = 0; in PHP_FUNCTION() local
4936 if (!method_len) { in PHP_FUNCTION()
5006 int method_len; in PHP_FUNCTION() local
5009 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &method, &method_len) == FAILURE) { in PHP_FUNCTION()
[all …]
/PHP-5.4/ext/spl/
H A Dspl_iterators.c845 …tion *spl_recursive_it_get_method(zval **object_ptr, char *method, int method_len, const zend_lite… in spl_recursive_it_get_method() argument
857 function_handler = std_object_handlers.get_method(object_ptr, method, method_len, key TSRMLS_CC); in spl_recursive_it_get_method()
859 …if (zend_hash_find(&Z_OBJCE_P(zobj)->function_table, method, method_len+1, (void **) &function_han… in spl_recursive_it_get_method()
862 …function_handler = Z_OBJ_HT_P(*object_ptr)->get_method(object_ptr, method, method_len, key TSRMLS_… in spl_recursive_it_get_method()
1287 static union _zend_function *spl_dual_it_get_method(zval **object_ptr, char *method, int method_len in spl_dual_it_get_method() argument
1294 function_handler = std_object_handlers.get_method(object_ptr, method, method_len, key TSRMLS_CC); in spl_dual_it_get_method()
1296 …if (zend_hash_find(&intern->inner.ce->function_table, method, method_len+1, (void **) &function_ha… in spl_dual_it_get_method()
1299 …function_handler = Z_OBJ_HT_P(*object_ptr)->get_method(object_ptr, method, method_len, key TSRMLS_… in spl_dual_it_get_method()
H A Dspl_directory.c662 …ilesystem_object_get_method_check(zval **object_ptr, char *method, int method_len, const struct _z… in spl_filesystem_object_get_method_check() argument
668 method_len = sizeof("_bad_state_ex") - 1; in spl_filesystem_object_get_method_check()
672 return zend_get_std_object_handlers()->get_method(object_ptr, method, method_len, key TSRMLS_CC); in spl_filesystem_object_get_method_check()
/PHP-5.4/ext/xmlrpc/
H A Dxmlrpc-epi-php.c707 int method_len; in PHP_FUNCTION() local
710 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s!z|a", &method, &method_len, &vals, &out_op… in PHP_FUNCTION()
/PHP-5.4/sapi/apache_hooks/
H A Dphp_apache.c1211 int file_len, method_len; in PHP_FUNCTION() local
1214 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ss", &method, &method_len, &file, &file_len)… in PHP_FUNCTION()

Completed in 102 milliseconds