Home
last modified time | relevance | path

Searched refs:module (Results 1 – 25 of 765) sorted by relevance

12345678910>>...31

/external/bluetooth/glib/gobject/
Dgtypemodule.c108 GTypeModule *module = G_TYPE_MODULE (object); in g_type_module_dispose() local
110 if (module->type_infos || module->interface_infos) in g_type_module_dispose()
123 GTypeModule *module = G_TYPE_MODULE (object); in g_type_module_finalize() local
125 g_free (module->name); in g_type_module_finalize()
190 g_type_module_set_name (GTypeModule *module, in g_type_module_set_name() argument
193 g_return_if_fail (G_IS_TYPE_MODULE (module)); in g_type_module_set_name()
195 g_free (module->name); in g_type_module_set_name()
196 module->name = g_strdup (name); in g_type_module_set_name()
200 g_type_module_find_type_info (GTypeModule *module, in g_type_module_find_type_info() argument
203 GSList *tmp_list = module->type_infos; in g_type_module_find_type_info()
[all …]
Dgtypemodule.h35 #define G_TYPE_MODULE(module) (G_TYPE_CHECK_INSTANCE_CAST ((module), G_TYPE_TYPE_MODULE, … argument
37 #define G_IS_TYPE_MODULE(module) (G_TYPE_CHECK_INSTANCE_TYPE ((module), G_TYPE_TYPE_MODULE)) argument
39 #define G_TYPE_MODULE_GET_CLASS(module) (G_TYPE_INSTANCE_GET_CLASS ((module), G_TYPE_TYPE_MODULE, G… argument
75 gboolean (* load) (GTypeModule *module);
76 void (* unload) (GTypeModule *module);
220 gboolean g_type_module_use (GTypeModule *module);
221 void g_type_module_unuse (GTypeModule *module);
222 void g_type_module_set_name (GTypeModule *module,
224 GType g_type_module_register_type (GTypeModule *module,
229 void g_type_module_add_interface (GTypeModule *module,
[all …]
/external/kernel-headers/original/linux/
Dmodule.h46 struct module;
50 ssize_t (*show)(struct module_attribute *, struct module *, char *);
51 ssize_t (*store)(struct module_attribute *, struct module *,
53 void (*setup)(struct module *, const char *);
54 int (*test)(struct module *);
55 void (*free)(struct module *);
61 struct module *mod;
86 extern struct module __this_module;
90 #define THIS_MODULE ((struct module *)0)
246 struct module struct
[all …]
/external/bluetooth/glib/gmodule/
Dgmodule.c103 GModule *module; in g_module_find_by_handle() local
109 for (module = modules; module; module = module->next) in g_module_find_by_handle()
110 if (handle == module->handle) in g_module_find_by_handle()
112 retval = module; in g_module_find_by_handle()
122 GModule *module; in g_module_find_by_name() local
125 for (module = modules; module; module = module->next) in g_module_find_by_name()
126 if (strcmp (name, module->file_name) == 0) in g_module_find_by_name()
128 retval = module; in g_module_find_by_name()
335 GModule *module; in g_module_open() local
376 module = g_module_find_by_name (file_name); in g_module_open()
[all …]
Dgmodule.h52 typedef const gchar* (*GModuleCheckInit) (GModule *module);
53 typedef void (*GModuleUnload) (GModule *module);
68 gboolean g_module_close (GModule *module);
71 void g_module_make_resident (GModule *module);
77 gboolean g_module_symbol (GModule *module,
82 G_CONST_RETURN gchar* g_module_name (GModule *module);
/external/freetype/src/pshinter/
Dpshmod.c41 ps_hinter_done( PS_Hinter_Module module ) in ps_hinter_done() argument
43 module->t1_funcs.hints = NULL; in ps_hinter_done()
44 module->t2_funcs.hints = NULL; in ps_hinter_done()
46 ps_hints_done( &module->ps_hints ); in ps_hinter_done()
52 ps_hinter_init( PS_Hinter_Module module ) in ps_hinter_init() argument
54 FT_Memory memory = module->root.memory; in ps_hinter_init()
55 void* ph = &module->ps_hints; in ps_hinter_init()
58 ps_hints_init( &module->ps_hints, memory ); in ps_hinter_init()
60 psh_globals_funcs_init( &module->globals_funcs ); in ps_hinter_init()
62 t1_hints_funcs_init( &module->t1_funcs ); in ps_hinter_init()
[all …]
/external/libxml2/
Dxmlmodule.c44 xmlModuleErrMemory(xmlModulePtr module, const char *extra) in xmlModuleErrMemory() argument
48 if (module != NULL) { in xmlModuleErrMemory()
49 name = (const char *) module->name; in xmlModuleErrMemory()
71 xmlModulePtr module; in xmlModuleOpen() local
73 module = (xmlModulePtr) xmlMalloc(sizeof(xmlModule)); in xmlModuleOpen()
74 if (module == NULL) { in xmlModuleOpen()
79 memset(module, 0, sizeof(xmlModule)); in xmlModuleOpen()
81 module->handle = xmlModulePlatformOpen(name); in xmlModuleOpen()
83 if (module->handle == NULL) { in xmlModuleOpen()
84 xmlFree(module); in xmlModuleOpen()
[all …]
/external/bluetooth/glib/gio/
Dgiomodule.c99 void (* load) (GIOModule *module);
100 void (* unload) (GIOModule *module);
128 g_io_module_init (GIOModule *module) in g_io_module_init() argument
135 GIOModule *module = G_IO_MODULE (object); in g_io_module_finalize() local
137 g_free (module->filename); in g_io_module_finalize()
145 GIOModule *module = G_IO_MODULE (gmodule); in g_io_module_load_module() local
147 if (!module->filename) in g_io_module_load_module()
153 module->library = g_module_open (module->filename, G_MODULE_BIND_LAZY | G_MODULE_BIND_LOCAL); in g_io_module_load_module()
155 if (!module->library) in g_io_module_load_module()
162 if (! g_module_symbol (module->library, in g_io_module_load_module()
[all …]
/external/openssl/crypto/objects/
Dobjects.pl35 $module = $1."-";
36 $module =~ s/\./_/g;
37 $module =~ s/-/_/g;
40 { $module = ""; }
45 $Cname = $module.$1;
75 if ($Cname ne "" && defined($ln{$module.$Cname}))
76 ….txt:$o:There's already an object with long name ",$ln{$module.$Cname}," on line ",$order{$module.…
82 if ($Cname ne "" && defined($sn{$module.$Cname}))
83 …txt:$o:There's already an object with short name ",$sn{$module.$Cname}," on line ",$order{$module.…
91 if ($Cname ne "" && defined($ln{$module.$Cname}))
[all …]
/external/bluetooth/glib/tests/gobject/
Dtestmodule.c24 static gboolean test_module_load (GTypeModule *module);
25 static void test_module_unload (GTypeModule *module);
41 test_module_load (GTypeModule *module) in DEFINE_TYPE()
43 TestModule *test_module = TEST_MODULE (module); in DEFINE_TYPE()
45 test_module->register_func (module); in DEFINE_TYPE()
51 test_module_unload (GTypeModule *module) in test_module_unload() argument
59 GTypeModule *module = G_TYPE_MODULE (test_module); in test_module_new() local
64 g_type_module_use (module); in test_module_new()
65 g_type_module_unuse (module); in test_module_new()
67 return G_TYPE_MODULE (module); in test_module_new()
Dtestmodule.h32 #define TEST_MODULE(module) (G_TYPE_CHECK_INSTANCE_CAST ((module), TEST_TYPE_MODULE, Test… argument
34 #define TEST_IS_MODULE(module) (G_TYPE_CHECK_INSTANCE_TYPE ((module), TEST_TYPE_MODULE)) argument
36 #define TEST_MODULE_GET_CLASS(module) (G_TYPE_INSTANCE_GET_CLASS ((module), TEST_TYPE_MODULE, TestM… argument
38 typedef void (*TestModuleRegisterFunc) (GTypeModule *module);
Ddefaultiface.c118 test_dynamic_iface_register (GTypeModule *module) in test_dynamic_iface_register() argument
129 test_dynamic_iface_type = g_type_module_register_type (module, G_TYPE_INTERFACE, in test_dynamic_iface_register()
134 module_register (GTypeModule *module) in module_register() argument
136 test_dynamic_iface_register (module); in module_register()
142 GTypeModule *module; in test_dynamic_iface() local
145 module = test_module_new (module_register); in test_dynamic_iface()
/external/freetype/src/autofit/
Dafmodule.c43 af_autofitter_init( FT_Autofitter module ) in af_autofitter_init() argument
45 return af_loader_init( module->loader, module->root.library->memory ); in af_autofitter_init()
50 af_autofitter_done( FT_Autofitter module ) in af_autofitter_done() argument
52 af_loader_done( module->loader ); in af_autofitter_done()
57 af_autofitter_load_glyph( FT_Autofitter module, in af_autofitter_load_glyph() argument
65 return af_loader_load_glyph( module->loader, slot->face, in af_autofitter_load_glyph()
/external/clearsilver/perl/
DREADME4 The README is used to introduce the module and provide instructions on
5 how to install the module, any machine dependencies it may have (for
7 that should be provided before the module is installed.
10 README file from a module distribution so that people browsing the
13 decide whether fixes for the module are worth downloading.
17 This Perl module is supposed to be put under ClearSilver's
20 To install this module type the following:
30 This module requires these other modules and libraries:
36 This Perl module can be distributed under GPL version 2, or
/external/chromium/base/
Dpe_image_unittest.cc26 LPCSTR module, in ImportsCallback() argument
60 LPCSTR module, in ImportChunksCallback() argument
72 LPCSTR module, in DelayImportChunksCallback() argument
152 HMODULE module = LoadLibrary(L"advapi32.dll"); in TEST() local
153 ASSERT_TRUE(NULL != module); in TEST()
155 PEImage pe(module); in TEST()
193 FreeLibrary(module); in TEST()
198 HMODULE module = LoadLibrary(L"advapi32.dll"); in TEST() local
199 ASSERT_TRUE(NULL != module); in TEST()
201 PEImage pe(module); in TEST()
[all …]
Dpe_image.h43 typedef bool (*EnumImportChunksFunction)(const PEImage &image, LPCSTR module,
51 typedef bool (*EnumImportsFunction)(const PEImage &image, LPCSTR module,
61 LPCSTR module,
74 explicit PEImage(HMODULE module) : module_(module) {} in PEImage() argument
75 explicit PEImage(const void* module) { in PEImage() argument
76 module_ = reinterpret_cast<HMODULE>(const_cast<void*>(module)); in PEImage()
80 HMODULE module() const;
83 void set_module(HMODULE module);
243 inline HMODULE PEImage::module() const { in module() function
Dresource_util.cc9 bool GetDataResourceFromModule(HMODULE module, int resource_id, in GetDataResourceFromModule() argument
11 if (!module) in GetDataResourceFromModule()
19 HRSRC hres_info = FindResource(module, MAKEINTRESOURCE(resource_id), in GetDataResourceFromModule()
24 DWORD data_size = SizeofResource(module, hres_info); in GetDataResourceFromModule()
25 HGLOBAL hres = LoadResource(module, hres_info); in GetDataResourceFromModule()
/external/apache-http/src/org/apache/http/util/
DVersionInfo.java96 protected VersionInfo(String pckg, String module, in VersionInfo() argument
104 infoModule = (module != null) ? module : UNAVAILABLE; in VersionInfo()
288 String module = null; in fromMap() local
293 module = (String) info.get(PROPERTY_MODULE); in fromMap()
294 if ((module != null) && (module.length() < 1)) in fromMap()
295 module = null; in fromMap()
314 return new VersionInfo(pckg, module, release, timestamp, clsldrstr); in fromMap()
/external/freetype/src/base/
Dftobjs.c3746 ft_add_renderer( FT_Module module ) in ft_add_renderer() argument
3748 FT_Library library = module->library; in ft_add_renderer()
3758 FT_Renderer render = FT_RENDERER( module ); in ft_add_renderer()
3759 FT_Renderer_Class* clazz = (FT_Renderer_Class*)module->clazz; in ft_add_renderer()
3778 node->data = module; in ft_add_renderer()
3794 ft_remove_renderer( FT_Module module ) in ft_remove_renderer() argument
3796 FT_Library library = module->library; in ft_remove_renderer()
3801 node = FT_List_Find( &library->renderers, module ); in ft_remove_renderer()
3804 FT_Renderer render = FT_RENDERER( module ); in ft_remove_renderer()
3987 Destroy_Module( FT_Module module ) in Destroy_Module() argument
[all …]
/external/sonivox/arm-wt-22k/host_src/
Deas_config.c423 EAS_VOID_PTR EAS_CMEnumModules (EAS_INT module) in EAS_CMEnumModules() argument
426 if (module >= (EAS_INT) NUM_PARSER_MODULES) in EAS_CMEnumModules()
428 return parserModules[module]; in EAS_CMEnumModules()
546 EAS_VOID_PTR EAS_CMEnumFXModules (EAS_INT module) in EAS_CMEnumFXModules() argument
549 if (module >= NUM_EFFECTS_MODULES) in EAS_CMEnumFXModules()
551 return effectsModules[module]; in EAS_CMEnumFXModules()
589 EAS_VOID_PTR EAS_CMEnumOptModules (EAS_INT module) in EAS_CMEnumOptModules() argument
593 if (module >= NUM_OPTIONAL_MODULES) in EAS_CMEnumOptModules()
595 return optionalModules[module]; in EAS_CMEnumOptModules()
/external/sonivox/arm-hybrid-22k/host_src/
Deas_config.c423 EAS_VOID_PTR EAS_CMEnumModules (EAS_INT module) in EAS_CMEnumModules() argument
426 if (module >= (EAS_INT) NUM_PARSER_MODULES) in EAS_CMEnumModules()
428 return parserModules[module]; in EAS_CMEnumModules()
546 EAS_VOID_PTR EAS_CMEnumFXModules (EAS_INT module) in EAS_CMEnumFXModules() argument
549 if (module >= NUM_EFFECTS_MODULES) in EAS_CMEnumFXModules()
551 return effectsModules[module]; in EAS_CMEnumFXModules()
589 EAS_VOID_PTR EAS_CMEnumOptModules (EAS_INT module) in EAS_CMEnumOptModules() argument
593 if (module >= NUM_OPTIONAL_MODULES) in EAS_CMEnumOptModules()
595 return optionalModules[module]; in EAS_CMEnumOptModules()
/external/sonivox/arm-fm-22k/host_src/
Deas_config.c423 EAS_VOID_PTR EAS_CMEnumModules (EAS_INT module) in EAS_CMEnumModules() argument
426 if (module >= (EAS_INT) NUM_PARSER_MODULES) in EAS_CMEnumModules()
428 return parserModules[module]; in EAS_CMEnumModules()
546 EAS_VOID_PTR EAS_CMEnumFXModules (EAS_INT module) in EAS_CMEnumFXModules() argument
549 if (module >= NUM_EFFECTS_MODULES) in EAS_CMEnumFXModules()
551 return effectsModules[module]; in EAS_CMEnumFXModules()
589 EAS_VOID_PTR EAS_CMEnumOptModules (EAS_INT module) in EAS_CMEnumOptModules() argument
593 if (module >= NUM_OPTIONAL_MODULES) in EAS_CMEnumOptModules()
595 return optionalModules[module]; in EAS_CMEnumOptModules()
/external/quake/quake/src/WinQuake/
DWinQuake.ncb2module/D:\Work\quake source\WinQuake\gas2masm\gas2masm.c�/ncb/module/D:\Work\quake source\WinQuake…
/external/bluetooth/glib/gio/fam/
Dfam-module.c32 g_io_module_load (GIOModule *module) in g_io_module_load() argument
34 g_fam_file_monitor_register (module); in g_io_module_load()
35 g_fam_directory_monitor_register (module); in g_io_module_load()
39 g_io_module_unload (GIOModule *module) in g_io_module_unload() argument
/external/kernel-headers/original/asm-x86/
Dalternative_32.h20 struct module;
22 extern void alternatives_smp_module_add(struct module *mod, char *name,
25 extern void alternatives_smp_module_del(struct module *mod);
28 static inline void alternatives_smp_module_add(struct module *mod, char *name, in alternatives_smp_module_add()
31 static inline void alternatives_smp_module_del(struct module *mod) {} in alternatives_smp_module_del()

12345678910>>...31