Lines Matching refs:check_flags
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()
4309 ZEND_API zend_result zend_fcall_info_init(zval *callable, uint32_t check_flags, zend_fcall_info *fc… in zend_fcall_info_init() argument
4311 if (!zend_is_callable_ex(callable, NULL, check_flags, callable_name, fcc, error)) { in zend_fcall_info_init()