Lines Matching refs:module_entry

106 	zend_module_entry *module_entry;  in php_load_extension()  local
183 module_entry = get_module(); in php_load_extension()
184 if (module_entry->zend_api != ZEND_MODULE_API_NO) { in php_load_extension()
209 if ((((struct pre_4_1_0_module_entry *)module_entry)->zend_api > 20000000) && in php_load_extension()
210 (((struct pre_4_1_0_module_entry *)module_entry)->zend_api < 20010901) in php_load_extension()
212 name = ((struct pre_4_1_0_module_entry *)module_entry)->name; in php_load_extension()
213 zend_api = ((struct pre_4_1_0_module_entry *)module_entry)->zend_api; in php_load_extension()
215 name = module_entry->name; in php_load_extension()
216 zend_api = module_entry->zend_api; in php_load_extension()
228 if(strcmp(module_entry->build_id, ZEND_MODULE_BUILD_ID)) { in php_load_extension()
234 module_entry->name, module_entry->build_id, ZEND_MODULE_BUILD_ID); in php_load_extension()
238 module_entry->type = type; in php_load_extension()
239 module_entry->module_number = zend_next_free_module(); in php_load_extension()
240 module_entry->handle = handle; in php_load_extension()
242 if ((module_entry = zend_register_module_ex(module_entry TSRMLS_CC)) == NULL) { in php_load_extension()
247 …if ((type == MODULE_TEMPORARY || start_now) && zend_startup_module_ex(module_entry TSRMLS_CC) == F… in php_load_extension()
252 if ((type == MODULE_TEMPORARY || start_now) && module_entry->request_startup_func) { in php_load_extension()
253 if (module_entry->request_startup_func(type, module_entry->module_number TSRMLS_CC) == FAILURE) { in php_load_extension()
254 …php_error_docref(NULL TSRMLS_CC, error_type, "Unable to initialize module '%s'", module_entry->nam… in php_load_extension()