Home
last modified time | relevance | path

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

/PHP-5.5/ext/intl/breakiterator/
H A Dbreakiterator_iterators.cpp254 char *method, int method_len, const zend_literal *key TSRMLS_DC) in IntlPartsIterator_get_method() argument
262 do_alloca(method_len + 1, use_heap)); in IntlPartsIterator_get_method()
264 method, method_len); in IntlPartsIterator_get_method()
266 Z_STRVAL(local_literal.constant), method_len + 1); in IntlPartsIterator_get_method()
271 && method_len == sizeof("getrulestatus") - 1 in IntlPartsIterator_get_method()
272 && memcmp("getrulestatus", Z_STRVAL(key->constant), method_len) == 0) { in IntlPartsIterator_get_method()
279 method, method_len, key TSRMLS_CC); in IntlPartsIterator_get_method()
285 method, method_len, key TSRMLS_CC); in IntlPartsIterator_get_method()
/PHP-5.5/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.c992 …end_get_user_call_function(zend_class_entry *ce, const char *method_name, int method_len) /* {{{ */ in zend_get_user_call_function() argument
1002 call_user_call->function_name = estrndup(method_name, method_len); in zend_get_user_call_function()
1021 lc_method_name = do_alloca(method_len+1, use_heap); in zend_std_get_method()
1023 zend_str_tolower_copy(lc_method_name, method_name, method_len); in zend_std_get_method()
1024 hash_value = zend_hash_func(lc_method_name, method_len+1); in zend_std_get_method()
1027 …if (UNEXPECTED(zend_hash_quick_find(&zobj->ce->function_table, lc_method_name, method_len+1, hash_… in zend_std_get_method()
1032 return zend_get_user_call_function(zobj->ce, method_name, method_len); in zend_std_get_method()
1050 fbc = zend_get_user_call_function(zobj->ce, method_name, method_len); in zend_std_get_method()
1064 …if (zend_hash_quick_find(&EG(scope)->function_table, lc_method_name, method_len+1, hash_value, (vo… in zend_std_get_method()
1076 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.h512 …union _zend_function *(*get_static_method)(zend_class_entry *ce, char* method, int method_len TSRM…
/PHP-5.5/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.5/ext/openssl/
H A Dopenssl.c3484 char *method; int method_len = 0; in PHP_FUNCTION() local
3493 &method, &method_len) == FAILURE) { in PHP_FUNCTION()
3501 if (method_len) { in PHP_FUNCTION()
4353 int method_len = 0; in PHP_FUNCTION() local
4483 int method_len = 0; in PHP_FUNCTION() local
4831 int data_len, method_len; in PHP_FUNCTION() local
4910 int data_len, method_len, password_len, iv_len = 0, max_iv_len; in PHP_FUNCTION() local
4989 int data_len, method_len, password_len, iv_len = 0; in PHP_FUNCTION() local
5002 if (!method_len) { in PHP_FUNCTION()
5072 int method_len; in PHP_FUNCTION() local
[all …]
/PHP-5.5/ext/pdo/
H A Dpdo_stmt.c2261 char *method_name, int method_len, const zend_literal *key TSRMLS_DC) in dbstmt_method_get() argument
2269 lc_method_name = emalloc(method_len + 1); in dbstmt_method_get()
2270 zend_str_tolower_copy(lc_method_name, method_name, method_len); in dbstmt_method_get()
2273 method_len+1, (void**)&fbc) == FAILURE) { in dbstmt_method_get()
2290 lc_method_name, method_len+1, (void**)&fbc) == FAILURE) { in dbstmt_method_get()
2696 char *method_name, int method_len, const zend_literal *key TSRMLS_DC) in row_method_get() argument
2701 lc_method_name = emalloc(method_len + 1); in row_method_get()
2702 zend_str_tolower_copy(lc_method_name, method_name, method_len); in row_method_get()
2704 …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.5/ext/spl/
H A Dspl_iterators.c832 …tion *spl_recursive_it_get_method(zval **object_ptr, char *method, int method_len, const zend_lite… in spl_recursive_it_get_method() argument
844 function_handler = std_object_handlers.get_method(object_ptr, method, method_len, key TSRMLS_CC); in spl_recursive_it_get_method()
846 …if (zend_hash_find(&Z_OBJCE_P(zobj)->function_table, method, method_len+1, (void **) &function_han… in spl_recursive_it_get_method()
849 …function_handler = Z_OBJ_HT_P(*object_ptr)->get_method(object_ptr, method, method_len, key TSRMLS_… in spl_recursive_it_get_method()
1282 static union _zend_function *spl_dual_it_get_method(zval **object_ptr, char *method, int method_len in spl_dual_it_get_method() argument
1289 function_handler = std_object_handlers.get_method(object_ptr, method, method_len, key TSRMLS_CC); in spl_dual_it_get_method()
1291 …if (zend_hash_find(&intern->inner.ce->function_table, method, method_len+1, (void **) &function_ha… in spl_dual_it_get_method()
1294 …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.c665 …ilesystem_object_get_method_check(zval **object_ptr, char *method, int method_len, const struct _z… in spl_filesystem_object_get_method_check() argument
671 method_len = sizeof("_bad_state_ex") - 1; in spl_filesystem_object_get_method_check()
675 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.5/ext/xmlrpc/
H A Dxmlrpc-epi-php.c716 int method_len; in PHP_FUNCTION() local
719 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s!z|a", &method, &method_len, &vals, &out_op… in PHP_FUNCTION()
/PHP-5.5/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 88 milliseconds