check_flags 2754 Zend/zend_API.c static int zend_is_callable_check_func(int check_flags, zval *callable, zend_fcall_info_cache *fcc, int strict_class, char **error TSRMLS_DC) /* {{{ */ check_flags 2831 Zend/zend_API.c if (error && !(check_flags & IS_CALLABLE_CHECK_SILENT)) { check_flags 2859 Zend/zend_API.c if ((check_flags & IS_CALLABLE_CHECK_NO_ACCESS) == 0 && check_flags 2948 Zend/zend_API.c if ((check_flags & IS_CALLABLE_CHECK_IS_STATIC) != 0) { check_flags 2972 Zend/zend_API.c if (retval && (check_flags & IS_CALLABLE_CHECK_NO_ACCESS) == 0) { check_flags 2996 Zend/zend_API.c } else if (error && !(check_flags & IS_CALLABLE_CHECK_SILENT)) { check_flags 3015 Zend/zend_API.c ZEND_API zend_bool zend_is_callable_ex(zval *callable, zval *object_ptr, uint check_flags, char **callable_name, int *callable_name_len, zend_fcall_info_cache *fcc, char **error TSRMLS_DC) /* {{{ */ check_flags 3070 Zend/zend_API.c if (check_flags & IS_CALLABLE_CHECK_SYNTAX_ONLY) { check_flags 3075 Zend/zend_API.c ret = zend_is_callable_check_func(check_flags, callable, fcc, 0, error TSRMLS_CC); check_flags 3117 Zend/zend_API.c if (check_flags & IS_CALLABLE_CHECK_SYNTAX_ONLY) { check_flags 3147 Zend/zend_API.c if (check_flags & IS_CALLABLE_CHECK_SYNTAX_ONLY) { check_flags 3153 Zend/zend_API.c ret = zend_is_callable_check_func(check_flags, *method, fcc, strict_class, error TSRMLS_CC); check_flags 3216 Zend/zend_API.c ZEND_API zend_bool zend_is_callable(zval *callable, uint check_flags, char **callable_name TSRMLS_DC) /* {{{ */ check_flags 3218 Zend/zend_API.c return zend_is_callable_ex(callable, NULL, check_flags, callable_name, NULL, NULL, NULL TSRMLS_CC); check_flags 3249 Zend/zend_API.c ZEND_API int zend_fcall_info_init(zval *callable, uint check_flags, zend_fcall_info *fci, zend_fcall_info_cache *fcc, char **callable_name, char **error TSRMLS_DC) /* {{{ */ check_flags 3251 Zend/zend_API.c if (!zend_is_callable_ex(callable, NULL, check_flags, callable_name, NULL, fcc, error TSRMLS_CC)) { check_flags 303 Zend/zend_API.h ZEND_API zend_bool zend_is_callable_ex(zval *callable, zval *object_ptr, uint check_flags, char **callable_name, int *callable_name_len, zend_fcall_info_cache *fcc, char **error TSRMLS_DC); check_flags 304 Zend/zend_API.h ZEND_API zend_bool zend_is_callable(zval *callable, uint check_flags, char **callable_name TSRMLS_DC); check_flags 469 Zend/zend_API.h ZEND_API int zend_fcall_info_init(zval *callable, uint check_flags, zend_fcall_info *fci, zend_fcall_info_cache *fcc, char **callable_name, char **error TSRMLS_DC); check_flags 377 ext/standard/type.c int check_flags = 0; check_flags 385 ext/standard/type.c check_flags |= IS_CALLABLE_CHECK_SYNTAX_ONLY; check_flags 388 ext/standard/type.c retval = zend_is_callable_ex(var, NULL, check_flags, &name, NULL, NULL, &error TSRMLS_CC); check_flags 392 ext/standard/type.c retval = zend_is_callable_ex(var, NULL, check_flags, NULL, NULL, NULL, &error TSRMLS_CC);