Lines Matching refs:module

353 static void _extension_string(string *str, zend_module_entry *module, char *indent TSRMLS_DC);
383 if (ce->type == ZEND_INTERNAL_CLASS && ce->info.internal.module) { in _class_string()
384 string_printf(str, ":%s", ce->info.internal.module->name); in _class_string()
843 if (fptr->type == ZEND_INTERNAL_FUNCTION && ((zend_internal_function*)fptr)->module) { in _function_string()
844 string_printf(str, ":%s", ((zend_internal_function*)fptr)->module->name); in _function_string()
1006 struct _zend_module_entry *module = va_arg(args, struct _zend_module_entry*); in _extension_class_string() local
1009 …ND_INTERNAL_CLASS) && (*pce)->info.internal.module && !strcasecmp((*pce)->info.internal.module->na… in _extension_class_string()
1022 struct _zend_module_entry *module = va_arg(args, struct _zend_module_entry*); in _extension_const_string() local
1025 if (constant->module_number == module->module_number) { in _extension_const_string()
1034 static void _extension_string(string *str, zend_module_entry *module, char *indent TSRMLS_DC) in _extension_string() argument
1037 if (module->type == MODULE_PERSISTENT) { in _extension_string()
1040 if (module->type == MODULE_TEMPORARY) { in _extension_string()
1044 module->module_number, module->name, in _extension_string()
1045 (module->version == NO_VERSION_YET) ? "<no_version>" : module->version); in _extension_string()
1047 if (module->deps) { in _extension_string()
1048 const zend_module_dep* dep = module->deps; in _extension_string()
1085 … TSRMLS_CC, (apply_func_args_t) _extension_ini_string, 3, &str_ini, indent, module->module_number); in _extension_string()
1099 …C, (apply_func_args_t) _extension_const_string, 4, &str_constants, indent, module, &num_constants); in _extension_string()
1116 && fptr->internal_function.module == module) { in _extension_string()
1138 …ly_func_args_t) _extension_class_string, 4, &str_classes, sub_indent.string, module, &num_classes); in _extension_string()
1211 struct _zend_module_entry *module; in reflection_extension_factory() local
1216 if (zend_hash_find(&module_registry, lcname, name_len + 1, (void **)&module) == FAILURE) { in reflection_extension_factory()
1225 ZVAL_STRINGL(name, module->name, name_len, 1); in reflection_extension_factory()
1226 intern->ptr = module; in reflection_extension_factory()
2094 if (internal->module) { in ZEND_METHOD()
2095 reflection_extension_factory(return_value, internal->module->name TSRMLS_CC); in ZEND_METHOD()
2118 if (internal->module) { in ZEND_METHOD()
2119 RETURN_STRING(internal->module->name, 1); in ZEND_METHOD()
4622 if ((ce->type == ZEND_INTERNAL_CLASS) && ce->info.internal.module) { in ZEND_METHOD()
4623 reflection_extension_factory(return_value, ce->info.internal.module->name TSRMLS_CC); in ZEND_METHOD()
4642 if ((ce->type == ZEND_INTERNAL_CLASS) && ce->info.internal.module) { in ZEND_METHOD()
4643 RETURN_STRING(ce->info.internal.module->name, 1); in ZEND_METHOD()
5154 zend_module_entry *module; in ZEND_METHOD() local
5170 if (zend_hash_find(&module_registry, lcname, name_len + 1, (void **)&module) == FAILURE) { in ZEND_METHOD()
5178 ZVAL_STRING(name, module->name, 1); in ZEND_METHOD()
5180 intern->ptr = module; in ZEND_METHOD()
5191 zend_module_entry *module; in ZEND_METHOD() local
5197 GET_REFLECTION_OBJECT_PTR(module); in ZEND_METHOD()
5199 _extension_string(&str, module, "" TSRMLS_CC); in ZEND_METHOD()
5220 zend_module_entry *module; in ZEND_METHOD() local
5225 GET_REFLECTION_OBJECT_PTR(module); in ZEND_METHOD()
5228 if (module->version == NO_VERSION_YET) { in ZEND_METHOD()
5231 RETURN_STRING(module->version, 1); in ZEND_METHOD()
5241 zend_module_entry *module; in ZEND_METHOD() local
5249 GET_REFLECTION_OBJECT_PTR(module); in ZEND_METHOD()
5255 && fptr->internal_function.module == module) { in ZEND_METHOD()
5287 zend_module_entry *module; in ZEND_METHOD() local
5292 GET_REFLECTION_OBJECT_PTR(module); in ZEND_METHOD()
5295 …nd_constants) TSRMLS_CC, (apply_func_args_t) _addconstant, 2, return_value, module->module_number); in ZEND_METHOD()
5321 zend_module_entry *module; in ZEND_METHOD() local
5326 GET_REFLECTION_OBJECT_PTR(module); in ZEND_METHOD()
5329 …i_directives) TSRMLS_CC, (apply_func_args_t) _addinientry, 2, return_value, module->module_number); in ZEND_METHOD()
5337 struct _zend_module_entry *module = va_arg(args, struct _zend_module_entry*); in add_extension_class() local
5340 …ND_INTERNAL_CLASS) && (*pce)->info.internal.module && !strcasecmp((*pce)->info.internal.module->na… in add_extension_class()
5358 zend_module_entry *module; in ZEND_METHOD() local
5363 GET_REFLECTION_OBJECT_PTR(module); in ZEND_METHOD()
5366 …ts(EG(class_table) TSRMLS_CC, (apply_func_args_t) add_extension_class, 3, return_value, module, 1); in ZEND_METHOD()
5375 zend_module_entry *module; in ZEND_METHOD() local
5380 GET_REFLECTION_OBJECT_PTR(module); in ZEND_METHOD()
5383 …ts(EG(class_table) TSRMLS_CC, (apply_func_args_t) add_extension_class, 3, return_value, module, 0); in ZEND_METHOD()
5392 zend_module_entry *module; in ZEND_METHOD() local
5398 GET_REFLECTION_OBJECT_PTR(module); in ZEND_METHOD()
5402 dep = module->deps; in ZEND_METHOD()
5446 zend_module_entry *module; in ZEND_METHOD() local
5451 GET_REFLECTION_OBJECT_PTR(module); in ZEND_METHOD()
5453 php_info_print_module(module TSRMLS_CC); in ZEND_METHOD()
5462 zend_module_entry *module; in ZEND_METHOD() local
5467 GET_REFLECTION_OBJECT_PTR(module); in ZEND_METHOD()
5469 RETURN_BOOL(module->type == MODULE_PERSISTENT); in ZEND_METHOD()
5478 zend_module_entry *module; in ZEND_METHOD() local
5483 GET_REFLECTION_OBJECT_PTR(module); in ZEND_METHOD()
5485 RETURN_BOOL(module->type == MODULE_TEMPORARY); in ZEND_METHOD()