Searched defs:module_init (Results 1 - 6 of 6) sorted by relevance

/external/qemu/
H A Dmodule.h18 #define module_init(function, type) \ macro
30 #define block_init(function) module_init(function, MODULE_INIT_BLOCK)
31 #define device_init(function) module_init(function, MODULE_INIT_DEVICE)
32 #define machine_init(function) module_init(function, MODULE_INIT_MACHINE)
/external/freetype/include/freetype/
H A Dftmodapi.h153 /* module_init :: The initializing function. */
169 FT_Module_Constructor module_init; member in struct:FT_Module_Class_
/external/kernel-headers/original/linux/
H A Dinit.h152 * module_init() - driver initialization entry point
155 * module_init() will either be called during do_initcalls (if
159 #define module_init(x) __initcall(x); macro
176 #define core_initcall(fn) module_init(fn)
177 #define postcore_initcall(fn) module_init(fn)
178 #define arch_initcall(fn) module_init(fn)
179 #define subsys_initcall(fn) module_init(fn)
180 #define fs_initcall(fn) module_init(fn)
181 #define device_initcall(fn) module_init(fn)
182 #define late_initcall(fn) module_init(f
193 #define module_init macro
[all...]
H A Dmodule.h295 void *module_init; member in struct:module
/external/oprofile/module/
H A Dcompat22.h98 /* 2.2.18 introduced module_init */
101 #define module_init(x) int init_module(void) __attribute__((alias(#x))); macro
104 #define module_init(x) int init_module(void) { return x(); } macro
/external/openssl/crypto/conf/
H A Dconf_mod.c117 static int module_init(CONF_MODULE *pmod, char *name, char *value,
228 ret = module_init(md, name, value, cnf);
347 static int module_init(CONF_MODULE *pmod, char *name, char *value, function

Completed in 106 milliseconds