/freebsd/contrib/openbsm/bsm/ |
H A D | audit_filter.h | 1 /*- 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/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
H A D | ClangModulesDeclVendor.cpp | 1 //===-- ClangModulesDeclVendor.cpp ----------------------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 44 /// them as strings so we can provide them to the user in case a module failed 92 bool AddModule(const SourceModule &module, ModuleVector *exported_modules, 108 clang::Module *module); 110 void ReportModuleExports(ModuleVector &exports, clang::Module *module); 125 typedef std::map<ImportedModule, clang::Module *> ImportedModuleMap; 149 m_diag_printer->HandleDiagnostic(DiagLevel, info); in HandleDiagnostic() 150 m_os->flush(); in HandleDiagnostic() [all …]
|
H A D | CxxModuleHandler.h | 1 //===-- 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/contrib/llvm-project/clang/include/clang/Frontend/ |
H A D | CompilerInstance.h | 1 //===-- CompilerInstance.h - Clang Compiler Instance ------------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 54 class Module; variable 61 /// CompilerInstance - Helper class for managing a single instance of the Clang 71 /// The compiler instance generally owns the instance of all the objects that it 75 /// The compiler instance is intended to simplify clients, but not to lock them 76 /// in to the compiler instance for everything. When possible, utility functions 80 /// The options used in this compiler instance. 83 /// The diagnostics engine instance. [all …]
|
/freebsd/contrib/llvm-project/clang/lib/Frontend/ |
H A D | CompilerInstance.cpp | 1 //===--- CompilerInstance.cpp ---------------------------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 45 #include "llvm/Config/llvm-config.h" 85 (TheASTReader && TheASTReader->isGlobalIndexUnavailable() && in shouldBuildGlobalModuleIndex() 108 // Create the target instance. in createTarget() 121 TO->Triple = llvm::Triple::normalize(getFrontendOpts().AuxTriple); in createTarget() 123 TO->CPU = *getFrontendOpts().AuxTargetCPU; in createTarget() 125 TO->FeaturesAsWritten = *getFrontendOpts().AuxTargetFeatures; in createTarget() 126 TO->HostTriple = getTarget().getTriple().str(); in createTarget() [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm-c/ |
H A D | LLJIT.h | 1 /*===---------- [all...] |
H A D | Core.h | 1 /*===-- llvm-c/Core.h - Core Library C Interface ------------------*- C -*-===*\ 6 |* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception *| 8 |*===----------------------------------------------------------------------===*| 13 \*===----------------------------------------------------------------------===*/ 18 #include "llvm-c/Deprecated.h" 19 #include "llvm-c/ErrorHandling.h" 20 #include "llvm-c/ExternC.h" 22 #include "llvm-c/Types.h" 27 * @defgroup LLVMC LLVM-C: C interface to LLVM 29 * This module exposes parts of the LLVM library as a C API. [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/ |
H A D | ThreadSafeModule.h | 1 //===----------- 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 D | LLJIT.h | 1 //===----- LLJIT.h -- An ORC-based JIT for compiling LLVM IR ----*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 9 // An ORC-based JIT for compiling LLVM IR. 11 //===----------------------------------------------------------------------===// 35 /// A pre-fabricated ORC JIT stack that can serve as an alternative to MCJIT. 58 /// Destruct this instance. If a multi-threaded instance, waits for all 62 /// Returns the ExecutionSession for this instance. 65 /// Returns a reference to the triple for this instance. 68 /// Returns a reference to the DataLayout for this instance. [all …]
|
H A D | ExecutionUtils.h | 1 //===- ExecutionUtils.h - Utilities for executing code in Orc ---*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 11 //===----------------------------------------------------------------------===// 35 class Module; variable 47 /// of an llvm.global_ctors/llvm.global_dtors instance. 55 /// This class provides a read-only view of the element with any casts on 66 /// Construct an iterator instance. If End is true then this iterator 76 /// Pre-increment iterator. 79 /// Post-increment iterator. [all …]
|
/freebsd/contrib/unbound/dns64/ |
H A D | dns64.c | 2 * 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/contrib/openbsm/bin/auditfilterd/ |
H A D | auditfilterd_conf.c | 1 /*- 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/contrib/llvm-project/openmp/runtime/src/thirdparty/ittnotify/ |
H A D | ittnotify.h | 2 //===----------------------------------------------------------------------===// 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/contrib/llvm-project/lldb/source/Core/ |
H A D | DynamicLoader.cpp | 1 //===-- DynamicLoader.cpp -------------------------------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 12 #include "lldb/Core/Module.h" 26 #include "lldb/lldb-private-interfaces.h" 70 return m_process->GetStopOnSharedLibraryEvents(); in GetStopWhenImagesChange() 74 m_process->SetStopOnSharedLibraryEvents(stop); in SetStopWhenImagesChange() 78 Target &target = m_process->GetTarget(); in GetTargetExecutable() 82 if (FileSystem::Instance().Exists(executable->GetFileSpec())) { in GetTargetExecutable() 83 ModuleSpec module_spec(executable->GetFileSpec(), in GetTargetExecutable() [all …]
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolLocator/Default/ |
H A D | SymbolLocatorDefault.cpp | 1 //===-- SymbolLocatorDefault.cpp ------------------------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 16 #include "lldb/Core/Module.h" 81 arch ? arch->GetArchitectureName() : "<NULL>", (const void *)uuid); in LocateExecutableObjectFile() 96 // Keep "symbols.enable-external-lookup" description in sync with this function. 102 FileSystem::Instance().Exists(symbol_file_spec)) in LocateExecutableSymbolFile() 111 // Add module directory. in LocateExecutableSymbolFile() 114 FileSystem::Instance().ResolveSymbolicLink(module_file_spec, in LocateExecutableSymbolFile() 120 FileSystem::Instance().Resolve(file_spec); in LocateExecutableSymbolFile() [all …]
|
/freebsd/contrib/llvm-project/lldb/source/Target/ |
H A D | ModuleCache.cpp | 1 //===-- 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/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | DiagnosticASTKinds.td | 1 //==--- DiagnosticASTKinds.td - libast diagnostics ------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 32 "%select{non-constexpr|undefined}0 %select{function|constructor}1 %2 cannot " 50 "static type %1 of operand is a non-public base class of dynamic type %2|" 53 "%3 is a non-public base class of dynamic type %2 of operand}0">; 58 "non-literal type %0 cannot be used in a constant expression">; 63 "address of non-static constexpr variable %0 may differ on each invocation " 67 "heap-allocated object is not a constant expression">; 80 "%select{array of %2 element%plural{1:|:s}2|non-array object}1 " [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/clock/ |
H A D | ti-clkctrl.txt | 4 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/sys/contrib/device-tree/Bindings/bus/ |
H A D | ti-sysc.txt | 1 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/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | AMDGPULowerModuleLDSPass.cpp | 1 //===-- AMDGPULowerModuleLDSPass.cpp ------------------------------*- C++ -*-=// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 9 // This pass eliminates local data store, LDS, uses from non-kernel functions. 16 // kernels this is straightforward - assign an integer to the kernel for the 27 // - memory is limited and exceeding it halts compilation 28 // - a global accessed by one kernel exists independent of other kernels 29 // - a global exists independent of simultaneous execution of the same kernel 30 // - the address of the global may be different from different kernels as they 32 // - if the address is allowed to differ, functions need help to find it [all …]
|
/freebsd/contrib/llvm-project/lldb/source/Symbol/ |
H A D | ObjectFile.cpp | 1 //===-- ObjectFile.cpp ----------------------------------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 10 #include "lldb/Core/Module.h" 25 #include "lldb/lldb-private.h" 47 return object_container_up->GetObjectFile(file); in CreateObjectFromContainer() 57 "ObjectFile::FindPlugin (module = %s, file = %p, file_offset = " in FindPlugin() 59 module_sp->GetFileSpec().GetPath().c_str(), in FindPlugin() 70 const bool file_exists = FileSystem::Instance().Exists(*file); in FindPlugin() 74 if (file_exists && module_sp->GetObjectName()) { in FindPlugin() [all …]
|
H A D | LocateSymbolFile.cpp |
|
/freebsd/sys/contrib/device-tree/Bindings/usb/ |
H A D | am33xx-usb.txt | 3 - 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 …]
|
/freebsd/contrib/llvm-project/clang/include/clang/CodeGen/ |
H A D | ModuleBuilder.h | 1 //===--- CodeGen/ModuleBuilder.h - Build LLVM from ASTs ---------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 11 //===----------------------------------------------------------------------===// 23 class Module; variable 61 /// Return the module that this code generator is building into. 65 /// diagnostic will have been generated in this case, and the module 68 /// It will also return null if the module is released. 69 llvm::Module *GetModule(); 71 /// Release ownership of the module to the caller. [all …]
|
/freebsd/usr.sbin/bsnmpd/modules/snmp_bridge/ |
H A D | RSTP-MIB.txt | 1 -- 2 -- Copyright (C) The Internet Society (2005). 3 -- 4 -- This document is subject to the rights, licenses and restrictions 5 -- contained in BCP 78, and except as set forth therein, the authors 6 -- retain all their rights. 7 -- 8 -- This document and the information contained herein are provided on an 9 -- "AS IS" basis and THE CONTRIBUTOR, THE ORGANIZATION HE/SHE REPRESENTS 10 -- OR IS SPONSORED BY (IF ANY), THE INTERNET SOCIETY AND THE INTERNET [all …]
|