Searched defs:check_flags (Results 1 - 2 of 2) sorted by relevance
| /PHP_5_3/ext/standard/ |
| H A D | type.c | 364 int check_flags = 0; local 372 check_flags |= IS_CALLABLE_CHECK_SYNTAX_ONLY; 375 retval = zend_is_callable_ex(var, NULL, check_flags, &name, NULL, NULL, &error TSRMLS_CC); 379 retval = zend_is_callable_ex(var, NULL, check_flags, NULL, NULL, NULL, &error TSRMLS_CC);
|
| /PHP_5_3/Zend/ |
| H A D | zend_API.c | 2429 static int zend_is_callable_check_func(int check_flags, zval *callable, zend_fcall_info_cache *fcc, int strict_class, char **error TSRMLS_DC) /* {{{ */ argument 2505 if (error && !(check_flags & IS_CALLABLE_CHECK_SILENT)) { 2533 if ((check_flags & IS_CALLABLE_CHECK_NO_ACCESS) == 0 && 2624 if ((check_flags & IS_CALLABLE_CHECK_IS_STATIC) != 0) { 2648 if (retval && (check_flags & IS_CALLABLE_CHECK_NO_ACCESS) == 0) { 2672 } else if (error && !(check_flags & IS_CALLABLE_CHECK_SILENT)) { 2691 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) /* {{{ */ argument 2746 if (check_flags & IS_CALLABLE_CHECK_SYNTAX_ONLY) { 2751 ret = zend_is_callable_check_func(check_flags, callable, fcc, 0, error TSRMLS_CC); 2793 if (check_flags 2892 zend_is_callable(zval *callable, uint check_flags, char **callable_name TSRMLS_DC) argument 2925 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) argument [all...] |
Completed in 17 milliseconds