Lines Matching defs:module

129 #define ZEND_MODULE_STARTUP_N(module)       zm_startup_##module  argument
130 #define ZEND_MODULE_SHUTDOWN_N(module) zm_shutdown_##module argument
131 #define ZEND_MODULE_ACTIVATE_N(module) zm_activate_##module argument
132 #define ZEND_MODULE_DEACTIVATE_N(module) zm_deactivate_##module argument
133 #define ZEND_MODULE_POST_ZEND_DEACTIVATE_N(module) zm_post_zend_deactivate_##module argument
134 #define ZEND_MODULE_INFO_N(module) zm_info_##module argument
135 #define ZEND_MODULE_GLOBALS_CTOR_N(module) zm_globals_ctor_##module argument
136 #define ZEND_MODULE_GLOBALS_DTOR_N(module) zm_globals_dtor_##module argument
139 #define ZEND_MODULE_STARTUP_D(module) int ZEND_MODULE_STARTUP_N(module)(INIT_FUNC_ARGS) argument
140 #define ZEND_MODULE_SHUTDOWN_D(module) int ZEND_MODULE_SHUTDOWN_N(module)(SHUTDOWN_FUNC_ARGS) argument
141 #define ZEND_MODULE_ACTIVATE_D(module) int ZEND_MODULE_ACTIVATE_N(module)(INIT_FUNC_ARGS) argument
142 #define ZEND_MODULE_DEACTIVATE_D(module) int ZEND_MODULE_DEACTIVATE_N(module)(SHUTDOWN_FUNC_ARGS) argument
143 #define ZEND_MODULE_POST_ZEND_DEACTIVATE_D(module) int ZEND_MODULE_POST_ZEND_DEACTIVATE_N(module)(v… argument
144 #define ZEND_MODULE_INFO_D(module) ZEND_COLD void ZEND_MODULE_INFO_N(module)(ZEND_MODULE_INFO_FUN… argument
145 #define ZEND_MODULE_GLOBALS_CTOR_D(module) void ZEND_MODULE_GLOBALS_CTOR_N(module)(zend_##module##… argument
146 #define ZEND_MODULE_GLOBALS_DTOR_D(module) void ZEND_MODULE_GLOBALS_DTOR_N(module)(zend_##module##… argument
667 #define ZEND_GINIT(module) ((void (*)(void*))(ZEND_MODULE_GLOBALS_CTOR_N(module))) argument
668 #define ZEND_GSHUTDOWN(module) ((void (*)(void*))(ZEND_MODULE_GLOBALS_DTOR_N(module))) argument