Home
last modified time | relevance | path

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

12345678910>>...56

/src/sys/contrib/openzfs/lib/libzpool/
H A DMakefile.am23 module/lua/lapi.c \
24 module/lua/lauxlib.c \
25 module/lua/lbaselib.c \
26 module/lua/lcode.c \
27 module/lua/lcompat.c \
28 module/lua/lcorolib.c \
29 module/lua/lctype.c \
30 module/lua/ldebug.c \
31 module/lua/ldo.c \
32 module/lua/lfunc.c \
[all …]
/src/contrib/llvm-project/libcxx/include/
H A Dmodule.modulemap2 module std_algorithm [system] {
6 module std_any [system] {
10 module std_array [system] {
14 module std_atomic [system] {
18 module std_barrier [system] {
22 module std_bit [system] {
26 module std_bitset [system] {
30 module std_charconv [system] {
34 module std_chrono [system] {
38 module std_codecvt [system] {
[all …]
/src/contrib/llvm-project/lldb/include/
H A Dmodule.modulemap2 module lldb_API {
8 module * { export * }
11 module lldb_Host {
17 module ConnectionFileDescriptor { header "lldb/Host/ConnectionFileDescriptor.h" export * }
18 module Debug { header "lldb/Host/Debug.h" export * }
19 module Editline { header "lldb/Host/Editline.h" export * }
20 module FileCache { header "lldb/Host/FileCache.h" export * }
21 module File { header "lldb/Host/File.h" export * }
22 module FileAction { header "lldb/Host/FileAction.h" export * }
23 module FileSystem { header "lldb/Host/FileSystem.h" export * }
[all …]
/src/sys/contrib/openzfs/lib/libicp/
H A DMakefile.am6 libicp_la_CPPFLAGS += -I$(top_srcdir)/module/icp/include
11 module/icp/spi/kcf_spi.c \
12 module/icp/api/kcf_ctxops.c \
13 module/icp/api/kcf_cipher.c \
14 module/icp/api/kcf_mac.c \
15 module/icp/algs/aes/aes_impl_aesni.c \
16 module/icp/algs/aes/aes_impl_generic.c \
17 module/icp/algs/aes/aes_impl_x86-64.c \
18 module/icp/algs/aes/aes_impl.c \
19 module/icp/algs/aes/aes_modes.c \
[all …]
/src/contrib/llvm-project/llvm/include/
H A Dmodule.modulemap1 module LLVM_C {
3 module * { export * }
6 module LLVM_Analysis {
9 module * { export * }
17 module LLVM_AsmParser {
20 module * { export * }
23 module LLVM_CodeGenTypes {
26 module LLT {
29 module MVT {
31 extern module LLVM_Extern_CodeGenTypes_Gen "module.extern.modulemap"
[all …]
H A Dmodule.extern.modulemap1 module LLVM_Extern_CodeGenTypes_Gen {}
2 module LLVM_Extern_Config_Def {}
3 module LLVM_Extern_IR_Attributes_Gen {}
4 module LLVM_Extern_IR_Intrinsics_Gen {}
5 module LLVM_Extern_IR_Intrinsics_Enum {}
6 module LLVM_Extern_Utils_DataTypes {}
7 module LLVM_Extern_TargetParser_Gen {}
/src/contrib/llvm-project/clang/lib/Headers/
H A Dmodule.modulemap1 /*===---- module.modulemap - intrinsics module map -------------------------===
10 module _Builtin_intrinsics [system] [extern_c] {
11 explicit module altivec {
16 explicit module arm {
19 explicit module acle {
24 explicit module neon {
31 explicit module sve {
38 explicit module intel {
69 explicit module mm_malloc {
75 explicit module cpuid {
[all …]
/src/contrib/llvm-project/clang/include/
H A Dmodule.modulemap1 module Clang_C {
3 module * { export * }
6 module Clang_Analysis {
12 module * { export * }
21 module Clang_AST {
30 module * { export * }
33 module Clang_ASTMatchers { requires cplusplus umbrella "clang/ASTMatchers" module * { export * } }
35 module Clang_Basic {
90 module * { export * }
92 module Clang_Basic_TokenKinds {
[all …]
/src/sys/contrib/openzfs/lib/libzstd/
H A DMakefile.am12 module/zstd/lib/common/entropy_common.c \
13 module/zstd/lib/common/error_private.c \
14 module/zstd/lib/common/fse_decompress.c \
15 module/zstd/lib/common/pool.c \
16 module/zstd/lib/common/zstd_common.c \
17 module/zstd/lib/compress/fse_compress.c \
18 module/zstd/lib/compress/hist.c \
19 module/zstd/lib/compress/huf_compress.c \
20 module/zstd/lib/compress/zstd_compress_literals.c \
21 module/zstd/lib/compress/zstd_compress_sequences.c \
[all …]
/src/contrib/openpam/lib/libpam/
H A Dopenpam_load.c55 pam_module_t *module; in openpam_load_module() local
57 module = openpam_dynamic(modulename); in openpam_load_module()
59 (module == NULL) ? "no" : "using", modulename); in openpam_load_module()
63 if (module == NULL && strchr(modulename, '/') == NULL) { in openpam_load_module()
64 module = openpam_static(modulename); in openpam_load_module()
66 (module == NULL) ? "no" : "using", modulename); in openpam_load_module()
69 if (module == NULL) { in openpam_load_module()
73 return (module); in openpam_load_module()
83 openpam_release_module(pam_module_t *module) in openpam_release_module() argument
86 if (module == NULL) in openpam_release_module()
[all …]
H A Dopenpam_dynamic.c123 pam_module_t *module; in try_module() local
126 if ((module = calloc(1, sizeof *module)) == NULL || in try_module()
127 (module->path = strdup(modpath)) == NULL || in try_module()
128 (module->dlh = try_dlopen(modpath)) == NULL) in try_module()
130 dlmodule = dlsym(module->dlh, "_pam_module"); in try_module()
133 module->func[i] = dlmodule->func[i]; in try_module()
135 module->func[i] = (pam_func_t)dlfunc(module->dlh, in try_module()
147 if (module->func[i] == NULL) in try_module()
153 return (module); in try_module()
156 if (module != NULL) { in try_module()
[all …]
/src/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_symbolizer_markup.cpp76 static bool ModulesEq(const LoadedModule &module, in ModulesEq() argument
78 return module.base_address() == renderedModule.base_address && in ModulesEq()
79 internal_memcmp(module.uuid(), renderedModule.uuid, in ModulesEq()
80 module.uuid_size()) == 0 && in ModulesEq()
81 internal_strcmp(module.full_name(), renderedModule.full_name) == 0; in ModulesEq()
85 const LoadedModule &module, in ModuleHasBeenRendered() argument
88 if (ModulesEq(module, renderedModule)) in ModuleHasBeenRendered()
95 const LoadedModule &module, uptr moduleId) { in RenderModule() argument
97 for (uptr i = 0; i < module.uuid_size(); i++) in RenderModule()
98 buildIdBuffer.AppendF("%02x", module.uuid()[i]); in RenderModule()
[all …]
/src/crypto/krb5/src/lib/krb5/krb/
H A Dauthdata.c164 struct _krb5_authdata_context_module *module = &context->modules[i]; in k5_ad_size() local
167 if ((module->flags & flags) == 0) in k5_ad_size()
171 if (!IS_PRIMARY_INSTANCE(module)) in k5_ad_size()
174 if (module->ftable->size == NULL) in k5_ad_size()
177 assert(module->ftable->externalize != NULL); in k5_ad_size()
179 size = sizeof(krb5_int32) /* namelen */ + strlen(module->name); in k5_ad_size()
181 code = (*module->ftable->size)(kcontext, in k5_ad_size()
183 module->plugin_context, in k5_ad_size()
184 *(module->request_context_pp), in k5_ad_size()
221 struct _krb5_authdata_context_module *module = &context->modules[i]; in k5_ad_externalize() local
[all …]
/src/contrib/pam-krb5/tests/
H A DTESTS15 # Exclude the tests that use the pkinit.so MIT Kerberos module from valgrind
16 # testing (module/fast-anon and module/pkinit) because they cause valgrind to
22 module/alt-auth valgrind
23 module/bad-authtok valgrind
24 module/basic valgrind
25 module/cache valgrind
26 module/cache-cleanup valgrind
27 module/expired valgrind
28 module/fast valgrind
29 module/fast-anon
[all …]
/src/contrib/pam-krb5/
H A DMakefile.am20 docs/docknot.yaml docs/pam_krb5.pod module/pam_krb5.map \
21 module/pam_krb5.sym tests/README tests/TESTS tests/config/README \
45 VERSION_LDFLAGS = -Wl,--version-script=${srcdir}/module/pam_krb5.map
47 VERSION_LDFLAGS = -export-symbols ${srcdir}/module/pam_krb5.sym
51 pam_LTLIBRARIES = module/pam_krb5.la
52 module_pam_krb5_la_SOURCES = module/account.c module/alt-auth.c \
53 module/auth.c module/cache.c module/context.c module/fast.c \
54 module/internal.h module/options.c module/password.c \
55 module/prompting.c module/public.c module/setcred.c \
56 module/support.c
[all …]
/src/sys/contrib/openzfs/lib/libzfs/
H A DMakefile.am45 module/zcommon/cityhash.c \
46 module/zcommon/zfeature_common.c \
47 module/zcommon/zfs_comutil.c \
48 module/zcommon/zfs_deleg.c \
49 module/zcommon/zfs_fletcher.c \
50 module/zcommon/zfs_fletcher_aarch64_neon.c \
51 module/zcommon/zfs_fletcher_avx512.c \
52 module/zcommon/zfs_fletcher_intel.c \
53 module/zcommon/zfs_fletcher_sse.c \
54 module/zcommon/zfs_fletcher_superscalar.c \
[all …]
/src/contrib/llvm-project/lldb/source/Target/
H A DStatistics.cpp52 json::Object module; in ToJSON() local
53 EmplaceSafeString(module, "path", path); in ToJSON()
54 EmplaceSafeString(module, "uuid", uuid); in ToJSON()
55 EmplaceSafeString(module, "triple", triple); in ToJSON()
56 module.try_emplace("identifier", identifier); in ToJSON()
57 module.try_emplace("symbolTableParseTime", symtab_parse_time); in ToJSON()
58 module.try_emplace("symbolTableIndexTime", symtab_index_time); in ToJSON()
59 module.try_emplace("symbolTableLoadedFromCache", symtab_loaded_from_cache); in ToJSON()
60 module.try_emplace("symbolTableSavedToCache", symtab_saved_to_cache); in ToJSON()
61 module.try_emplace("debugInfoParseTime", debug_parse_time); in ToJSON()
[all …]
/src/contrib/sqlite3/autosetup/
H A Dpkg-config.tcl105 proc pkg-config {module args} {
108 msg-checking "Checking for $module $args..."
117 set ret [catch {exec $pkgconfig --modversion "$module $args"} version]
118 configlog "$pkgconfig --modversion $module $args: $version"
125 set ret [catch {exec $pkgconfig --cflags $module} cflags]
128 configlog "$pkgconfig --cflags $module"
133 set prefix [feature-define-name $module PKG_]
137 define ${prefix}_LIBS [exec $pkgconfig --libs-only-l $module]
138 define ${prefix}_LDFLAGS [exec $pkgconfig --libs-only-L $module]
148 proc pkg-config-get {module name} {
[all …]
/src/sys/contrib/openzfs/module/os/linux/spl/
H A Dspl-kstat.c379 kstat_module_t *module = NULL; in kstat_find_module() local
381 list_for_each_entry(module, &kstat_module_list, ksm_module_list) { in kstat_find_module()
382 if (strncmp(name, module->ksm_name, KSTAT_STRLEN) == 0) in kstat_find_module()
383 return (module); in kstat_find_module()
390 kstat_delete_module(kstat_module_t *module) in kstat_delete_module() argument
393 ASSERT(list_empty(&module->ksm_kstat_list)); in kstat_delete_module()
394 ASSERT0(module->ksm_nchildren); in kstat_delete_module()
396 kstat_module_t *parent = module->ksm_parent; in kstat_delete_module()
398 char *p = module->ksm_name, *frag = NULL; in kstat_delete_module()
402 list_del(&module->ksm_module_list); in kstat_delete_module()
[all …]
/src/sys/contrib/openzfs/rpm/redhat/
H A Dzfs-dkms.spec.in10 %define module @PACKAGE@
13 Name: %{module}-dkms
17 Summary: Kernel module(s) (dkms)
22 Source0: %{module}-%{version}.tar.gz
44 Provides: %{module}-kmod = %{version}
58 %setup -q -n %{module}-%{version}
61 %{mkconf} -n %{module} -v %{version} -f dkms.conf
68 cp -rf ${RPM_BUILD_DIR}/%{module}-%{version} $RPM_BUILD_ROOT/usr/src/
77 /usr/src/%{module}-%{version}
88 if [ -d ${dkms_root}/%{module} ]; then
[all …]
/src/sys/contrib/openzfs/rpm/generic/
H A Dzfs-dkms.spec.in10 %define module @PACKAGE@
13 Name: %{module}-dkms
17 Summary: Kernel module(s) (dkms)
22 Source0: %{module}-%{version}.tar.gz
44 Provides: %{module}-kmod = %{version}
58 %setup -q -n %{module}-%{version}
61 %{mkconf} -n %{module} -v %{version} -f dkms.conf
68 cp -rf ${RPM_BUILD_DIR}/%{module}-%{version} $RPM_BUILD_ROOT/usr/src/
77 /usr/src/%{module}-%{version}
88 if [ -d ${dkms_root}/%{module} ]; then
[all …]
/src/crypto/openssl/crypto/objects/
H A Dobjects.pl52 $module = $1."-";
53 $module =~ s/\./_/g;
54 $module =~ s/-/_/g;
57 { $module = ""; }
62 $Cname = $module.$1;
92 if ($Cname ne "" && defined($ln{$module.$Cname}))
93 ….txt:$o:There's already an object with long name ",$ln{$module.$Cname}," on line ",$order{$module.…
99 if ($Cname ne "" && defined($sn{$module.$Cname}))
100 …txt:$o:There's already an object with short name ",$sn{$module.$Cname}," on line ",$order{$module.…
108 if ($Cname ne "" && defined($ln{$module.$Cname}))
[all …]
/src/contrib/llvm-project/clang/include/clang/Basic/
H A DDiagnosticSerializationKinds.td22 "%select{precompiled header|module file|AST file}1 '%2' was built"
30 "after modifying system headers, please delete the module cache at '%0'">;
45 def err_pch_modulecache_mismatch : Error<"PCH was compiled with module cache "
63 "module '%0' is defined in both '%1' and '%2'">, DefaultFatal;
65 "%select{PCH|module|AST}0 file '%1' not found%select{|: %3}2">, DefaultFatal;
67 "%select{PCH|module|AST}0 file '%1' is out of date and "
70 "file '%1' is not a valid precompiled %select{PCH|module|AST}0 file: %2">, DefaultFatal;
72 "imported by %select{|module '%2' in }1'%0'">;
74 "AST file '%0' was not built as a module">, DefaultFatal;
76 "module file '%0' is missing its top-level submodule">, DefaultFatal;
[all …]
/src/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DDWARFLocationExpression.cpp108 static DWARFExpression MakeLocationExpressionInternal(lldb::ModuleSP module, in MakeLocationExpressionInternal() argument
110 const ArchSpec &architecture = module->GetArchitecture(); in MakeLocationExpressionInternal()
134 std::optional<int32_t> relative_offset, lldb::ModuleSP module) { in MakeRegisterBasedLocationExpressionInternal() argument
135 uint32_t reg_num = GetRegisterNumber(module->GetArchitecture().GetMachine(), in MakeRegisterBasedLocationExpressionInternal()
159 lldb::ModuleSP module) { in MakeRegisterBasedLocationExpressionInternal() argument
161 module, [&](Stream &stream, RegisterKind &register_kind) -> bool { in MakeRegisterBasedLocationExpressionInternal()
163 stream, reg, register_kind, relative_offset, module); in MakeRegisterBasedLocationExpressionInternal()
168 llvm::codeview::RegisterId reg, lldb::ModuleSP module) { in MakeEnregisteredLocationExpression() argument
169 return MakeRegisterBasedLocationExpressionInternal(reg, std::nullopt, module); in MakeEnregisteredLocationExpression()
173 llvm::codeview::RegisterId reg, int32_t offset, lldb::ModuleSP module) { in MakeRegRelLocationExpression() argument
[all …]
/src/sys/sys/
H A Dmodule.h50 typedef struct module *module_t;
119 #define MODULE_DEPEND_CONCAT(module, mdepend) _##module##_depend_on_##mdepend argument
120 #define MODULE_DEPEND(module, mdepend, vmin, vpref, vmax) \ argument
121 static struct mod_depend MODULE_DEPEND_CONCAT(module, mdepend) \
127 MODULE_METADATA(MODULE_DEPEND_CONCAT(module, mdepend), \
128 MDT_DEPEND, &MODULE_DEPEND_CONCAT(module, mdepend), \
146 SYSINIT(name##module, sub, order, module_register_init, &data); \
167 #define MODULE_VERSION_CONCAT(module, version) _##module##_version argument
168 #define MODULE_VERSION(module, version) \ argument
169 static struct mod_version MODULE_VERSION_CONCAT(module, version)\
[all …]

12345678910>>...56