module_entry 270 Zend/zend_API.h ZEND_API int zend_startup_module(zend_module_entry *module_entry); module_entry 271 Zend/zend_API.h ZEND_API zend_module_entry* zend_register_internal_module(zend_module_entry *module_entry TSRMLS_DC); module_entry 106 ext/standard/dl.c zend_module_entry *module_entry; module_entry 183 ext/standard/dl.c module_entry = get_module(); module_entry 184 ext/standard/dl.c if (module_entry->zend_api != ZEND_MODULE_API_NO) { module_entry 209 ext/standard/dl.c if ((((struct pre_4_1_0_module_entry *)module_entry)->zend_api > 20000000) && module_entry 210 ext/standard/dl.c (((struct pre_4_1_0_module_entry *)module_entry)->zend_api < 20010901) module_entry 212 ext/standard/dl.c name = ((struct pre_4_1_0_module_entry *)module_entry)->name; module_entry 213 ext/standard/dl.c zend_api = ((struct pre_4_1_0_module_entry *)module_entry)->zend_api; module_entry 215 ext/standard/dl.c name = module_entry->name; module_entry 216 ext/standard/dl.c zend_api = module_entry->zend_api; module_entry 228 ext/standard/dl.c if(strcmp(module_entry->build_id, ZEND_MODULE_BUILD_ID)) { module_entry 234 ext/standard/dl.c module_entry->name, module_entry->build_id, ZEND_MODULE_BUILD_ID); module_entry 238 ext/standard/dl.c module_entry->type = type; module_entry 239 ext/standard/dl.c module_entry->module_number = zend_next_free_module(); module_entry 240 ext/standard/dl.c module_entry->handle = handle; module_entry 242 ext/standard/dl.c if ((module_entry = zend_register_module_ex(module_entry TSRMLS_CC)) == NULL) { module_entry 247 ext/standard/dl.c if ((type == MODULE_TEMPORARY || start_now) && zend_startup_module_ex(module_entry TSRMLS_CC) == FAILURE) { module_entry 252 ext/standard/dl.c if ((type == MODULE_TEMPORARY || start_now) && module_entry->request_startup_func) { module_entry 253 ext/standard/dl.c if (module_entry->request_startup_func(type, module_entry->module_number TSRMLS_CC) == FAILURE) { module_entry 254 ext/standard/dl.c php_error_docref(NULL TSRMLS_CC, error_type, "Unable to initialize module '%s'", module_entry->name);