Searched refs:check_flags (Results 1 – 3 of 3) sorted by relevance
/PHP-7.3/ext/standard/ |
H A D | type.c | 354 int check_flags = 0; in PHP_FUNCTION() local 364 check_flags |= IS_CALLABLE_CHECK_SYNTAX_ONLY; in PHP_FUNCTION() 367 retval = zend_is_callable_ex(var, NULL, check_flags, &name, NULL, &error); in PHP_FUNCTION() 371 retval = zend_is_callable_ex(var, NULL, check_flags, NULL, NULL, &error); in PHP_FUNCTION()
|
/PHP-7.3/Zend/ |
H A D | zend_API.c | 3084 if (error && !(check_flags & IS_CALLABLE_CHECK_SILENT)) { in zend_is_callable_check_func() 3118 if ((check_flags & IS_CALLABLE_CHECK_NO_ACCESS) == 0 && in zend_is_callable_check_func() 3205 if ((check_flags & IS_CALLABLE_CHECK_IS_STATIC) != 0) { in zend_is_callable_check_func() 3221 if (retval && (check_flags & IS_CALLABLE_CHECK_NO_ACCESS) == 0) { in zend_is_callable_check_func() 3247 } else if (error && !(check_flags & IS_CALLABLE_CHECK_SILENT)) { in zend_is_callable_check_func() 3365 if (check_flags & IS_CALLABLE_CHECK_SYNTAX_ONLY) { in zend_is_callable_impl() 3407 if (check_flags & IS_CALLABLE_CHECK_SYNTAX_ONLY) { in zend_is_callable_impl() 3421 if (check_flags & IS_CALLABLE_CHECK_SYNTAX_ONLY) { in zend_is_callable_impl() 3465 zend_bool ret = zend_is_callable_impl(callable, object, check_flags, fcc, error); in zend_is_callable_ex() 3474 return zend_is_callable_ex(callable, NULL, check_flags, callable_name, NULL, NULL); in zend_is_callable() [all …]
|
H A D | zend_API.h | 310 ZEND_API zend_bool zend_is_callable_ex(zval *callable, zend_object *object, uint32_t check_flags, z… 311 ZEND_API zend_bool zend_is_callable(zval *callable, uint32_t check_flags, zend_string **callable_na… 488 ZEND_API int zend_fcall_info_init(zval *callable, uint32_t check_flags, zend_fcall_info *fci, zend_…
|
Completed in 29 milliseconds