module_name      2338 Zend/zend_API.c ZEND_API int zend_get_module_started(const char *module_name) /* {{{ */
module_name      2342 Zend/zend_API.c 	return (zend_hash_find(&module_registry, module_name, strlen(module_name)+1, (void**)&module) == SUCCESS && module->module_started) ? SUCCESS : FAILURE;
module_name      3409 Zend/zend_API.c ZEND_API const char *zend_get_module_version(const char *module_name) /* {{{ */
module_name      3412 Zend/zend_API.c 	int name_len = strlen(module_name);
module_name      3415 Zend/zend_API.c 	lname = zend_str_tolower_dup(module_name, name_len);
module_name       140 Zend/zend_API.h #define ZEND_BEGIN_MODULE_GLOBALS(module_name)		\
module_name       141 Zend/zend_API.h 	typedef struct _zend_##module_name##_globals {
module_name       142 Zend/zend_API.h #define ZEND_END_MODULE_GLOBALS(module_name)		\
module_name       143 Zend/zend_API.h 	} zend_##module_name##_globals;
module_name       147 Zend/zend_API.h #define ZEND_DECLARE_MODULE_GLOBALS(module_name)							\
module_name       148 Zend/zend_API.h 	ts_rsrc_id module_name##_globals_id;
module_name       149 Zend/zend_API.h #define ZEND_EXTERN_MODULE_GLOBALS(module_name)								\
module_name       150 Zend/zend_API.h 	extern ts_rsrc_id module_name##_globals_id;
module_name       151 Zend/zend_API.h #define ZEND_INIT_MODULE_GLOBALS(module_name, globals_ctor, globals_dtor)	\
module_name       152 Zend/zend_API.h 	ts_allocate_id(&module_name##_globals_id, sizeof(zend_##module_name##_globals), (ts_allocate_ctor) globals_ctor, (ts_allocate_dtor) globals_dtor);
module_name       156 Zend/zend_API.h #define ZEND_DECLARE_MODULE_GLOBALS(module_name)							\
module_name       157 Zend/zend_API.h 	zend_##module_name##_globals module_name##_globals;
module_name       158 Zend/zend_API.h #define ZEND_EXTERN_MODULE_GLOBALS(module_name)								\
module_name       159 Zend/zend_API.h 	extern zend_##module_name##_globals module_name##_globals;
module_name       160 Zend/zend_API.h #define ZEND_INIT_MODULE_GLOBALS(module_name, globals_ctor, globals_dtor)	\
module_name       161 Zend/zend_API.h 	globals_ctor(&module_name##_globals);
module_name       306 Zend/zend_API.h ZEND_API const char *zend_get_module_version(const char *module_name);
module_name       307 Zend/zend_API.h ZEND_API int zend_get_module_started(const char *module_name);
module_name        56 Zend/zend_modules.h # define ZEND_MODULE_GLOBALS(module_name) sizeof(zend_##module_name##_globals), &module_name##_globals_id
module_name        58 Zend/zend_modules.h # define ZEND_MODULE_GLOBALS(module_name) sizeof(zend_##module_name##_globals), &module_name##_globals
module_name        38 ext/com_dotnet/com_com.c 	char *module_name, *typelib_name = NULL, *server_name = NULL;
module_name        61 ext/com_dotnet/com_com.c 			&module_name, &module_name_len, &server_name, &server_name_len,
module_name        65 ext/com_dotnet/com_com.c 			&module_name, &module_name_len, &server_params, &obj->code_page,
module_name       121 ext/com_dotnet/com_com.c 	moniker = php_com_string_to_olestring(module_name, module_name_len, obj->code_page TSRMLS_CC);
module_name       228 ext/com_dotnet/com_com.c 		spprintf(&msg, 0, "Failed to create COM object `%s': %s", module_name, werr);
module_name       290 ext/com_dotnet/com_com.c 	char *module_name;
module_name       300 ext/com_dotnet/com_com.c 				&module_name, &module_name_len, &code_page)) {
module_name       305 ext/com_dotnet/com_com.c 	module = php_com_string_to_olestring(module_name, module_name_len, code_page TSRMLS_CC);
module_name       441 ext/oci8/oci8.c 	ZEND_ARG_INFO(0, module_name)