check_flags      2911 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) /* {{{ */
check_flags      3011 Zend/zend_API.c 		if (error && !(check_flags & IS_CALLABLE_CHECK_SILENT)) {
check_flags      3038 Zend/zend_API.c 		if ((check_flags & IS_CALLABLE_CHECK_NO_ACCESS) == 0 &&
check_flags      3122 Zend/zend_API.c 				if ((check_flags & IS_CALLABLE_CHECK_IS_STATIC) != 0) {
check_flags      3138 Zend/zend_API.c 			if (retval && (check_flags & IS_CALLABLE_CHECK_NO_ACCESS) == 0) {
check_flags      3162 Zend/zend_API.c 	} else if (error && !(check_flags & IS_CALLABLE_CHECK_SILENT)) {
check_flags      3182 Zend/zend_API.c ZEND_API zend_bool zend_is_callable_ex(zval *callable, zend_object *object, uint check_flags, zend_string **callable_name, zend_fcall_info_cache *fcc, char **error) /* {{{ */
check_flags      3229 Zend/zend_API.c 			if (check_flags & IS_CALLABLE_CHECK_SYNTAX_ONLY) {
check_flags      3234 Zend/zend_API.c 			ret = zend_is_callable_check_func(check_flags, callable, fcc, 0, error);
check_flags      3283 Zend/zend_API.c 						if (check_flags & IS_CALLABLE_CHECK_SYNTAX_ONLY) {
check_flags      3313 Zend/zend_API.c 						if (check_flags & IS_CALLABLE_CHECK_SYNTAX_ONLY) {
check_flags      3321 Zend/zend_API.c 					ret = zend_is_callable_check_func(check_flags, method, fcc, strict_class, error);
check_flags      3381 Zend/zend_API.c ZEND_API zend_bool zend_is_callable(zval *callable, uint check_flags, zend_string **callable_name) /* {{{ */
check_flags      3383 Zend/zend_API.c 	return zend_is_callable_ex(callable, NULL, check_flags, callable_name, NULL, NULL);
check_flags      3413 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, zend_string **callable_name, char **error) /* {{{ */
check_flags      3415 Zend/zend_API.c 	if (!zend_is_callable_ex(callable, NULL, check_flags, callable_name, fcc, error)) {
check_flags       313 Zend/zend_API.h ZEND_API zend_bool zend_is_callable_ex(zval *callable, zend_object *object, uint check_flags, zend_string **callable_name, zend_fcall_info_cache *fcc, char **error);
check_flags       314 Zend/zend_API.h ZEND_API zend_bool zend_is_callable(zval *callable, uint check_flags, zend_string **callable_name);
check_flags       487 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, zend_string **callable_name, char **error);
check_flags       405 ext/standard/type.c 	int check_flags = 0;
check_flags       413 ext/standard/type.c 		check_flags |= IS_CALLABLE_CHECK_SYNTAX_ONLY;
check_flags       416 ext/standard/type.c 		retval = zend_is_callable_ex(var, NULL, check_flags, &name, NULL, &error);
check_flags       426 ext/standard/type.c 		retval = zend_is_callable_ex(var, NULL, check_flags, NULL, NULL, &error);