Searched refs:module (Results 76 - 100 of 2418) sorted by relevance

1234567891011>>

/freebsd-11-stable/usr.sbin/ppp/
H A Ddefs.c45 #include <sys/module.h>
418 loadmodules(int how, const char *module, ...) argument
423 va_start(ap, module);
424 while (module != NULL) {
425 if (modfind(module) == -1) {
426 if (ID0kldload(module) == -1) {
428 log_Printf(LogWARN, "%s: Cannot load module\n", module);
432 module = va_arg(ap, const char *);
439 loadmodules(int how __unused, const char *module __unuse
[all...]
/freebsd-11-stable/usr.sbin/asf/
H A Dasf.c205 err(2, "can't begin traversing module path");
240 err(2, "couldn't complete traversing module path");
253 "\t-f\tfind the module in any subdirectory of modules-path\n"
259 "\t-s\tdon't prepend subdir for module path\n"
261 "\t-X\tappend suffix to list of possible module file name suffixes\n"
262 "\t-x\tclear list of possible module file name suffixes\n",
377 /* Avoid long operations like module tree traversal when nothing to do */
391 errx(2, "only %d module path elements can be specified", MAXPATHS);
420 warnx("module %s not found in search path", kfp->name);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDebugNamesDWARFIndex.h22 Create(Module &module, DWARFDataExtractor debug_names,
48 DebugNamesDWARFIndex(Module &module, argument
53 : DWARFIndex(module), m_debug_info(debug_info),
56 m_fallback(module, &debug_info, GetUnits(*m_debug_names_up)) {}
H A DDWARFIndex.h22 DWARFIndex(Module &module) : m_module(module) {} argument
H A DAppleDWARFIndex.h19 Create(Module &module, DWARFDataExtractor apple_names,
24 Module &module, std::unique_ptr<DWARFMappedHash::MemoryTable> apple_names,
28 : DWARFIndex(module), m_apple_names_up(std::move(apple_names)),
23 AppleDWARFIndex( Module &module, std::unique_ptr<DWARFMappedHash::MemoryTable> apple_names, std::unique_ptr<DWARFMappedHash::MemoryTable> apple_namespaces, std::unique_ptr<DWARFMappedHash::MemoryTable> apple_types, std::unique_ptr<DWARFMappedHash::MemoryTable> apple_objc) argument
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Lex/
H A DPreprocessorOptions.h161 bool hasAlreadyFailed(StringRef module) { argument
162 return Failed.count(module) > 0;
165 void addFailed(StringRef module) { argument
166 Failed.insert(module);
173 /// to (re)build modules, so that once a module fails to build anywhere,
174 /// other instances will see that the module has failed and won't try to
215 /// module.
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_symbolizer.cpp28 InternalFree(module);
37 module = internal_strdup(mod_name);
63 InternalFree(module);
70 InternalFree(module);
H A Dsanitizer_procmaps.h49 void AddAddressRanges(LoadedModule *module);
88 // Returns code range for the specified module.
89 bool GetCodeRangeForFile(const char *module, uptr *start, uptr *end);
H A Dsanitizer_stacktrace_printer.cpp132 buffer->append("%s", StripPathPrefix(info.module, strip_path_prefix));
173 // Source location, or module location.
177 } else if (info.module) {
178 RenderModuleLocation(buffer, info.module, info.module_offset,
181 buffer->append("(<unknown module>)");
188 else if (info.module)
189 // Always strip the module name for %M.
190 RenderModuleLocation(buffer, StripModuleName(info.module),
253 void RenderModuleLocation(InternalScopedString *buffer, const char *module, argument
256 buffer->append("(%s", StripPathPrefix(module, strip_path_prefi
[all...]
H A Dsanitizer_symbolizer.h32 char *module; member in struct:__sanitizer::AddressInfo
67 char *module; member in struct:__sanitizer::DataInfo
99 char *module; member in struct:__sanitizer::FrameInfo
121 // The module names Symbolizer returns are stable and unique for every given
122 // module. It is safe to store and compare them as pointers.
155 // Since the corresponding module might get unloaded later, we should create
/freebsd-11-stable/contrib/llvm-project/lldb/bindings/interface/
H A DSBSymbolContext.i39 # Get the module.
40 module = context.GetModule()
69 void SetModule (lldb::SBModule module);
88 module = property(GetModule, SetModule, doc='''A read/write property that allows the getting/setting of the module (lldb.SBModule) in this symbol context.''')
H A DSBTarget.i14 SBTarget supports module, breakpoint, and watchpoint iterations. For example,
131 target object's executable module's file as the file to launch.
360 AddModule (lldb::SBModule &module);
383 RemoveModule (lldb::SBModule module);
440 SetModuleLoadAddress (lldb::SBModule module,
444 ClearModuleLoadAddress (lldb::SBModule module);
731 If this is non-empty, this will be used as the module filter in the
992 module = self.sbtarget.GetModuleAtIndex(idx)
993 if module.file.basename == key:
994 return module
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/interception/
H A Dinterception_win.cpp866 RVAPtr(void *module, uptr rva) argument
867 : ptr_(reinterpret_cast<T *>(reinterpret_cast<char *>(module) + rva)) {}
882 uptr InternalGetProcAddress(void *module, const char *func_name) { argument
883 // Check that the module header is full and present.
884 RVAPtr<IMAGE_DOS_HEADER> dos_stub(module, 0);
885 RVAPtr<IMAGE_NT_HEADERS> headers(module, dos_stub->e_lfanew);
886 if (!module || dos_stub->e_magic != IMAGE_DOS_SIGNATURE || // "MZ"
897 RVAPtr<IMAGE_EXPORT_DIRECTORY> exports(module,
899 RVAPtr<DWORD> functions(module, exports->AddressOfFunctions);
900 RVAPtr<DWORD> names(module, export
959 HMODULE module = GetModuleHandleA(module_to_patch); local
[all...]
/freebsd-11-stable/sys/dev/tdfx/
H A Dtdfx_linux.c34 #include <sys/module.h>
69 tdfx_linux_modevent(struct module *mod __unused, int what, void *arg __unused)
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangPersistentVariables.h70 void AddHandLoadedClangModule(ClangModulesDeclVendor::ModuleID module) { argument
71 m_hand_loaded_clang_modules.push_back(module);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
H A DPDBLocationToDWARFExpression.cpp67 ModuleSP module, const PDBSymbolData &symbol,
71 if (!module)
74 const ArchSpec &architecture = module->GetArchitecture();
89 SectionList *section_list = module->GetSectionList();
177 DWARFExpression result(module, extractor, nullptr);
66 ConvertPDBLocationToDWARFExpression( ModuleSP module, const PDBSymbolData &symbol, const Variable::RangeList &ranges, bool &is_constant) argument
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/
H A DRenderScriptExpressionOpts.cpp40 // perform a fixup pass that removes those assumptions right before the module
80 bool RenderScriptRuntimeModulePass::runOnModule(llvm::Module &module) { argument
101 changed_module |= fixupX86FunctionCalls(module);
109 changed_module |= fixupX86_64FunctionCalls(module);
149 module.setTargetTriple(real_triple);
150 module.setDataLayout(target_machine->createDataLayout());
/freebsd-11-stable/contrib/ntp/lib/isc/
H A Dlog.c85 * a matching module. It is expected that the number of channels
92 const isc_logmodule_t * module; member in struct:isc_logchannellist
113 * the category/module specification of isc_log_[v]write[1] that is compiled
140 * Note that the category and module information is not locked.
142 * in a program, and the category/module registration happens only once.
229 const isc_logmodule_t *module, isc_logchannel_t *channel);
242 isc_logmodule_t *module, int level, isc_boolean_t write_once,
673 * Update the id number of the module with its new global id.
790 const isc_logmodule_t *module)
803 REQUIRE(module
788 isc_log_usechannel(isc_logconfig_t *lcfg, const char *name, const isc_logcategory_t *category, const isc_logmodule_t *module) argument
831 isc_log_write(isc_log_t *lctx, isc_logcategory_t *category, isc_logmodule_t *module, int level, const char *format, ...) argument
847 isc_log_vwrite(isc_log_t *lctx, isc_logcategory_t *category, isc_logmodule_t *module, int level, const char *format, va_list args) argument
859 isc_log_write1(isc_log_t *lctx, isc_logcategory_t *category, isc_logmodule_t *module, int level, const char *format, ...) argument
875 isc_log_vwrite1(isc_log_t *lctx, isc_logcategory_t *category, isc_logmodule_t *module, int level, const char *format, va_list args) argument
887 isc_log_iwrite(isc_log_t *lctx, isc_logcategory_t *category, isc_logmodule_t *module, int level, isc_msgcat_t *msgcat, int msgset, int msg, const char *format, ...) argument
905 isc_log_ivwrite(isc_log_t *lctx, isc_logcategory_t *category, isc_logmodule_t *module, int level, isc_msgcat_t *msgcat, int msgset, int msg, const char *format, va_list args) argument
918 isc_log_iwrite1(isc_log_t *lctx, isc_logcategory_t *category, isc_logmodule_t *module, int level, isc_msgcat_t *msgcat, int msgset, int msg, const char *format, ...) argument
936 isc_log_ivwrite1(isc_log_t *lctx, isc_logcategory_t *category, isc_logmodule_t *module, int level, isc_msgcat_t *msgcat, int msgset, int msg, const char *format, va_list args) argument
1056 assignchannel(isc_logconfig_t *lcfg, unsigned int category_id, const isc_logmodule_t *module, isc_logchannel_t *channel) argument
1405 isc_log_doit(isc_log_t *lctx, isc_logcategory_t *category, isc_logmodule_t *module, int level, isc_boolean_t write_once, isc_msgcat_t *msgcat, int msgset, int msg, const char *format, va_list args) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Expression/
H A DIRInterpreter.cpp165 Module &module) {
177 lldb::addr_t process_address = ResolveValue(value, module);
200 Module &module) {
201 lldb::addr_t process_address = ResolveValue(value, module);
409 lldb::addr_t ResolveValue(const Value *value, Module &module) { argument
486 bool IRInterpreter::CanInterpret(llvm::Module &module, llvm::Function &function, argument
493 for (Function &f : module) {
496 LLDB_LOGF(log, "More than one function in the module has a body");
634 bool IRInterpreter::Interpret(llvm::Module &module, llvm::Function &function, argument
648 module
164 EvaluateValue(lldb_private::Scalar &scalar, const Value *value, Module &module) argument
199 AssignValue(const Value *value, lldb_private::Scalar &scalar, Module &module) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/
H A DStackFrameRecognizer.h99 ConstString module,
104 lldb::RegularExpressionSP module,
110 std::string module, std::string symbol,
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/
H A DDynamicLoaderHexagonDYLD.cpp50 ModuleSP module = proc->GetTarget().GetExecutableModule(); local
51 assert(module.get() != nullptr);
53 ObjectFile *exe = module->GetObjectFile();
142 // Add the current executable to the module list
155 // Callback for the target to give it the loaded module list
169 /// Checks to see if the target module has changed, updates the target
170 /// accordingly and returns the target executable module.
183 // Prep module for loading
215 void DynamicLoaderHexagonDYLD::UpdateLoadedSections(ModuleSP module, argument
220 const SectionList *sections = GetSectionListFromModule(module);
249 UnloadSections(const ModuleSP module) argument
564 GetThreadLocalData(const lldb::ModuleSP module, const lldb::ThreadSP thread, lldb::addr_t tls_file_addr) argument
[all...]
/freebsd-11-stable/contrib/ngatm/snmp_atm/
H A Datm.h71 extern struct lmodule *module;
/freebsd-11-stable/contrib/binutils/ld/
H A Ddeffile.h50 def_file_module *module; /* always set */ member in struct:def_file_import
77 /* Used by imports for module names. */
/freebsd-11-stable/sys/contrib/octeon-sdk/
H A Dcvmx-debug-remote.c42 #include <linux/module.h>
/freebsd-11-stable/sys/dev/cfi/
H A Dcfi_bus_fdt.c38 #include <sys/module.h>

Completed in 160 milliseconds

1234567891011>>