Home
last modified time | relevance | path

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

12345678910>>...43

/external/oprofile/
DMakefile.am35 .PHONY: module
37 all-local: module
40 module: target
43 (cd $(KSRC) && $(MAKE) SUBDIRS=$(OPROFILE_DIR)/module/@OPROFILE_MODULE_ARCH@ modules) || exit 1 ;
44 (cd $(KSRC) && $(MAKE) SUBDIRS=$(OPROFILE_DIR)/module modules) || exit 1 ;
48 cp module/oprofile-module.o $(MODINSTALLDIR)/oprofile/oprofile.o
52 rm -f module/*.o module/@OPROFILE_MODULE_ARCH@/*.o \
53 module/.*.o.cmd module/.*.o.flags \
54 module/@OPROFILE_MODULE_ARCH@/.*.o.cmd module/@OPROFILE_MODULE_ARCH@/.*.o.flags
70 module/Makefile.in \
[all …]
DChangeLog-20023 * Makefile.am: list module files explicitly, needed
10 * module/Makefile.am:
14 * module/ia64/arch.h:
15 * module/x86/arch.h: rename to op_arch.h
45 * module/ia64/op_syscalls.c:
46 * module/x86/hammer_op_syscalls.c:
47 * module/x86/op_syscalls.c: u16 pid to u32, tested/compiled only with
188 * dae/opd_kernel.c: use hash table entry 0 for kernel and module image
313 * doc/oprofile.xml: remove module hash table size
326 * libop/op_config_24.h: remove module hash table. Increase
[all …]
/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 …]
/external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/module/
DLdapLoginModuleTest.java18 package org.apache.harmony.auth.tests.module;
35 import org.apache.harmony.auth.module.LdapLoginModule;
97 LdapLoginModule module = new LdapLoginModule(); in test_commit() local
100 module.initialize(subject, new MockCallbackHandler(), null, options); in test_commit()
102 assertTrue("Login should be successful", module.login()); in test_commit()
103 module.commit(); in test_commit()
111 module.initialize(subject, new MockCallbackHandler(), null, options); in test_commit()
113 assertFalse("Commit shouldn't be successful", module.commit()); in test_commit()
124 LdapLoginModule module = new LdapLoginModule(); in test_initialize() local
126 module.initialize(null, null, null, null); in test_initialize()
[all …]
DJndiLoginModuleTest.java18 package org.apache.harmony.auth.tests.module;
35 import org.apache.harmony.auth.module.JndiLoginModule;
98 JndiLoginModule module = new JndiLoginModule(); in test_commit() local
100 module.initialize(subject, new MockCallbackHandler(), null, options); in test_commit()
102 assertTrue("Login should be successful", module.login()); in test_commit()
103 module.commit(); in test_commit()
111 module.initialize(subject, new MockCallbackHandler(), null, options); in test_commit()
113 assertFalse("Commit shouldn't be successful", module.commit()); in test_commit()
125 JndiLoginModule module = new JndiLoginModule(); in test_initialize() local
127 module.initialize(null, null, null, null); in test_initialize()
[all …]
DKeyStoreLoginModuleTest.java18 package org.apache.harmony.auth.tests.module;
29 import org.apache.harmony.auth.module.KeyStoreLoginModule;
84 KeyStoreLoginModule module = new KeyStoreLoginModule(); in test_commit() local
86 module.initialize(subject, null, null, options); in test_commit()
88 assertTrue("Login should be successful", module.login()); in test_commit()
89 module.commit(); in test_commit()
104 module.initialize(subject, null, null, options); in test_commit()
106 assertFalse("Commit shouldn't be successful", module.commit()); in test_commit()
115 KeyStoreLoginModule module = new KeyStoreLoginModule(); in test_initialize() local
117 module.initialize(null, null, null, null); in test_initialize()
[all …]
/external/llvm/tools/llvm-config/
Dfind-cycles.pl32 my ($module, $dependency_str) = /^\s*([^:]+):\s*(.*)\s*$/;
35 $DEPS{$module} = \@dependencies;
49 foreach my $module (@modules) {
50 @dependencies{@{$DEPS{$module}}} = 1;
54 foreach my $module (@modules) {
55 delete $dependencies{$module};
97 foreach my $module (@modules) { find_cycles($module); }
101 foreach my $module (@modules) {
102 unless (defined $CYCLES{$module}) {
103 my %cycle = ($module, 1);
[all …]
/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/chromium/chrome/browser/
Denumerate_modules_model_win.cc73 : module(x) {} in FindModule()
75 return (module.location == module_in.location) && in operator ()()
76 (module.name == module_in.name); in operator ()()
79 const ModuleEnumerator::Module& module; member
272 void ModuleEnumerator::NormalizeModule(Module* module) { in NormalizeModule() argument
273 string16 path = module->location; in NormalizeModule()
274 if (!ConvertToLongPath(path, &module->location)) in NormalizeModule()
275 module->location = path; in NormalizeModule()
277 module->location = l10n_util::ToLower(module->location); in NormalizeModule()
281 size_t last_slash = module->location.find_last_of(L"\\"); in NormalizeModule()
[all …]
/external/oprofile/daemon/liblegacy/
Dopd_kernel.c81 struct opd_module * module = xmalloc(sizeof(struct opd_module)); in opd_create_module() local
83 module->name = xstrdup(name); in opd_create_module()
84 module->image = NULL; in opd_create_module()
85 module->start = start; in opd_create_module()
86 module->end = end; in opd_create_module()
87 list_add(&module->module_list, &opd_modules); in opd_create_module()
89 return module; in opd_create_module()
101 struct opd_module * module; in opd_find_module_by_name() local
104 module = list_entry(pos, struct opd_module, module_list); in opd_find_module_by_name()
105 if (!strcmp(name, module->name)) in opd_find_module_by_name()
[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/llvm/test/CodeGen/X86/
D2010-09-16-asmcrash.ll4 module asm ".weak sem_close"
5 module asm ".equ sem_close, _sem_close"
6 module asm ".weak sem_destroy"
7 module asm ".equ sem_destroy, _sem_destroy"
8 module asm ".weak sem_getvalue"
9 module asm ".equ sem_getvalue, _sem_getvalue"
10 module asm ".weak sem_init"
11 module asm ".equ sem_init, _sem_init"
12 module asm ".weak sem_open"
13 module asm ".equ sem_open, _sem_open"
[all …]
/external/llvm/utils/crosstool/
Dcreate-snapshots.sh23 local module=$1
24 local log="${module}.log"
25 echo "Running: svn export -r ${REV} ${module}; log in ${log}"
26 svn -q export -r ${REV} ${LLVM_PROJECT_SVN}/${module}/trunk \
27 ${module} > ${log} 2>&1
30 local tarball="${module}-${REV}.tar.bz2"
32 tar cjf ${tarball} ${module}
34 echo "Cleaning up '${module}'"
35 rm -rf ${module} ${log}
38 for module in "llvm" "llvm-gcc-4.2"; do
[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/apache-harmony/auth/src/test/resources/
Dauth.conf7 com.intel.security.auth.module.LoginModule1 required AAAA=true BBB=false;
8 com.intel.security.auth.module.LoginModule2 optional debug=true;
9 com.intel.security.auth.module.LoginModule3 sufficient;
14 com.intel.security.auth.module.LoginModule1 required debug1=true test1=false;
19 com.intel.security.auth.module.LoginModule2 required debug1="true" test1="false";
22 Login3 { com.intel.security.auth.module.LoginModule3 required;
26 com.intel.security.auth.module.LoginModule4 required debug1=true test1=false; };
29 { com.intel.security.auth.module.LoginModule5 required debug1=true test1=false; };
31 Login6 { com.intel.security.auth.module.LoginModule6 required debug1=true test1=false; };
36 com.intel.security.auth.module.LoginModule1 required AAAA="true" BBB=false;
[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);
/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/valgrind/main/auxprogs/
Dgen-mdg124 my ($module, $f) = @_;
127 if ($hide{$module}) {
132 my $module_deps = $deps->{$module};
173 if ($target ne "" and $target ne $module) {
181 $deps->{$module} = $module_deps;
209 my $module;
211 $module = $f;
212 $module =~ s/(\w+).[cS]$/$1/; # foo.c --> foo
214 $module = $parentd;
219 scan_C_or_asm_file($module, $f);
/external/llvm/examples/ExceptionDemo/
DExceptionDemo.cpp211 llvm::Function *createFunction(llvm::Module &module, in createFunction() argument
222 llvm::Function::Create(functType, linkage, functName, &module); in createFunction()
871 llvm::Module &module, in generateStringPrint() argument
875 llvm::Function *printFunct = module.getFunction("printStr"); in generateStringPrint()
884 new llvm::GlobalVariable(module, in generateStringPrint()
916 llvm::Module &module, in generateIntegerPrint() argument
928 new llvm::GlobalVariable(module, in generateIntegerPrint()
967 llvm::Module &module, in createFinallyBlock() argument
1007 module, in createFinallyBlock()
1036 llvm::Module &module, in createCatchBlock() argument
[all …]
/external/opencv/cxcore/src/
Dcxswitcher.cpp490 cvRegisterModule( const CvModuleInfo* module ) in cvRegisterModule() argument
500 CV_ASSERT( module != 0 && module->name != 0 && module->version != 0 ); in cvRegisterModule()
502 name_len = strlen(module->name); in cvRegisterModule()
503 version_len = strlen(module->version); in cvRegisterModule()
508 *module_copy = *module; in cvRegisterModule()
512 memcpy( (void*)module_copy->name, module->name, name_len + 1 ); in cvRegisterModule()
513 memcpy( (void*)module_copy->version, module->version, version_len + 1 ); in cvRegisterModule()
544 CvModuleInfo* module; in cvUseOptimized() local
632 for( module = CvModule::first; module != 0; module = module->next ) in cvUseOptimized()
633 loaded_functions += icvUpdatePluginFuncTab( module->func_tab ); in cvUseOptimized()
[all …]
/external/freetype/src/autofit/
Dafmodule.c42 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()

12345678910>>...43