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

1234567891011>>

/freebsd-10.1-release/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-10.1-release/contrib/ipfilter/ipsd/
H A Dlinux.h13 #include <linux/module.h>
/freebsd-10.1-release/contrib/ipfilter/ipsend/
H A Dlinux.h15 #include <linux/module.h>
/freebsd-10.1-release/share/examples/kld/cdev/
H A DMakefile3 SUBDIR= module test
/freebsd-10.1-release/share/examples/kld/syscall/
H A DMakefile3 SUBDIR= module test
/freebsd-10.1-release/contrib/ntp/sntp/unity/auto/
H A Dtype_sanitizer.rb0 module TypeSanitizer
H A Dtest_file_filter.rb9 module RakefileHelpers
/freebsd-10.1-release/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...]
/freebsd-10.1-release/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-10.1-release/share/examples/kld/syscall/module/
H A Dsyscall.c31 #include <sys/module.h>
65 load(struct module *module, int cmd, void *arg) argument
/freebsd-10.1-release/sys/contrib/xz-embedded/linux/lib/xz/
H A Dxz_dec_syms.c2 * XZ decoder module information
10 #include <linux/module.h>
/freebsd-10.1-release/sys/security/mac_none/
H A Dmac_none.c47 #include <sys/module.h>
/freebsd-10.1-release/contrib/llvm/tools/lldb/include/lldb/Target/
H A DDynamicLoader.h228 /// Retrieves the per-module TLS block for a given thread.
230 /// @param[in] module
231 /// The module to query TLS data for.
238 /// module, the address of the TLS block. Otherwise
242 GetThreadLocalData (const lldb::ModuleSP module, const lldb::ThreadSP thread) argument
252 /// Checks to see if the target module has changed, updates the target
253 /// accordingly and returns the target executable module.
257 /// Updates the load address of every allocatable section in @p module.
259 /// @param module The module t
[all...]
/freebsd-10.1-release/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-10.1-release/usr.bin/make/
H A Dutil.h67 * There is one bit per module. It is up to the module what debug
83 #define DEBUG(module) (debug & CONCAT(DEBUG_,module))
84 #define DEBUGF(module,args) \
86 if (DEBUG(module)) { \
90 #define DEBUGM(module, args) do { \
91 if (DEBUG(module)) { \
/freebsd-10.1-release/contrib/openbsm/modules/auditfilter_noop/
H A DMakefile.am14 auditfilter_noop_la_LDFLAGS = -module
/freebsd-10.1-release/tools/tools/kttcp/
H A DMakefile12 all: kttcp module
14 module:
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Core/
H A DDynamicLoader.cpp122 DynamicLoader::UpdateLoadedSections(ModuleSP module, addr_t link_map_addr, addr_t base_addr) argument
124 UpdateLoadedSectionsCommon(module, base_addr);
128 DynamicLoader::UpdateLoadedSectionsCommon(ModuleSP module, addr_t base_addr) argument
132 module->SetLoadAddress(m_process->GetTarget(), base_addr, base_addr_is_offset, changed);
136 DynamicLoader::UnloadSections(const ModuleSP module) argument
138 UnloadSectionsCommon(module);
142 DynamicLoader::UnloadSectionsCommon(const ModuleSP module) argument
145 const SectionList *sections = GetSectionListFromModule(module);
147 assert(sections && "SectionList missing from unloaded module.");
159 DynamicLoader::GetSectionListFromModule(const ModuleSP module) cons
[all...]
/freebsd-10.1-release/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) */
49 typedef struct module *module_t;
56 const char *name; /* module name */
62 * A module can use this to report module specific data to the user via
108 #define MODULE_DEPEND(module, mdepend, vmin, vpref, vmax) \
109 static struct mod_depend _##module##_depend_on_##mdepend = { \
114 MODULE_METADATA(_md_##module##_on
[all...]
/freebsd-10.1-release/sys/fs/cd9660/
H A Dcd9660_iconv.c32 #include <sys/module.h>
/freebsd-10.1-release/sys/fs/msdosfs/
H A Dmsdosfs_iconv.c33 #include <sys/module.h>
/freebsd-10.1-release/sys/fs/udf/
H A Dudf_iconv.c33 #include <sys/module.h>
/freebsd-10.1-release/sys/ofed/include/linux/
H A Dmodule.h46 #define THIS_MODULE ((struct module *)0)
51 /* OFED pre-module initialization */
53 /* OFED default module initialization */
86 * The following two macros are a workaround for not having a module
95 #define module_get(module)
96 #define module_put(module)
97 #define try_module_get(module) 1

Completed in 171 milliseconds

1234567891011>>