Searched defs:internal (Results 1 - 6 of 6) sorted by relevance
| /PHP_5_4/main/ |
| H A D | php_output.h | 142 php_output_handler_context_func_t internal; member in union:_php_output_handler::__anon278
|
| /PHP_5_4/Zend/ |
| H A D | zend.h | 527 } internal; member in union:_zend_class_entry::__anon2
|
| H A D | zend_builtin_functions.c | 1756 zval *internal; local 1763 MAKE_STD_ZVAL(internal); 1766 array_init(internal); 1770 zend_hash_apply_with_arguments(EG(function_table) TSRMLS_CC, (apply_func_args_t) copy_function_name, 2, internal, user); 1772 if (zend_hash_add(Z_ARRVAL_P(return_value), "internal", sizeof("internal"), (void **)&internal, sizeof(zval *), NULL) == FAILURE) { 1773 zval_ptr_dtor(&internal); 1776 zend_error(E_WARNING, "Cannot add internal functions to return value from get_defined_functions()"); 1983 module_names[0] = "internal"; [all...] |
| H A D | zend_alloc.c | 434 int internal; member in struct:_zend_mm_heap 1038 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 1118 heap->internal = internal; 1124 if (internal) { 1602 int internal; local 1672 internal = heap->internal; 1683 if (!internal) {
|
| H A D | zend_compile.c | 1936 internal function with short name */ 2032 internal function with short name */ 2924 * we still need to do the arg number checks. We are only willing to ignore this for internal 3470 /* User class extends internal class */ 5022 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 5028 prop_name = pemalloc(prop_name_length + 1, internal); 6637 ce->info.internal.module = NULL; 6638 ce->info.internal.builtin_functions = NULL;
|
| /PHP_5_4/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