Lines Matching refs:module

316 static void _extension_string(smart_str *str, const zend_module_entry *module, const char *indent);
343 if (ce->type == ZEND_INTERNAL_CLASS && ce->info.internal.module) { in _class_string()
344 smart_str_append_printf(str, ":%s", ce->info.internal.module->name); in _class_string()
831 if (fptr->type == ZEND_INTERNAL_FUNCTION && ((zend_internal_function*)fptr)->module) { in _function_string()
832 smart_str_append_printf(str, ":%s", ((zend_internal_function*)fptr)->module->name); in _function_string()
1027 …tring *key, smart_str *str, const char *indent, const zend_module_entry *module, int *num_classes)… in _extension_class_string() argument
1029 …e == ZEND_INTERNAL_CLASS && ce->info.internal.module && !strcasecmp(ce->info.internal.module->name… in _extension_class_string()
1040 static void _extension_string(smart_str *str, const zend_module_entry *module, const char *indent) … in _extension_string() argument
1043 if (module->type == MODULE_PERSISTENT) { in _extension_string()
1046 if (module->type == MODULE_TEMPORARY) { in _extension_string()
1050 module->module_number, module->name, in _extension_string()
1051 (module->version == NO_VERSION_YET) ? "<no_version>" : module->version); in _extension_string()
1053 if (module->deps) { in _extension_string()
1054 const zend_module_dep* dep = module->deps; in _extension_string()
1092 _extension_ini_string(ini_entry, &str_ini, indent, module->module_number); in _extension_string()
1108 if (ZEND_CONSTANT_MODULE_NUMBER(constant) == module->module_number) { in _extension_string()
1128 && fptr->internal_function.module == module) { in _extension_string()
1149 _extension_class_string(ce, key, &str_classes, ZSTR_VAL(sub_indent), module, &num_classes); in _extension_string()
1336 struct _zend_module_entry *module; in reflection_extension_factory() local
1340 module = zend_hash_find_ptr(&module_registry, lcname); in reflection_extension_factory()
1342 if (!module) { in reflection_extension_factory()
1348 intern->ptr = module; in reflection_extension_factory()
1351 ZVAL_STRINGL(reflection_prop_name(object), module->name, name_len); in reflection_extension_factory()
2236 if (internal->module) { in ZEND_METHOD()
2237 reflection_extension_factory(return_value, internal->module->name); in ZEND_METHOD()
2262 if (internal->module) { in ZEND_METHOD()
2263 RETURN_STRING(internal->module->name); in ZEND_METHOD()
5699 if ((ce->type == ZEND_INTERNAL_CLASS) && ce->info.internal.module) { in ZEND_METHOD()
5700 reflection_extension_factory(return_value, ce->info.internal.module->name); in ZEND_METHOD()
5717 if ((ce->type == ZEND_INTERNAL_CLASS) && ce->info.internal.module) { in ZEND_METHOD()
5718 RETURN_STRING(ce->info.internal.module->name); in ZEND_METHOD()
6676 zend_module_entry *module; in ZEND_METHOD() local
6689 if ((module = zend_hash_str_find_ptr(&module_registry, lcname, name_len)) == NULL) { in ZEND_METHOD()
6698 ZVAL_STRING(prop_name, module->name); in ZEND_METHOD()
6699 intern->ptr = module; in ZEND_METHOD()
6709 zend_module_entry *module; in ZEND_METHOD() local
6715 GET_REFLECTION_OBJECT_PTR(module); in ZEND_METHOD()
6716 _extension_string(&str, module, ""); in ZEND_METHOD()
6725 zend_module_entry *module; in ZEND_METHOD() local
6731 GET_REFLECTION_OBJECT_PTR(module); in ZEND_METHOD()
6732 RETURN_STRING(module->name); in ZEND_METHOD()
6740 zend_module_entry *module; in ZEND_METHOD() local
6745 GET_REFLECTION_OBJECT_PTR(module); in ZEND_METHOD()
6748 if (module->version == NO_VERSION_YET) { in ZEND_METHOD()
6751 RETURN_STRING(module->version); in ZEND_METHOD()
6760 zend_module_entry *module; in ZEND_METHOD() local
6767 GET_REFLECTION_OBJECT_PTR(module); in ZEND_METHOD()
6772 && fptr->internal_function.module == module) { in ZEND_METHOD()
6784 zend_module_entry *module; in ZEND_METHOD() local
6790 GET_REFLECTION_OBJECT_PTR(module); in ZEND_METHOD()
6794 if (module->module_number == ZEND_CONSTANT_MODULE_NUMBER(constant)) { in ZEND_METHOD()
6822 zend_module_entry *module; in ZEND_METHOD() local
6828 GET_REFLECTION_OBJECT_PTR(module); in ZEND_METHOD()
6832 _addinientry(ini_entry, return_value, module->module_number); in ZEND_METHOD()
6838 …class_entry *ce, zend_string *key, zval *class_array, zend_module_entry *module, bool add_reflecti… in add_extension_class() argument
6840 …e == ZEND_INTERNAL_CLASS && ce->info.internal.module && !strcasecmp(ce->info.internal.module->name… in add_extension_class()
6865 zend_module_entry *module; in ZEND_METHOD() local
6872 GET_REFLECTION_OBJECT_PTR(module); in ZEND_METHOD()
6876 add_extension_class(ce, key, return_value, module, 1); in ZEND_METHOD()
6885 zend_module_entry *module; in ZEND_METHOD() local
6892 GET_REFLECTION_OBJECT_PTR(module); in ZEND_METHOD()
6896 add_extension_class(ce, key, return_value, module, 0); in ZEND_METHOD()
6905 zend_module_entry *module; in ZEND_METHOD() local
6911 GET_REFLECTION_OBJECT_PTR(module); in ZEND_METHOD()
6913 dep = module->deps; in ZEND_METHOD()
6970 zend_module_entry *module; in ZEND_METHOD() local
6975 GET_REFLECTION_OBJECT_PTR(module); in ZEND_METHOD()
6977 php_info_print_module(module); in ZEND_METHOD()
6985 zend_module_entry *module; in ZEND_METHOD() local
6990 GET_REFLECTION_OBJECT_PTR(module); in ZEND_METHOD()
6992 RETURN_BOOL(module->type == MODULE_PERSISTENT); in ZEND_METHOD()
7000 zend_module_entry *module; in ZEND_METHOD() local
7005 GET_REFLECTION_OBJECT_PTR(module); in ZEND_METHOD()
7007 RETURN_BOOL(module->type == MODULE_TEMPORARY); in ZEND_METHOD()