module_entry      280 Zend/zend_API.h ZEND_API int zend_startup_module(zend_module_entry *module_entry);
module_entry      281 Zend/zend_API.h ZEND_API zend_module_entry* zend_register_internal_module(zend_module_entry *module_entry);
module_entry       94 ext/standard/dl.c 	zend_module_entry *module_entry;
module_entry      171 ext/standard/dl.c 	module_entry = get_module();
module_entry      172 ext/standard/dl.c 	if (module_entry->zend_api != ZEND_MODULE_API_NO) {
module_entry      178 ext/standard/dl.c 					module_entry->name, module_entry->zend_api, ZEND_MODULE_API_NO);
module_entry      182 ext/standard/dl.c 	if(strcmp(module_entry->build_id, ZEND_MODULE_BUILD_ID)) {
module_entry      188 ext/standard/dl.c 				module_entry->name, module_entry->build_id, ZEND_MODULE_BUILD_ID);
module_entry      192 ext/standard/dl.c 	module_entry->type = type;
module_entry      193 ext/standard/dl.c 	module_entry->module_number = zend_next_free_module();
module_entry      194 ext/standard/dl.c 	module_entry->handle = handle;
module_entry      196 ext/standard/dl.c 	if ((module_entry = zend_register_module_ex(module_entry)) == NULL) {
module_entry      201 ext/standard/dl.c 	if ((type == MODULE_TEMPORARY || start_now) && zend_startup_module_ex(module_entry) == FAILURE) {
module_entry      206 ext/standard/dl.c 	if ((type == MODULE_TEMPORARY || start_now) && module_entry->request_startup_func) {
module_entry      207 ext/standard/dl.c 		if (module_entry->request_startup_func(type, module_entry->module_number) == FAILURE) {
module_entry      208 ext/standard/dl.c 			php_error_docref(NULL, error_type, "Unable to initialize module '%s'", module_entry->name);
module_entry     1107 sapi/phpdbg/phpdbg_prompt.c 		zend_module_entry *module_entry;
module_entry     1119 sapi/phpdbg/phpdbg_prompt.c 		module_entry = get_module();
module_entry     1120 sapi/phpdbg/phpdbg_prompt.c 		*name = (char *) module_entry->name;
module_entry     1122 sapi/phpdbg/phpdbg_prompt.c 		if (strcmp(ZEND_EXTENSION_BUILD_ID, module_entry->build_id)) {
module_entry     1123 sapi/phpdbg/phpdbg_prompt.c 			phpdbg_error("dl", "type=\"wrongbuild\" module=\"%s\" buildneeded=\"%s\" buildinstalled=\"%s\"",  "%s was built with configuration %s, whereas running engine is %s", module_entry->name, module_entry->build_id, ZEND_EXTENSION_BUILD_ID);
module_entry     1128 sapi/phpdbg/phpdbg_prompt.c 		module_entry->type = MODULE_PERSISTENT;
module_entry     1129 sapi/phpdbg/phpdbg_prompt.c 		module_entry->module_number = zend_next_free_module();
module_entry     1130 sapi/phpdbg/phpdbg_prompt.c 		module_entry->handle = handle;
module_entry     1132 sapi/phpdbg/phpdbg_prompt.c 		if ((module_entry = zend_register_module_ex(module_entry)) == NULL) {
module_entry     1133 sapi/phpdbg/phpdbg_prompt.c 			phpdbg_error("dl", "type=\"registerfailure\" module=\"%s\"", "Unable to register module %s", module_entry->name);
module_entry     1138 sapi/phpdbg/phpdbg_prompt.c 		if (zend_startup_module_ex(module_entry) == FAILURE) {
module_entry     1139 sapi/phpdbg/phpdbg_prompt.c 			phpdbg_error("dl", "type=\"startupfailure\" module=\"%s\"", "Unable to startup module %s", module_entry->name);
module_entry     1144 sapi/phpdbg/phpdbg_prompt.c 		if (module_entry->request_startup_func) {
module_entry     1145 sapi/phpdbg/phpdbg_prompt.c 			if (module_entry->request_startup_func(MODULE_PERSISTENT, module_entry->module_number) == FAILURE) {
module_entry     1146 sapi/phpdbg/phpdbg_prompt.c 				phpdbg_error("dl", "type=\"initfailure\" module=\"%s\"", "Unable to initialize module %s", module_entry->name);