module_name      2465 Zend/zend_API.c ZEND_API int zend_get_module_started(const char *module_name) /* {{{ */
module_name      2469 Zend/zend_API.c 	module = zend_hash_str_find_ptr(&module_registry, module_name, strlen(module_name));
module_name      3593 Zend/zend_API.c ZEND_API const char *zend_get_module_version(const char *module_name) /* {{{ */
module_name      3596 Zend/zend_API.c 	size_t name_len = strlen(module_name);
module_name      3600 Zend/zend_API.c 	zend_str_tolower_copy(ZSTR_VAL(lname), module_name, name_len);
module_name       149 Zend/zend_API.h #define ZEND_BEGIN_MODULE_GLOBALS(module_name)		\
module_name       150 Zend/zend_API.h 	typedef struct _zend_##module_name##_globals {
module_name       151 Zend/zend_API.h #define ZEND_END_MODULE_GLOBALS(module_name)		\
module_name       152 Zend/zend_API.h 	} zend_##module_name##_globals;
module_name       156 Zend/zend_API.h #define ZEND_DECLARE_MODULE_GLOBALS(module_name)							\
module_name       157 Zend/zend_API.h 	ts_rsrc_id module_name##_globals_id;
module_name       158 Zend/zend_API.h #define ZEND_EXTERN_MODULE_GLOBALS(module_name)								\
module_name       159 Zend/zend_API.h 	extern ts_rsrc_id module_name##_globals_id;
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 	ts_allocate_id(&module_name##_globals_id, sizeof(zend_##module_name##_globals), (ts_allocate_ctor) globals_ctor, (ts_allocate_dtor) globals_dtor);
module_name       162 Zend/zend_API.h #define ZEND_MODULE_GLOBALS_ACCESSOR(module_name, v) ZEND_TSRMG(module_name##_globals_id, zend_##module_name##_globals *, v)
module_name       163 Zend/zend_API.h #define ZEND_MODULE_GLOBALS_BULK(module_name) TSRMG_BULK(module_name##_globals_id, zend_##module_name##_globals *)
module_name       167 Zend/zend_API.h #define ZEND_DECLARE_MODULE_GLOBALS(module_name)							\
module_name       168 Zend/zend_API.h 	zend_##module_name##_globals module_name##_globals;
module_name       169 Zend/zend_API.h #define ZEND_EXTERN_MODULE_GLOBALS(module_name)								\
module_name       170 Zend/zend_API.h 	extern zend_##module_name##_globals module_name##_globals;
module_name       171 Zend/zend_API.h #define ZEND_INIT_MODULE_GLOBALS(module_name, globals_ctor, globals_dtor)	\
module_name       172 Zend/zend_API.h 	globals_ctor(&module_name##_globals);
module_name       173 Zend/zend_API.h #define ZEND_MODULE_GLOBALS_ACCESSOR(module_name, v) (module_name##_globals.v)
module_name       174 Zend/zend_API.h #define ZEND_MODULE_GLOBALS_BULK(module_name) (&module_name##_globals)
module_name       316 Zend/zend_API.h ZEND_API const char *zend_get_module_version(const char *module_name);
module_name       317 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       120 ext/com_dotnet/com_com.c 	moniker = php_com_string_to_olestring(module_name, module_name_len, obj->code_page);
module_name       227 ext/com_dotnet/com_com.c 		spprintf(&msg, 0, "Failed to create COM object `%s': %s", module_name, werr);
module_name       288 ext/com_dotnet/com_com.c 	char *module_name;
module_name       298 ext/com_dotnet/com_com.c 				&module_name, &module_name_len, &code_page)) {
module_name       303 ext/com_dotnet/com_com.c 	module = php_com_string_to_olestring(module_name, module_name_len, (int)code_page);
module_name       435 ext/oci8/oci8.c 	ZEND_ARG_INFO(0, module_name)