internal          540 Zend/zend.h    		} internal;
internal         2348 Zend/zend_API.c 	if ((*ce)->type == ZEND_INTERNAL_CLASS && (*ce)->info.internal.module->module_number == *module_number) {
internal         2518 Zend/zend_API.c 	class_entry->info.internal.module = EG(current_module);
internal         2520 Zend/zend_API.c 	if (class_entry->info.internal.builtin_functions) {
internal         2521 Zend/zend_API.c 		zend_register_functions(class_entry, class_entry->info.internal.builtin_functions, &class_entry->function_table, MODULE_PERSISTENT TSRMLS_CC);
internal         2883 Zend/zend_API.c 				fcc->function_handler->internal_function.module = (ce_org->type == ZEND_INTERNAL_CLASS) ? ce_org->info.internal.module : NULL;
internal          214 Zend/zend_API.h 		class_container.info.internal.module = NULL;			\
internal          215 Zend/zend_API.h 		class_container.info.internal.builtin_functions = functions;	\
internal          434 Zend/zend_alloc.c 	int                 internal;
internal         1042 Zend/zend_alloc.c 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)
internal         1122 Zend/zend_alloc.c 	heap->internal = internal;
internal         1128 Zend/zend_alloc.c 	if (internal) {
internal         1606 Zend/zend_alloc.c 	int internal;
internal         1676 Zend/zend_alloc.c 	internal = heap->internal;
internal         1687 Zend/zend_alloc.c 		if (!internal) {
internal          233 Zend/zend_alloc.h 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);
internal         1744 Zend/zend_builtin_functions.c 	zval *internal;
internal         1751 Zend/zend_builtin_functions.c 	MAKE_STD_ZVAL(internal);
internal         1754 Zend/zend_builtin_functions.c 	array_init(internal);
internal         1758 Zend/zend_builtin_functions.c 	zend_hash_apply_with_arguments(EG(function_table) TSRMLS_CC, (apply_func_args_t) copy_function_name, 2, internal, user);
internal         1760 Zend/zend_builtin_functions.c 	if (zend_hash_add(Z_ARRVAL_P(return_value), "internal", sizeof("internal"), (void **)&internal, sizeof(zval *), NULL) == FAILURE) {
internal         1761 Zend/zend_builtin_functions.c 		zval_ptr_dtor(&internal);
internal         5375 Zend/zend_compile.c 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) /* {{{ */
internal         5381 Zend/zend_compile.c 	prop_name = pemalloc(prop_name_length + 1, internal);
internal         7005 Zend/zend_compile.c 			ce->info.internal.module = NULL;
internal         7006 Zend/zend_compile.c 			ce->info.internal.builtin_functions = NULL;
internal          697 Zend/zend_compile.h 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);
internal         1025 Zend/zend_object_handlers.c 	call_user_call->module = (ce->type == ZEND_INTERNAL_CLASS) ? ce->info.internal.module : NULL;
internal         1165 Zend/zend_object_handlers.c 	callstatic_user_call->module   = (ce->type == ZEND_INTERNAL_CLASS) ? ce->info.internal.module : NULL;
internal          286 ext/opcache/Optimizer/pass1_5.c 								 (*pce)->info.internal.module->type != MODULE_PERSISTENT) ||
internal          402 ext/reflection/php_reflection.c 	if (ce->type == ZEND_INTERNAL_CLASS && ce->info.internal.module) {
internal          403 ext/reflection/php_reflection.c 		string_printf(str, ":%s", ce->info.internal.module->name);
internal         1042 ext/reflection/php_reflection.c 	if (((*pce)->type == ZEND_INTERNAL_CLASS) && (*pce)->info.internal.module && !strcasecmp((*pce)->info.internal.module->name, module->name)) {
internal         2120 ext/reflection/php_reflection.c 	zend_internal_function *internal;
internal         2129 ext/reflection/php_reflection.c 	internal = (zend_internal_function *)fptr;
internal         2130 ext/reflection/php_reflection.c 	if (internal->module) {
internal         2131 ext/reflection/php_reflection.c 		reflection_extension_factory(return_value, internal->module->name TSRMLS_CC);
internal         2144 ext/reflection/php_reflection.c 	zend_internal_function *internal;
internal         2153 ext/reflection/php_reflection.c 	internal = (zend_internal_function *)fptr;
internal         2154 ext/reflection/php_reflection.c 	if (internal->module) {
internal         2155 ext/reflection/php_reflection.c 		RETURN_STRING(internal->module->name, 1);
internal         4716 ext/reflection/php_reflection.c 	if ((ce->type == ZEND_INTERNAL_CLASS) && ce->info.internal.module) {
internal         4717 ext/reflection/php_reflection.c 		reflection_extension_factory(return_value, ce->info.internal.module->name TSRMLS_CC);
internal         4736 ext/reflection/php_reflection.c 	if ((ce->type == ZEND_INTERNAL_CLASS) && ce->info.internal.module) {
internal         4737 ext/reflection/php_reflection.c 		RETURN_STRING(ce->info.internal.module->name, 1);
internal         5434 ext/reflection/php_reflection.c 	if (((*pce)->type == ZEND_INTERNAL_CLASS) && (*pce)->info.internal.module && !strcasecmp((*pce)->info.internal.module->name, module->name)) {
internal          532 main/output.c  	handler->func.internal = output_handler;
internal         1005 main/output.c  			if (SUCCESS == handler->func.internal(&handler->opaq, context)) {
internal          142 main/php_output.h 		php_output_handler_context_func_t internal;