Searched defs:internal (Results 1 - 6 of 6) sorted by relevance
| /PHP_TRUNK/main/ |
| H A D | php_output.h | 142 php_output_handler_context_func_t internal; member in union:_php_output_handler::__anon278
|
| /PHP_TRUNK/Zend/ |
| H A D | zend.h | 537 } internal; member in union:_zend_class_entry::__anon3
|
| H A D | zend_builtin_functions.c | 1741 zval *internal; local 1748 MAKE_STD_ZVAL(internal); 1751 array_init(internal); 1755 zend_hash_apply_with_arguments(EG(function_table) TSRMLS_CC, (apply_func_args_t) copy_function_name, 2, internal, user); 1757 if (zend_hash_add(Z_ARRVAL_P(return_value), "internal", sizeof("internal"), (void **)&internal, sizeof(zval *), NULL) == FAILURE) { 1758 zval_ptr_dtor(&internal); 1761 zend_error(E_WARNING, "Cannot add internal functions to return value from get_defined_functions()"); 1968 module_names[0] = "internal"; [all...] |
| H A D | zend_alloc.c | 434 int internal; member in struct:_zend_mm_heap 1042 ZEND_API zend_mm_heap *zend_mm_startup_ex(const zend_mm_mem_handlers *handlers, size_t block_size, size_t reserve_size, int internal, void *params) argument 1122 heap->internal = internal; 1128 if (internal) { 1606 int internal; local 1676 internal = heap->internal; 1687 if (!internal) {
|
| H A D | zend_compile.c | 1947 internal function with short name */ 2051 internal function with short name */ 3121 * we still need to do the arg number checks. We are only willing to ignore this for internal 3667 /* User class extends internal class */ 5214 ZEND_API void zend_mangle_property_name(char **dest, int *dest_length, const char *src1, int src1_length, const char *src2, int src2_length, int internal) /* {{{ */ argument 5220 prop_name = pemalloc(prop_name_length + 1, internal); 6870 ce->info.internal.module = NULL; 6871 ce->info.internal.builtin_functions = NULL;
|
| /PHP_TRUNK/ext/reflection/ |
| H A D | php_reflection.c | 382 string_printf(str, (ce->type == ZEND_USER_CLASS) ? "<user" : "<internal"); 383 if (ce->type == ZEND_INTERNAL_CLASS && ce->info.internal.module) { 384 string_printf(str, ":%s", ce->info.internal.module->name); 839 string_printf(str, (fptr->type == ZEND_USER_FUNCTION) ? "<user" : "<internal"); 1009 if (((*pce)->type == ZEND_INTERNAL_CLASS) && (*pce)->info.internal.module && !strcasecmp((*pce)->info.internal.module->name, module->name)) { 1477 zend_throw_exception_ex(reflection_exception_ptr, 0 TSRMLS_CC, "Cannot determine default value for internal functions"); 1758 Returns whether this is an internal function */ 2087 zend_internal_function *internal; local 2096 internal 2111 zend_internal_function *internal; local [all...] |
Completed in 32 milliseconds