Searched defs:callable (Results 1 - 4 of 4) sorted by relevance
| /PHP_TRUNK/ext/dom/ |
| H A D | xpath.c | 85 char *callable = NULL; local 206 if (!zend_make_callable(&handler, &callable TSRMLS_CC)) { 207 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unable to call handler %s()", callable); 209 } else if ( intern->registerPhpFunctions == 2 && zend_hash_exists(intern->registered_phpfunctions, callable, strlen(callable) + 1) == 0) { 210 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Not allowed to call handler '%s()'.", callable); 246 efree(callable);
|
| /PHP_TRUNK/ext/xsl/ |
| H A D | xsltprocessor.c | 193 char *callable = NULL; local 325 if (!zend_make_callable(&handler, &callable TSRMLS_CC)) { 326 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unable to call handler %s()", callable); 328 } else if ( intern->registerPhpFunctions == 2 && zend_hash_exists(intern->registered_phpfunctions, callable, strlen(callable) + 1) == 0) { 329 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Not allowed to call handler '%s()'", callable); 366 efree(callable);
|
| /PHP_TRUNK/ext/pdo/ |
| H A D | pdo_stmt.c | 791 static int make_callable_ex(pdo_stmt_t *stmt, zval *callable, zend_fcall_info * fci, zend_fcall_info_cache * fcc, int num_args TSRMLS_DC) /* {{{ */ argument 795 if (zend_fcall_info_init(callable, 0, fci, fcc, NULL, &is_callable_error TSRMLS_CC) == FAILURE) {
|
| /PHP_TRUNK/Zend/ |
| H A D | zend_API.c | 220 return "callable"; 2738 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 2758 if (Z_STRVAL_P(callable)[0] == '\\') { 2759 mlen = Z_STRLEN_P(callable) - 1; 2760 lmname = zend_str_tolower_dup(Z_STRVAL_P(callable) + 1, mlen); 2762 mlen = Z_STRLEN_P(callable); 2763 lmname = zend_str_tolower_dup(Z_STRVAL_P(callable), mlen); 2775 if ((colon = zend_memrchr(Z_STRVAL_P(callable), ':', Z_STRLEN_P(callable))) != NULL && 2776 colon > Z_STRVAL_P(callable) 2999 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 3200 zend_is_callable(zval *callable, uint check_flags, char **callable_name TSRMLS_DC) argument 3206 zend_make_callable(zval *callable, char **callable_name TSRMLS_DC) argument 3233 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 15 milliseconds