Home
last modified time | relevance | path

Searched +full:module +full:- +full:instance (Results 1 – 25 of 938) sorted by relevance

12345678910>>...38

/freebsd-src/contrib/openbsm/bsm/
H A Daudit_filter.h1 /*-
33 * Module interface for audit filter modules.
35 * audit_filter_attach_t - filter module is being attached with arguments
36 * audit_filter_reinit_t - arguments to module have changed
37 * audit_filter_record_t - present parsed record to filter module, with
39 * audit_filter_rawrecord_t - present BSM format record to filter module,
41 * audit_filter_destach_t - filter module is being detached
43 * There may be many instances of the same filter, identified by the instance
44 * void pointer maintained by the filter instance.
46 typedef int (*audit_filter_attach_t)(void *instance, int argc, char *argv[]);
[all …]
/freebsd-src/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangModulesDeclVendor.cpp1 //===-- ClangModulesDeclVendor.cpp --------
258 ReportModuleExportsHelper(ExportedModuleSet & exports,clang::Module * module) ReportModuleExportsHelper() argument
273 ReportModuleExports(ClangModulesDeclVendor::ModuleVector & exports,clang::Module * module) ReportModuleExports() argument
278 for (ModuleID module : exports_set) ReportModuleExports() local
282 AddModule(const SourceModule & module,ModuleVector * exported_modules,Stream & error_stream) AddModule() argument
487 for (ModuleID module : modules) ForEachMacro() local
518 clang::Module *module = module_macro->getOwningModule(); ForEachMacro() local
746 std::unique_ptr<clang::CompilerInstance> instance( Create() local
[all...]
H A DCxxModuleHandler.h1 //===-- CxxModuleHandler.h --------------------------------------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
19 /// Handles importing decls into an ASTContext with an attached C++ module.
21 /// This class searches a C++ module (which must be attached to the target
23 /// If the decl that is found in the module is a suitable replacement
24 /// for the decl that should be imported, the module decl will be treated as
38 /// The Sema instance of the target ASTContext.
54 /// deserializing it from the 'std' module. This function returns a Decl if a
55 /// Decl has been deserialized from the 'std' module. Otherwise this function
[all …]
/freebsd-src/contrib/llvm-project/clang/include/clang/Frontend/
H A DCompilerInstance.h1 //===-- CompilerInstance.h - Clang Compiler Instance ------
54 class Module; global() variable
[all...]
/freebsd-src/contrib/llvm-project/llvm/include/llvm-c/
H A DLLJIT.h1 /*===----------- llvm-c/LLJIT.h - OrcV2 LLJIT C bindings ----------*- C -*-===*\
6 |* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception *|
8 |*===----------------------------------------------------------------------===*|
11 |* libLLVMOrcJIT.a, which provides a simple MCJIT-like ORC JIT. *|
22 \*===----------------------------------------------------------------------===*/
27 #include "llvm-c/Error.h"
28 #include "llvm-c/Orc.h"
29 #include "llvm-c/TargetMachine.h"
30 #include "llvm-c/Types.h"
42 * A function for constructing an ObjectLinkingLayer instance to be used
[all …]
H A DCore.h1 /*===-- llvm-c/Core.h - Core Library C Interface ------
[all...]
/freebsd-src/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DFrontendActions.cpp1 //===--- FrontendActions.cpp ----------------------------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
36 //===----------------------------------------------------------------------===//
38 //===----------------------------------------------------------------------===//
72 this->FixWhatYouCan = FixWhatYouCan; in FixItActionSuffixInserter()
76 fd = -1; in RewriteFilename()
103 FixItOpts->FixWhatYouCan = FEOpts.FixWhatYouCan; in BeginSourceFileAction()
112 Rewriter->WriteFixedFiles(); in EndSourceFileAction()
122 if (FixAction->BeginSourceFile(CI, FEOpts.Inputs[0])) { in BeginInvocation()
[all …]
/freebsd-src/contrib/llvm-project/clang/lib/Frontend/
H A DCompilerInstance.cpp1 //===--- CompilerInstance.cpp -------
803 for (auto &Module : BuiltModules) clearOutputFiles() local
1233 CompilerInstance Instance(ImportingInstance.getPCHContainerOperations(), global() local
1320 compileModule(CompilerInstance & ImportingInstance,SourceLocation ImportLoc,Module * Module,StringRef ModuleFileName) compileModule() argument
1363 __anon52f0fd0b0802(CompilerInstance &Instance) compileModule() argument
1386 readASTAfterCompileModule(CompilerInstance & ImportingInstance,SourceLocation ImportLoc,SourceLocation ModuleNameLoc,Module * Module,StringRef ModuleFileName,bool * OutOfDate) readASTAfterCompileModule() argument
1421 compileModuleAndReadASTImpl(CompilerInstance & ImportingInstance,SourceLocation ImportLoc,SourceLocation ModuleNameLoc,Module * Module,StringRef ModuleFileName) compileModuleAndReadASTImpl() argument
1446 compileModuleAndReadASTBehindLock(CompilerInstance & ImportingInstance,SourceLocation ImportLoc,SourceLocation ModuleNameLoc,Module * Module,StringRef ModuleFileName) compileModuleAndReadASTBehindLock() argument
1517 compileModuleAndReadAST(CompilerInstance & ImportingInstance,SourceLocation ImportLoc,SourceLocation ModuleNameLoc,Module * Module,StringRef ModuleFileName) compileModuleAndReadAST() argument
1997 Module *Module = nullptr; loadModule() local
[all...]
/freebsd-src/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DThreadSafeModule.h1 //===----------- ThreadSafeModule.h -- Layer interfaces ---------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // Thread safe wrappers and utilities for Module and LLVMContext.
11 //===----------------------------------------------------------------------===//
17 #include "llvm/IR/Module.h"
42 Lock(std::shared_ptr<State> S) : S(std::move(S)), L(this->S->Mutex) {} in Lock()
55 assert(S->Ctx != nullptr && in ThreadSafeContext()
60 /// instance, or null if the instance was default constructed.
61 LLVMContext *getContext() { return S ? S->Ctx.get() : nullptr; } in getContext()
[all …]
H A DLLJIT.h1 //===----- LLJIT.h -- An ORC-based JIT for compiling LLVM IR --
[all...]
H A DExecutionUtils.h1 //===- ExecutionUtils.h - Utilities for executing code in Orc ---*- C++ -*-===//
5 // SPDX-License-Identifie
35 class Module; global() variable
[all...]
/freebsd-src/contrib/llvm-project/lldb/source/Core/
H A DDynamicLoader.cpp1 //===-- DynamicLoader.cpp --------
109 UpdateLoadedSections(ModuleSP module,addr_t link_map_addr,addr_t base_addr,bool base_addr_is_offset) UpdateLoadedSections() argument
115 UpdateLoadedSectionsCommon(ModuleSP module,addr_t base_addr,bool base_addr_is_offset) UpdateLoadedSectionsCommon() argument
123 UnloadSections(const ModuleSP module) UnloadSections() argument
127 UnloadSectionsCommon(const ModuleSP module) UnloadSectionsCommon() argument
[all...]
/freebsd-src/contrib/openbsm/bin/auditfilterd/
H A Dauditfilterd_conf.c1 /*-
37 * detach is not called because it was not attached. If a module is attached
43 * per-instance state to be maintained by a module. In the future, this will
44 * also be used to support per-instance preselection state.
71 * module, just frees the memory. Does so conditional on pointers being
72 * non-NULL so that it can be used on partially allocated structures.
78 if (am->am_modulename != NULL) in auditfilter_module_free()
79 free(am->am_modulename); in auditfilter_module_free()
80 if (am->am_arg_buffer != NULL) in auditfilter_module_free()
81 free(am->am_arg_buffer); in auditfilter_module_free()
[all …]
/freebsd-src/contrib/unbound/dns64/
H A Ddns64.c2 * dns64/dns64.c - DNS64 module
39 * This file contains a module that performs DNS64 query processing.
62 * This is the default DNS64 prefix that is used when the dns64 module is listed
63 * in module-config but when the dns64-prefix variable is not present.
68 * Maximum length of a domain name in a PTR query in the .in-addr.arpa tree.
76 DNS64_INTERNAL_QUERY, /**< Internally-generated query, no DNS64
78 DNS64_NEW_QUERY, /**< Query for which we're the first module i
[all...]
/freebsd-src/contrib/llvm-project/openmp/runtime/src/thirdparty/ittnotify/
H A Dittnotify.h2 //===----------------------------------------------------------------------===//
6 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
8 //===----------------------------------------------------------------------===//
62 Instances of named entities may have instance identifiers (IDs). Some
63 API calls use instance identifiers to create relationships between
67 Some named entities must always have instance IDs. In particular, regions
71 The lifetime of instance IDs is distinct from the lifetime of
252 (!(d)->flags) ? (void)0 \
256 (!(d)->flags) ? (void)0 \
260 (!(d)->flags) ? (void)0 \
[all …]
/freebsd-src/contrib/llvm-project/lldb/source/Plugins/SymbolLocator/Default/
H A DSymbolLocatorDefault.cpp1 //===-- SymbolLocatorDefault.cpp --------
[all...]
/freebsd-src/contrib/llvm-project/lldb/source/Target/
H A DModuleCache.cpp1 //===-- ModuleCache.cpp ---------------------------------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
11 #include "lldb/Core/Module.h"
88 std::make_shared<Module>(ModuleSpec(sysroot_module_path_spec)); in DeleteExistingModule()
89 module_uuid = module_sp->GetUUID(); in DeleteExistingModule()
98 LLDB_LOGF(log, "Failed to lock module %s: %s", in DeleteExistingModule()
107 if (st.getLinkCount() > 2) // module is referred by other hosts. in DeleteExistingModule()
135 if (FileSystem::Instance().Exists(sysroot_module_path_spec)) { in CreateHostSysRootModuleLink()
162 auto file = FileSystem::Instance().Open( in ModuleLock()
[all …]
/freebsd-src/sys/contrib/device-tree/Bindings/clock/
H A Dti-clkctrl.txt4 interconnect target module. The clkctrl clock controller manages functional
5 and interface clocks for each module. Each clkctrl controller can also
6 gate one or more optional functional clocks for a module, and can have one
8 interconnect target module on omap4 and later variants.
11 the hardware offset from the clkctrl instance register space. The optional
16 Documentation/devicetree/bindings/clock/clock-bindings.txt.
19 - compatible : shall be "ti,clkctrl" or a clock domain specific name:
20 "ti,clkctrl-l4-cfg"
21 "ti,clkctrl-l4-per"
22 "ti,clkctrl-l4-secure"
[all …]
/freebsd-src/sys/contrib/device-tree/Bindings/bus/
H A Dti-sysc.txt1 Texas Instruments sysc interconnect target module wrapper binding
3 Texas Instruments SoCs can have a generic interconnect target module
6 is mostly used for interaction between module and PRCM. It participates
10 Each interconnect target module can have one or more devices connected to
12 module clocks, idle modes and interconnect level resets for the module.
16 target module and typically are named REVISION, SYSCONFIG and SYSSTATUS.
20 - compatible shall be one of the following generic types:
23 "ti,sysc-omap2"
24 "ti,sysc-omap4"
25 "ti,sysc-omap4-simple"
[all …]
/freebsd-src/contrib/llvm-project/clang/include/clang/Basic/
H A DDiagnosticASTKinds.td1 //==--- DiagnosticASTKinds.td - libast diagnostics ------
[all...]
/freebsd-src/sys/arm/ti/omap4/
H A Domap4_prcm_clks.c1 /*-
2 * SPDX-License-Identifier: BSD-3-Clause
35 #include <sys/module.h>
61 * - There is a top level omap_prcm module that defines all OMAP SoC drivers
63 * of OMAP device they are running on. This top level PRCM module is just
65 * configuring the clock - thi
338 uint32_t instance; global() member
[all...]
/freebsd-src/contrib/llvm-project/clang/include/clang/CodeGen/
H A DModuleBuilder.h1 //===--- CodeGen/ModuleBuilder.h - Build LLVM from ASTs ------
22 class Module; global() variable
[all...]
/freebsd-src/sys/contrib/device-tree/Bindings/phy/
H A Dti-phy.txt6 - compatible: Should be one of
7 "ti,control-phy-otghs" - if it has otghs_control mailbox register as on OMAP4.
8 "ti,control-phy-usb2" - if it has Power down bit in control_dev_conf register
10 "ti,control-phy-pipe3" - if it has DPLL and individual Rx & Tx power control
12 "ti,control-phy-pcie" - for pcie to support external clock for pcie and to
15 "ti,control-phy-usb2-dra7" - if it has power down register like USB2 PHY on
17 "ti,control-phy-usb2-am437" - if it has power down register like USB2 PHY on
19 - reg : register ranges as listed in the reg-names property
20 - reg-names: "otghs_control" for control-phy-otghs
21 "power", "pcie_pcs" and "control_sma" for control-phy-pcie
[all …]
/freebsd-src/contrib/llvm-project/clang/lib/Interpreter/
H A DIncrementalParser.h1 //===--- IncrementalParser.h - Incremental Compilation ----------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
11 //===----------------------------------------------------------------------===//
27 class Module; variable
42 /// Long-lived, incremental parsing action.
45 /// Compiler instance performing the incremental compilation.
61 /// When CodeGen is created the first llvm::Module gets cached in many places
63 std::unique_ptr<llvm::Module> CachedInCodeGenModule;
69 std::unique_ptr<CompilerInstance> Instance,
[all …]
/freebsd-src/sys/contrib/device-tree/Bindings/usb/
H A Dam33xx-usb.txt3 - compatible: ti,am33xx-usb
4 - reg: offset and length of the usbss register sets
5 - ti,hwmods : must be "usb_otg_hs"
8 at least a control module node, USB node and a PHY node. The second USB
11 Reset module
13 - compatible: ti,am335x-usb-ctrl-module
14 - reg: offset and length of the "USB control registers" in the "Control
15 Module" block. A second offset and length for the USB wake up control
17 - reg-names: "phy_ctrl" for the "USB control registers" and "wakeup" for
22 compatible: ti,am335x-usb-phy
[all …]

12345678910>>...38