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

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/
H A DRenderScriptx86ABIFixups.h17 bool fixupX86FunctionCalls(llvm::Module &module);
19 bool fixupX86_64FunctionCalls(llvm::Module &module);
H A DRenderScriptx86ABIFixups.cpp28 bool isRSAPICall(llvm::Module &module, llvm::CallInst *call_inst) { argument
31 (void)module;
42 bool isRSLargeReturnCall(llvm::Module &module, llvm::CallInst *call_inst) { argument
53 (void)module;
71 bool isRSAllocationTyCallSite(llvm::Module &module, llvm::CallInst *call_inst) { argument
72 (void)module;
126 bool findRSCallSites(llvm::Module &module, argument
131 for (auto &func : module.getFunctionList())
139 if (isRSAPICall(module, call_inst) && predicate(module, call_ins
147 fixupX86StructRetCalls(llvm::Module &module) argument
210 fixupRSAllocationStructByValCalls(llvm::Module &module) argument
268 fixupX86FunctionCalls(llvm::Module &module) argument
272 fixupX86_64FunctionCalls(llvm::Module &module) argument
[all...]
/freebsd-11-stable/contrib/openpam/lib/libpam/
H A Dopenpam_load.c51 * Locate a matching dynamic or static module.
57 pam_module_t *module; local
59 module = openpam_dynamic(modulename);
61 (module == NULL) ? "no" : "using", modulename);
64 /* look for a static module */
65 if (module == NULL && strchr(modulename, '/') == NULL) {
66 module = openpam_static(modulename);
68 (module == NULL) ? "no" : "using", modulename);
71 if (module == NULL) {
75 return (module);
85 openpam_release_module(pam_module_t *module) argument
[all...]
H A Dopenpam_static.c55 * Locate a statically linked module
61 pam_module_t **module; local
63 SET_FOREACH(module, openpam_static_modules) {
64 if (strcmp((*module)->path, path) == 0)
65 return (*module);
H A Dopenpam_dynamic.c66 * Perform sanity checks and attempt to load a module
119 * Try to load a module from the suggested location.
125 pam_module_t *module; local
128 if ((module = calloc(1, sizeof *module)) == NULL ||
129 (module->path = strdup(modpath)) == NULL ||
130 (module->dlh = try_dlopen(modpath)) == NULL)
132 dlmodule = dlsym(module->dlh, "_pam_module");
135 module->func[i] = dlmodule->func[i];
137 module
181 pam_module_t *module; local
[all...]
/freebsd-11-stable/contrib/ntp/sntp/unity/auto/
H A Dtype_sanitizer.rb0 module TypeSanitizer
/freebsd-11-stable/contrib/binutils/
H A DMakefile.def24 // "missing" indicates that that module doesn't supply
27 build_modules= { module= libiberty; };
28 build_modules= { module= bison; };
29 build_modules= { module= byacc; };
30 build_modules= { module= flex; };
31 build_modules= { module= m4; };
32 build_modules= { module= texinfo; };
33 build_modules= { module= fixincludes; };
35 host_modules= { module= ash; };
36 host_modules= { module
[all...]
H A DMakefile.tpl385 IF lib_path +]$(TARGET_LIB_PATH_[+module+])[+ ENDIF lib_path +][+
388 @if target-[+module+]
389 TARGET_LIB_PATH_[+module+] = $$r/$(TARGET_SUBDIR)/[+module+]/[+lib_path+]:
390 @endif target-[+module+]
397 IF lib_path +]$(HOST_LIB_PATH_[+module+])[+ ENDIF lib_path +][+
406 @if [+module+]
407 HOST_LIB_PATH_[+module+] = \
408 $$r/$(HOST_SUBDIR)/[+module+]/[+lib_path+]:[+ IF bootstrap
409 +]$$r/$(HOST_SUBDIR)/prev-[+module
[all...]
/freebsd-11-stable/sys/dev/nxge/include/
H A Dxge-debug.h91 * @XGE_COMPONENT_HAL_CONFIG: do debug for xge core config module
92 * @XGE_COMPONENT_HAL_FIFO: do debug for xge core fifo module
93 * @XGE_COMPONENT_HAL_RING: do debug for xge core ring module
94 * @XGE_COMPONENT_HAL_CHANNEL: do debug for xge core channel module
95 * @XGE_COMPONENT_HAL_DEVICE: do debug for xge core device module
96 * @XGE_COMPONENT_HAL_DMQ: do debug for xge core DMQ module
97 * @XGE_COMPONENT_HAL_UMQ: do debug for xge core UMQ module
98 * @XGE_COMPONENT_HAL_SQ: do debug for xge core SQ module
99 * @XGE_COMPONENT_HAL_SRQ: do debug for xge core SRQ module
100 * @XGE_COMPONENT_HAL_CQRQ: do debug for xge core CRQ module
176 u32 module = XGE_COMPONENT_HAL_STATS; local
195 u32 module = XGE_COMPONENT_HAL_INTERRUPT; local
213 u32 module = XGE_COMPONENT_HAL_QUEUE; local
233 u32 module = XGE_COMPONENT_HAL_MM; local
252 u32 module = XGE_COMPONENT_HAL_CONFIG; local
271 u32 module = XGE_COMPONENT_HAL_FIFO; local
289 u32 module = XGE_COMPONENT_HAL_RING; local
307 u32 module = XGE_COMPONENT_HAL_CHANNEL; local
325 u32 module = XGE_COMPONENT_HAL_DEVICE; local
343 u32 module = XGE_COMPONENT_OSDEP; local
362 u32 module = XGE_COMPONENT_LL; local
[all...]
/freebsd-11-stable/sys/compat/linuxkpi/common/src/
H A Dlinux_kmod.c31 #include <sys/module.h>
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DDWARFLocationExpression.h28 lldb::ModuleSP module);
32 lldb::ModuleSP module);
35 lldb::ModuleSP module);
37 lldb::ModuleSP module);
40 const llvm::APSInt &constant, lldb::ModuleSP module);
H A DDWARFLocationExpression.cpp107 static DWARFExpression MakeLocationExpressionInternal(lldb::ModuleSP module, argument
109 const ArchSpec &architecture = module->GetArchitecture();
125 DWARFExpression result(module, extractor, nullptr);
133 lldb::ModuleSP module) {
135 module, [&](Stream &stream, RegisterKind &register_kind) -> bool {
137 module->GetArchitecture().GetMachine(), reg, register_kind);
162 llvm::codeview::RegisterId reg, lldb::ModuleSP module) {
163 return MakeRegisterBasedLocationExpressionInternal(reg, llvm::None, module);
167 llvm::codeview::RegisterId reg, int32_t offset, lldb::ModuleSP module) {
168 return MakeRegisterBasedLocationExpressionInternal(reg, offset, module);
131 MakeRegisterBasedLocationExpressionInternal( llvm::codeview::RegisterId reg, llvm::Optional<int32_t> relative_offset, lldb::ModuleSP module) argument
[all...]
/freebsd-11-stable/share/examples/kld/syscall/module/
H A Dsyscall.c31 #include <sys/module.h>
65 load(struct module *module, int cmd, void *arg) argument
/freebsd-11-stable/sys/contrib/xz-embedded/linux/lib/xz/
H A Dxz_dec_syms.c2 * XZ decoder module information
10 #include <linux/module.h>
/freebsd-11-stable/sys/security/mac_none/
H A Dmac_none.c47 #include <sys/module.h>
/freebsd-11-stable/share/examples/kld/cdev/
H A DMakefile5 SUBDIR= module test
/freebsd-11-stable/share/examples/kld/cdev/module/
H A DMakefile5 FILESDIR=${SHAREDIR}/examples/kld/${KMOD}/module
/freebsd-11-stable/share/examples/kld/syscall/
H A DMakefile5 SUBDIR= module test
/freebsd-11-stable/contrib/tcpdump/
H A Dnetdissect.c115 * Indicates whether an SMI module has been loaded, so that we can use
121 nd_load_smi_module(const char *module, char *errbuf, size_t errbuf_size) argument
124 if (smiLoadModule(module) == 0) {
125 snprintf(errbuf, errbuf_size, "could not load MIB module %s",
126 module);
132 snprintf(errbuf, errbuf_size, "MIB module %s not loaded: no libsmi support",
133 module);
/freebsd-11-stable/tools/tools/bus_autoconf/
H A Dbus_autoconf.c51 " -i <structure_type,module.ko>\n"
64 char *module; local
77 module = strchr(fname, ',');
78 if (module == NULL) {
82 /* split module and section */
83 *module++ = 0;
86 postfix = strchr(module, '.');
95 usb_import_entries(section, module, ptr, len);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/lsan/
H A Dlsan_common_linux.cpp34 static bool IsLinker(const LoadedModule& module) { argument
36 return module.base_address() == getauxval(AT_BASE);
38 return LibraryNameIs(module.full_name(), kLinkerName);
56 for (LoadedModule &module : modules) {
57 if (!IsLinker(module))
61 *linker = module;
62 module = LoadedModule();
/freebsd-11-stable/sys/compat/linuxkpi/common/include/linux/
H A Dmodule.h29 * $FreeBSD: stable/11/sys/compat/linuxkpi/common/include/linux/module.h 335435 2018-06-20 06:59:39Z hselasky $
36 #include <sys/module.h>
53 #define THIS_MODULE ((struct module *)0)
57 /* OFED pre-module initialization */
59 /* OFED default module initialization */
90 * The following two macros are a workaround for not having a module
99 #define module_get(module)
100 #define module_put(module)
101 #define try_module_get(module) 1
/freebsd-11-stable/contrib/openbsm/modules/auditfilter_noop/
H A DMakefile.am10 auditfilter_noop_la_LDFLAGS = -module
/freebsd-11-stable/tools/tools/kttcp/
H A DMakefile12 all: kttcp module
14 module:
/freebsd-11-stable/sys/sys/
H A Dmodule.h35 #define MDT_DEPEND 1 /* argument is a module name */
36 #define MDT_MODULE 2 /* module declaration */
37 #define MDT_VERSION 3 /* module version(s) */
50 typedef struct module *module_t;
57 const char *name; /* module name */
63 * A module can use this to report module specific data to the user via
118 #define MODULE_DEPEND(module, mdepend, vmin, vpref, vmax) \
119 static struct mod_depend _##module##_depend_on_##mdepend \
125 MODULE_METADATA(_md_##module##_on
[all...]

Completed in 248 milliseconds

1234567891011>>