/external/bluetooth/glib/gobject/ |
D | gtypemodule.c | 108 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 …]
|
D | gtypemodule.h | 35 #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/bluetooth/glib/gmodule/ |
D | gmodule.c | 103 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 …]
|
D | gmodule.h | 52 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/ |
D | pshmod.c | 40 ps_hinter_done( PS_Hinter_Module module ) in ps_hinter_done() argument 42 module->t1_funcs.hints = NULL; in ps_hinter_done() 43 module->t2_funcs.hints = NULL; in ps_hinter_done() 45 ps_hints_done( &module->ps_hints ); in ps_hinter_done() 51 ps_hinter_init( PS_Hinter_Module module ) in ps_hinter_init() argument 53 FT_Memory memory = module->root.memory; in ps_hinter_init() 54 void* ph = &module->ps_hints; in ps_hinter_init() 57 ps_hints_init( &module->ps_hints, memory ); in ps_hinter_init() 59 psh_globals_funcs_init( &module->globals_funcs ); in ps_hinter_init() 61 t1_hints_funcs_init( &module->t1_funcs ); in ps_hinter_init() [all …]
|
/external/libxml2/ |
D | xmlmodule.c | 44 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/ |
D | giomodule.c | 99 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/bluetooth/glib/tests/gobject/ |
D | testmodule.c | 24 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()
|
D | testmodule.h | 32 #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);
|
D | defaultiface.c | 118 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/openssl/crypto/objects/ |
D | objects.pl | 33 $module = $1."-"; 34 $module =~ s/\./_/g; 35 $module =~ s/-/_/g; 38 { $module = ""; } 43 $Cname = $module.$1; 73 if ($Cname ne "" && defined($ln{$module.$Cname})) 74 ….txt:$o:There's already an object with long name ",$ln{$module.$Cname}," on line ",$order{$module.… 80 if ($Cname ne "" && defined($sn{$module.$Cname})) 81 …txt:$o:There's already an object with short name ",$sn{$module.$Cname}," on line ",$order{$module.… 89 if ($Cname ne "" && defined($ln{$module.$Cname})) [all …]
|
/external/opencore/codecs_v2/audio/mp3/dec/src/ |
D | pvmp3_getbits.cpp | 129 Elem = *(ptBitStream->pBuffer + module(offset , BUFSIZE)); in getNbits() 130 Elem1 = *(ptBitStream->pBuffer + module(offset + 1, BUFSIZE)); in getNbits() 131 Elem2 = *(ptBitStream->pBuffer + module(offset + 2, BUFSIZE)); in getNbits() 132 Elem3 = *(ptBitStream->pBuffer + module(offset + 3, BUFSIZE)); in getNbits() 141 bitIndex = module(ptBitStream->usedBits, INBUF_BIT_WIDTH); in getNbits() 170 Elem = *(ptBitStream->pBuffer + module(offset , BUFSIZE)); in getUpTo9bits() 171 Elem1 = *(ptBitStream->pBuffer + module(offset + 1, BUFSIZE)); in getUpTo9bits() 178 bitIndex = module(ptBitStream->usedBits, INBUF_BIT_WIDTH); in getUpTo9bits() 207 Elem = *(ptBitStream->pBuffer + module(offset , BUFSIZE)); in getUpTo17bits() 208 Elem1 = *(ptBitStream->pBuffer + module(offset + 1, BUFSIZE)); in getUpTo17bits() [all …]
|
/external/freetype/src/autofit/ |
D | afmodule.c | 42 af_autofitter_init( FT_Autofitter module ) in af_autofitter_init() argument 44 return af_loader_init( module->loader, module->root.library->memory ); in af_autofitter_init() 49 af_autofitter_done( FT_Autofitter module ) in af_autofitter_done() argument 51 af_loader_done( module->loader ); in af_autofitter_done() 56 af_autofitter_load_glyph( FT_Autofitter module, in af_autofitter_load_glyph() argument 64 return af_loader_load_glyph( module->loader, slot->face, in af_autofitter_load_glyph()
|
/external/freetype/include/freetype/internal/ |
D | ftserv.h | 71 FT_Module module = FT_MODULE( FT_FACE( face )->driver ); \ 76 if ( module->clazz->get_interface ) \ 77 _tmp_ = module->clazz->get_interface( module, FT_SERVICE_ID_ ## id ); \ 85 FT_Module module = FT_MODULE( FT_FACE( face )->driver ); \ 88 if ( module->clazz->get_interface ) \ 89 _tmp_ = module->clazz->get_interface( module, FT_SERVICE_ID_ ## id ); \ 121 FT_Module module = FT_MODULE( FT_FACE( face )->driver ); \ 126 _tmp_ = ft_module_get_service( module, FT_SERVICE_ID_ ## id ); \ 134 FT_Module module = FT_MODULE( FT_FACE( face )->driver ); \ 138 _tmp_ = ft_module_get_service( module, FT_SERVICE_ID_ ## id ); \
|
/external/clearsilver/perl/ |
D | README | 4 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/apache-http/src/org/apache/http/util/ |
D | VersionInfo.java | 96 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/opencore/ |
D | NOTICE | 27 * This software module was originally developed and/or edited by 36 * This software module is an implementation of a part of one or more MPEG-4 41 * license to this software module or modifications thereof for use in hardware 45 * Those intending to use this software module in hardware or software products 47 * developer of this software module and his/her company, the subsequent 49 * software module or modifications thereof in an implementation. Copyright is 69 This software module was originally developed by 77 optimized. This software module is an implementation of one or more tools as 79 ISO/IEC gives users free license to this software module or modifications 82 Standards. ISO/IEC gives users the same free license to this software module or [all …]
|
/external/bluetooth/glib/gio/fam/ |
D | fam-module.c | 32 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/sonivox/arm-wt-22k/host_src/ |
D | eas_config.c | 423 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/ |
D | eas_config.c | 423 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/ |
D | eas_config.c | 423 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/freetype/src/base/ |
D | ftobjs.c | 3560 ft_add_renderer( FT_Module module ) in ft_add_renderer() argument 3562 FT_Library library = module->library; in ft_add_renderer() 3572 FT_Renderer render = FT_RENDERER( module ); in ft_add_renderer() 3573 FT_Renderer_Class* clazz = (FT_Renderer_Class*)module->clazz; in ft_add_renderer() 3592 node->data = module; in ft_add_renderer() 3608 ft_remove_renderer( FT_Module module ) in ft_remove_renderer() argument 3610 FT_Library library = module->library; in ft_remove_renderer() 3615 node = FT_List_Find( &library->renderers, module ); in ft_remove_renderer() 3618 FT_Renderer render = FT_RENDERER( module ); in ft_remove_renderer() 3800 Destroy_Module( FT_Module module ) in Destroy_Module() argument [all …]
|
/external/emma/ |
D | module.dirs.properties | 25 # ---- module-specific static (checked-in) locations: 28 # lib module structure: 36 # core module structure: 48 # ant module structure: 59 # tools module structure: 69 # test module structure:
|
D | work.dirs.properties | 24 # ---- module-specific locations created by the build: 27 # core module: 34 # ant module: 40 # tools module: 46 # test module:
|
/external/webkit/WebCore/platform/qt/ |
D | FileSystemQt.cpp | 145 bool unloadModule(PlatformModule module) in unloadModule() argument 148 CFRelease(module); in unloadModule() 152 return ::FreeLibrary(module); in unloadModule() 155 if (module->unload()) { in unloadModule() 156 delete module; in unloadModule()
|