Searched refs:check_flags (Results 1 – 3 of 3) sorted by relevance
/php-src/ext/standard/ |
H A D | type.c | 420 int check_flags = 0; in PHP_FUNCTION() local 430 check_flags |= IS_CALLABLE_CHECK_SYNTAX_ONLY; in PHP_FUNCTION() 433 retval = zend_is_callable_ex(var, NULL, check_flags, &name, NULL, NULL); in PHP_FUNCTION() 436 retval = zend_is_callable_ex(var, NULL, check_flags, NULL, NULL, NULL); in PHP_FUNCTION()
|
/php-src/Zend/ |
H A D | zend_API.c | 4161 uint32_t check_flags, zend_fcall_info_cache *fcc, char **error) /* {{{ */ in zend_is_callable_at_frame() argument 4188 if (check_flags & IS_CALLABLE_CHECK_SYNTAX_ONLY) { in zend_is_callable_at_frame() 4194 …ret = zend_is_callable_check_func(callable, frame, fcc, strict_class, error, check_flags & IS_CALL… in zend_is_callable_at_frame() 4227 if (check_flags & IS_CALLABLE_CHECK_SYNTAX_ONLY) { in zend_is_callable_at_frame() 4231 …lass(Z_STR_P(obj), get_scope(frame), frame, fcc, &strict_class, error, check_flags & IS_CALLABLE_S… in zend_is_callable_at_frame() 4239 if (check_flags & IS_CALLABLE_CHECK_SYNTAX_ONLY) { in zend_is_callable_at_frame() 4270 ZEND_API bool zend_is_callable_ex(zval *callable, zend_object *object, uint32_t check_flags, zend_s… in zend_is_callable_ex() argument 4278 bool ret = zend_is_callable_at_frame(callable, object, frame, check_flags, fcc, error); in zend_is_callable_ex() 4285 ZEND_API bool zend_is_callable(zval *callable, uint32_t check_flags, zend_string **callable_name) /… in zend_is_callable() argument 4287 return zend_is_callable_ex(callable, NULL, check_flags, callable_name, NULL, NULL); in zend_is_callable() [all …]
|
H A D | zend_API.h | 419 uint32_t check_flags, zend_fcall_info_cache *fcc, char **error); 420 ZEND_API bool zend_is_callable_ex(zval *callable, zend_object *object, uint32_t check_flags, zend_s… 421 ZEND_API bool zend_is_callable(zval *callable, uint32_t check_flags, zend_string **callable_name); 704 ZEND_API zend_result zend_fcall_info_init(zval *callable, uint32_t check_flags, zend_fcall_info *fc…
|
Completed in 34 milliseconds