Searched refs:module (Results 1 - 25 of 180) sorted by relevance

12345678

/vbox/src/libs/libxml2-2.6.31/include/libxml/
H A Dxmlmodule.h2 * Summary: dynamic module loading
3 * Description: basic API for dynamic module loading, used by
25 * A handle to a dynamically loaded module
43 XMLPUBFUN int XMLCALL xmlModuleSymbol (xmlModulePtr module,
47 XMLPUBFUN int XMLCALL xmlModuleClose (xmlModulePtr module);
49 XMLPUBFUN int XMLCALL xmlModuleFree (xmlModulePtr module);
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Tests/
H A DCToolsTests.py29 suites = map(lambda module: module.TheTestSuite(), modules)
/vbox/src/VBox/HostDrivers/freebsd/
H A DMakefile21 @echo "*** Building 'vboxdrv' module ***"
29 echo "*** Building 'vboxnetflt' module ***"; \
38 echo "*** Building 'vboxnetadp' module ***"; \
65 @for module in vboxnetadp vboxnetflt vboxdrv; do \
66 if kldstat -n "$$module" >/dev/null; then \
67 echo "Removing previously installed $$module module"; \
68 /sbin/kldunload $$module; \
71 @for module in vboxdrv vboxnetflt vboxnetadp; do \
72 if test -f $$module
[all...]
/vbox/src/libs/libxml2-2.6.31/
H A DtestModule.c36 xmlModulePtr module = NULL; local
39 /* build the module filename, and confirm the module exists */
45 module = xmlModuleOpen((const char*)filename, 0);
46 if (module)
48 if (xmlModuleSymbol(module, "hello_world", (void **) &hello_world)) {
59 xmlModuleClose(module);
H A Dxmlmodule.c2 * xmlmodule.c : basic API for dynamic module loading added 2.6.17
33 * module memory error handler *
44 xmlModuleErrMemory(xmlModulePtr module, const char *extra) argument
48 if (module != NULL) {
49 name = (const char *) module->name;
60 * @name: the module name
63 * Opens a module/shared library given its name or path
66 * Returns a handle for the module or NULL in case of error
71 xmlModulePtr module; local
73 module
106 xmlModuleSymbol(xmlModulePtr module, const char *name, void **symbol) argument
142 xmlModuleClose(xmlModulePtr module) argument
178 xmlModuleFree(xmlModulePtr module) argument
[all...]
H A Dgentest.py29 # defines for each module
303 def add_missing_functions(name, module):
308 list = missing_functions[module]
311 missing_functions[module] = [name]
317 def type_convert(str, name, info, module, function, pos):
338 if module == 'nanoftp' and name == 'ctx':
344 if module == 'nanohttp' and name == 'ctx':
388 if res == 'FILE_ptr' and module == 'debugXML':
391 if module == 'parser' or module
536 module = enum.xpathEval('string(@file)') variable
[all...]
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.1.0/
H A Ddlloader.h35 extern void *DLFindSymbolLocal(pointer module, const char *name);
H A Doptions.h48 char *GetOptionDescription(char *module, char *option);
/vbox/src/libs/xpcom18a4/java/tools/
H A Dgen-nsError.pl127 $module = $2;
129 print " public static final long $1 = ((NS_ERROR_SEVERITY_ERROR<<31) | (($module+NS_ERROR_MODULE_BASE_OFFSET)<<16) | $code);\n";
133 $module = $2;
135 print " public static final long $1 = ((NS_ERROR_SEVERITY_SUCCESS<<31) | (($module+NS_ERROR_MODULE_BASE_OFFSET)<<16) | $code);\n";
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.3.0.0/
H A Doptions.h47 char *GetOptionDescription(char *module, char *option);
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.4.2/
H A Doptions.h47 char *GetOptionDescription(char *module, char *option);
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.5.3/
H A Doptions.h47 char *GetOptionDescription(char *module, char *option);
H A Dloader.h64 * namespace, default is to keep symbols local to module. */
69 /* Each module loaded has a loaderRec */
72 * this module when it is unloaded */
73 int module; /* Unique id to identify compilation units */ member in struct:_loader
/vbox/src/VBox/HostDrivers/linux/
H A DMakefile39 @echo "*** Building 'vboxdrv' module ***"
47 echo "*** Building 'vboxnetflt' module ***"; \
56 echo "*** Building 'vboxnetadp' module ***"; \
65 echo "*** Building 'vboxpci' module ***"; \
100 @for module in vboxpci vboxnetadp vboxnetflt vboxdrv; do \
101 if grep "^$$module " /proc/modules >/dev/null; then \
102 echo "Removing previously installed $$module module"; \
103 /sbin/rmmod $$module; \
108 @for module i
[all...]
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.0.1/
H A Doptions.h48 char *GetOptionDescription(char *module, char *option);
/vbox/src/VBox/HostDrivers/Support/linux/
H A DSUPDrv-linux.mod.c5 * This is checked in to assist syntax checking the module.
36 struct module __this_module
/vbox/src/libs/xpcom18a4/xpcom/base/
H A DnsStackFrameWin.cpp92 HMODULE module = ::LoadLibrary("IMAGEHLP.DLL"); local
93 if (!module) return PR_FALSE;
95 _SymSetOptions = (SYMSETOPTIONSPROC) ::GetProcAddress(module, "SymSetOptions");
98 _SymInitialize = (SYMINITIALIZEPROC) ::GetProcAddress(module, "SymInitialize");
101 _SymCleanup = (SYMCLEANUPPROC)GetProcAddress(module, "SymCleanup");
104 _StackWalk = (STACKWALKPROC)GetProcAddress(module, "StackWalk");
107 _SymFunctionTableAccess = (SYMFUNCTIONTABLEACCESSPROC) GetProcAddress(module, "SymFunctionTableAccess");
110 _SymGetModuleBase = (SYMGETMODULEBASEPROC)GetProcAddress(module, "SymGetModuleBase");
113 _SymGetSymFromAddr = (SYMGETSYMFROMADDRPROC)GetProcAddress(module, "SymGetSymFromAddr");
116 _SymLoadModule = (SYMLOADMODULE)GetProcAddress(module, "SymLoadModul
[all...]
H A DnsError.h46 * To add error code to your module, you need to do the following:
48 * 1) Add a module offset code. Add yours to the bottom of the list
51 * 2) In your module, define a header file which uses one of the
63 * and then all errors associated with that module become offsets from the
64 * base associated with that module id. There are 16 bits of code bits for
65 * each module.
132 #define NS_ERROR_GENERATE(sev,module,code) \
133 ((nsresult) (((PRUint32)(sev)<<31) | ((PRUint32)(module+NS_ERROR_MODULE_BASE_OFFSET)<<16) | ((PRUint32)(code))) )
135 #define NS_ERROR_GENERATE_SUCCESS(module,code) \
136 ((nsresult) (((PRUint32)(NS_ERROR_SEVERITY_SUCCESS)<<31) | ((PRUint32)(module
[all...]
/vbox/src/VBox/Main/src-all/
H A DVBoxAPI-end.d5 #pragma D attributes Private/Private/Unknown provider vboxapi module
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/lib/libdtrace/common/
H A Dscsi.d27 #pragma D depends_on module genunix
28 #pragma D depends_on module stmf
/vbox/src/libs/xpcom18a4/nsprpub/pr/include/
H A Dprlog.h114 ** PR_LOG(<module>, <level>, (<printfString>, <args>*));
116 ** Where <module> is the address of a PRLogModuleInfo structure, and
142 ** defined and initialized in prinit.c. See this module for ideas on
161 ** One of these structures is created for each module that uses logging.
162 ** "name" is the name of the module
163 ** "level" is the debugging level selected for that module
172 ** Create a new log module.
213 ** "module" is the address of a PRLogModuleInfo structure
228 #define PR_LOG_TEST(module,level) 0
229 #define PR_LOG(module,leve
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/gcc/
H A Dmingw-gcc-build.py358 def GetFilenameOf(self, module):
359 return self.source_files[module]['filename']
361 def GetMd5Of(self, module):
362 return self.source_files[module]['md5']
364 def GetExtractDirOf(self, module):
365 return self.source_files[module]['extract-dir']
367 def GetAdditionalParameters(self, module, step):
369 if key in self.source_files[module]:
370 return self.source_files[module][key]
385 def Extract(self, module)
[all...]
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.6.5/
H A Dloader.h61 * namespace, default is to keep symbols local to module. */
66 /* Each module loaded has a loaderRec */
69 * this module when it is unloaded */
70 int module; /* Unique id to identify compilation units */ member in struct:_loader
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.7.7/
H A Dloader.h61 * namespace, default is to keep symbols local to module. */
66 /* Each module loaded has a loaderRec */
69 * this module when it is unloaded */
70 int module; /* Unique id to identify compilation units */ member in struct:_loader
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.8.0/
H A Dloader.h61 * namespace, default is to keep symbols local to module. */
66 /* Each module loaded has a loaderRec */
69 * this module when it is unloaded */
70 int module; /* Unique id to identify compilation units */ member in struct:_loader

Completed in 112 milliseconds

12345678