/freebsd-src/contrib/bsnmp/snmpd/ |
H A D | snmpmod.3 | 2 .\" Copyright (c) 2004-2005 5 .\" Copyright (c) 2001-2003 138 .Pq libbsnmp, -lbsnmp 143 .Fn FIND_OBJECT_OID_LINK_INDEX "LIST" "OID" "SUB" "LINK" "INDEX" 144 .Fn FIND_OBJECT_INT_LINK_INDEX "LIST" "OID" "SUB" "LINK" "INDEX" 145 .Fn NEXT_OBJECT_OID_LINK_INDEX "LIST" "OID" "SUB" "LINK" "INDEX" 146 .Fn NEXT_OBJECT_INT_LINK_INDEX "LIST" "OID" "SUB" "LINK" "INDEX" 149 .Fn FIND_OBJECT_OID_LINK "LIST" "OID" "SUB" "LINK" 150 .Fn FIND_OBJECT_INT_LINK "LIST" "OID" "SUB" "LINK" 151 .Fn NEXT_OBJECT_OID_LINK "LIST" "OID" "SUB" "LINK" [all …]
|
H A D | snmpmod.h | 2 * Copyright (c) 2001-2003 37 * SNMP daemon data and functions exported to modules. 61 * First set of macros is used when the link is embedded into sub-struct 62 * and links these sub-structs. The sub-struct must be the first field. 67 typedef __typeof ((PTR)->SUBF) _subf_type; \ 71 if (asn_compare_oid(&_lelem->INDEX, &(PTR)->SUBF.INDEX) > 0)\ 74 TAILQ_INSERT_TAIL((LIST), &(PTR)->SUBF, LINK); \ 76 TAILQ_INSERT_BEFORE(_lelem, &(PTR)->SUBF, LINK); \ 79 #define NEXT_OBJECT_OID_LINK_INDEX_TYPE(LIST, OID, SUB, LINK, INDEX, TYPE) ({\ argument 83 if (index_compare(OID, SUB, &_lelem->INDEX) < 0) \ [all …]
|
/freebsd-src/crypto/openssl/util/perl/OpenSSL/ |
H A D | fallback.pm | 1 # Copyright 2019-2021 The OpenSSL Project Authors. All Rights Reserved. 10 OpenSSL::fallback - push directories to the end of @INC at compile time 32 that later "use" or "require" statements will find modules which are not 43 non-Unix users must first translate their file paths to Unix conventions. 55 The sole exception is the file F<MODULES.txt>, which must contain a list of 56 sub-directories relative to the location of that F<MODULES.txt> file. 57 All these sub-directories will be appended to @INC. 62 sub glob; 66 sub import { 79 unless (-e $path [all …]
|
/freebsd-src/share/man/man9/ |
H A D | DECLARE_MODULE.9 | 1 .\" -*- nroff -*- 39 .Fn DECLARE_MODULE "name" "moduledata_t data" "sub" "order" 40 .Fn DECLARE_MODULE_TIED "name" "moduledata_t data" "sub" "order" 63 This declaration should be used by modules which depend on interfaces beyond 69 when compiled with modules built with the kernel. 74 .Bl -tag -width indent 87 .It Fa sub 101 here for example, since these modules contain a driver for a device. 102 For kernel modules that are loaded at runtime, a value of 123 .An -nosplit
|
/freebsd-src/sys/contrib/device-tree/Bindings/net/ |
H A D | keystone-netcp.txt | 6 switch sub-module to send and receive packets. NetCP also includes a packet 13 includes a 3-port Ethernet switch sub-module capable of 10Gb/s and 1Gb/s rates 16 Keystone NetCP driver has a plug-in module architecture where each of the NetCP 17 sub-modules exist as a loadable kernel module which plug in to the netcp core. 18 These sub-modules are represented as "netcp-devices" in the dts bindings. It is 19 mandatory to have the ethernet switch sub-module for the ethernet interface to 20 be operational. Any other sub-module like the PA is optional. 24 ----------------------------- 26 ----------------------------- 28 |-> NetCP Devices -> | [all …]
|
/freebsd-src/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | Module.h | 1 //===- Module.h - Describe a module -------- [all...] |
/freebsd-src/sys/sys/ |
H A D | module.h | 1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause 54 * Struct for registering modules statically via SYSINIT. 138 #define MODULE_KERNEL_MAXVER (roundup(__FreeBSD_version, 100000) - 1) 140 #define DECLARE_MODULE_WITH_MAXVER(name, data, sub, order, maxver) \ argument 144 SYSINIT(name##module, sub, order, module_register_init, &data); \ 148 #define DECLARE_MODULE(name, data, sub, order) \ argument 149 DECLARE_MODULE_WITH_MAXVER(name, data, sub, order, __FreeBSD_version) 151 #define DECLARE_MODULE(name, data, sub, order) \ argument 152 DECLARE_MODULE_WITH_MAXVER(name, data, sub, order, MODULE_KERNEL_MAXVER) [all …]
|
/freebsd-src/crypto/openssl/Configurations/ |
H A D | windows-makefile.tmpl | 4 ## {- join("\n## ", @autowarntext) -} 5 {- 9 our $sover_dirname = platform->shlib_version_as_filename(); 12 my $install_flavour = $build_scheme->[$#$build_scheme]; # last element 14 $install_flavour eq "VC-WOW" ? "ProgramFiles(x86)" 17 $install_flavour eq "VC-WOW" ? "CommonProgramFiles(x86)" 30 sub dependmagic { 36 -} 38 PLATFORM={- $config{target} -} 39 SRCDIR={- $config{sourcedir} -} [all …]
|
H A D | descrip.mms.tmpl | 3 ## {- join("\n## ", @autowarntext) -} 4 {- 9 (our $osslprefix_q = platform->osslprefix()) =~ s/\$/\\\$/; 11 our $sover_dirname = platform->shlib_version_as_filename(); 16 sub make_unix_path { 18 (my $vol, my $dirs, my $file) = File::Spec->splitpath($_[0]); 19 my @dirs = File::Spec->splitdir($dirs); 23 return File::Spec::Unix->catpath( 24 '', File::Spec::Unix->catdir('', $vol ? $vol : (), @dirs), $file); 26 sub sourcefile { [all …]
|
H A D | gentemplate.pm | 14 sub gentemplate { 17 my $generator = OpenSSL::GenTemplate->new(%opts); 20 foreach (@{$generator->{info}->{depends}->{""}}) { $generator->dogenerate($_); } 22 # Build all known targets, libraries, modules, programs and scripts. 24 foreach (@{$generator->{info}->{targets}}) { $generator->dotarget($_); } 25 foreach (@{$generator->{info}->{libraries}}) { $generator->dolib($_); } 26 foreach (@{$generator->{info}->{modules}}) { $generator->domodule($_); } 27 foreach (@{$generator->{info}->{programs}}) { $generator->dobin($_); } 28 foreach (@{$generator->{info}->{scripts}}) { $generator->doscript($_); } 29 foreach (sort keys %{$generator->{info}->{htmldocs}}) { $generator->dodocs('html', $_); } [all …]
|
/freebsd-src/contrib/unbound/util/ |
H A D | module.h | 2 * util/module.h - DNS handling module interface 39 * This file contains the interface for DNS handling modules. 41 * The module interface uses the DNS modules as state machines. The 49 * module as a whole, for entire-module state (such as a cache). And per-query 51 * the per-query state. 53 * Most per-query state should simply be allocated in the query region. 57 * shared by the modules and the rest of the system. It also contains 58 * function pointers for module-specific tasks (like sending queries). 71 * in the list of modules, an [all...] |
/freebsd-src/sys/contrib/openzfs/rpm/redhat/ |
H A D | zfs-kmod.spec.in | 4 Name: @PACKAGE@-kmod 13 Source0: @PACKAGE@-%{version}.tar.gz 14 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) 16 # Additional dependency information for the kmod sub-package must be specified 18 %(/bin/echo - [all...] |
/freebsd-src/contrib/ntp/scripts/update-leap/ |
H A D | update-leap.in | 1 #! @PATH_PERL@ -w 21 # Core modules 29 # External modules 44 # HTTPS - (default) 45 # https://www.ietf.org/timezones/data/leap-seconds 46 # HTTP - No TLS/SSL - (not recommended) 47 # http://www.ietf.org/timezones/data/leap-seconds.list 49 my $LEAPSRC = 'https://www.ietf.org/timezones/data/leap-seconds.list'; 119 # Logging - Default is to use syslog(3) if STDOUT isn't 121 if ($SYSLOG || !-t STDOUT) { [all …]
|
/freebsd-src/usr.sbin/bsdconfig/ |
H A D | bsdconfig | 2 #- 4 # Copyright (c) 2012-2021 Devin Teske 31 # When common.subr is included, it automatically scans "$@" for `-d' and/or 32 # `-D file' arguments to conditionally enable debugging. Similarly, when 33 # dialog.subr is included, it automatically scans "$@" for `-X' and/or `-S'. 62 # Alternate `local' libexec directory for add-on modules (e.g., from ports) 80 # Test for language-specific indices 81 f_quietly ls */"$index.${LANG:-$LC_ALL}" && 82 index="$index.${LANG:-$LC_ALL}" 86 sub(/\|.*/, "") [all …]
|
/freebsd-src/sys/contrib/device-tree/Bindings/remoteproc/ |
H A D | ti,omap-remoteproc.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 3 --- 4 $id: http://devicetree.org/schemas/remoteproc/ti,omap-remoteproc.yaml# 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 10 - Suman Anna <s-anna@ti.com> 13 The OMAP family of SoCs usually have one or more slave processor sub-systems 14 that are used to offload some of the processor-intensive tasks, or to manage 17 The processor cores in the sub-system are usually behind an IOMMU, and may 18 contain additional sub-modules like Internal RAM and/or ROMs, L1 and/or L2 21 The OMAP SoCs usually have a DSP processor sub-system and/or an IPU processor [all …]
|
H A D | ti,davinci-rproc.txt | 4 The TI Davinci family of SoCs usually contains a TI DSP Core sub-system that 5 is used to offload some of the processor-intensive tasks or algorithms, for 8 The processor cores in the sub-system usually contain additional sub-modules 15 Each DSP Core sub-syste [all...] |
/freebsd-src/sys/contrib/device-tree/Bindings/soc/ti/ |
H A D | ti,pruss.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 3 --- 5 $schema: http://devicetree.org/meta-schema [all...] |
/freebsd-src/sys/arm/ti/twl/ |
H A D | twl.c | 1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause 36 * copyright (C) 2005-2006 Texas Instruments, Inc. 112 #define TWL_LOCK(_sc) mtx_lock(&(_sc)->sc_mtx) 113 #define TWL_UNLOCK(_sc) mtx_unlock(&(_sc)->sc_mtx) 115 mtx_init(&_sc->sc_mtx, device_get_nameunit(_sc->sc_de [all...] |
/freebsd-src/stand/lua/ |
H A D | config.lua | 1 -- 2 -- SPDX-License-Identifier: BSD-2-Clause 3 -- [all...] |
/freebsd-src/sys/contrib/device-tree/Bindings/arm/hisilicon/ |
H A D | hisilicon.txt | 2 ---------------------------------------------------- 5 - compatible = "hisilicon,hi3660"; 9 - compatible = "hisilicon,hi3660-hikey960", "hisilicon,hi3660"; 13 - compatible = "hisilicon,hi3670"; 17 - compatible = "hisilicon,hi3670-hikey970", "hisilicon,hi3670"; 21 - compatible = "hisilicon,hi3798cv200"; 25 - compatible = "hisilicon,hi3798cv200-poplar", "hisilicon,hi3798cv200"; 29 - compatible = "hisilicon,hi3620-hi4511"; 33 - compatible = "hisilicon,hi6220"; 37 - compatible = "hisilicon,hi6220-hikey", "hisilicon,hi6220"; [all …]
|
/freebsd-src/sys/contrib/device-tree/Bindings/gpio/ |
H A D | sprd,gpio-eic.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 4 --- 5 $id: http://devicetree.org/schemas/gpio/sprd,gpio-eic.yaml# 6 $schema: http://devicetree.org/meta-schemas/core.yaml# 11 - Orson Zhai <orsonzhai@gmail.com> 12 - Baolin Wang <baolin.wang7@gmail.com> 13 - Chunyan Zhang <zhang.lyra@gmail.com> 19 controller contains 4 sub-modules, i.e. EIC-debounce, EIC-latch, EIC-async and 20 EIC-sync. But the PMIC EIC controller contains only one EIC-debounce sub- 23 The EIC-debounce sub-module provides up to 8 source input signal [all …]
|
H A D | gpio-eic-sprd.txt | 6 controller contains 4 sub-modules: EIC-debounce, EIC-latch, EIC-async and 7 EIC-sync. But the PMIC EIC controller contains only one EIC-debounce sub- 10 The EIC-debounce sub-module provides up to 8 source input signal 12 stable status (millisecond resolution) and a single-trigger mechanism 13 is introduced into this sub-module to enhance the input event detection 14 reliability. In addition, this sub-module's clock can be shut off 19 The EIC-latch sub-module is used to latch some special power down signals 20 and generate interrupts, since the EIC-latch does not depend on the APB 23 The EIC-async sub-module uses a 32kHz clock to capture the short signals 26 The EIC-sync is similar with GPIO's input function, which is a synchronized [all …]
|
/freebsd-src/contrib/ncurses/ |
H A D | mk-2nd.awk | 1 # $Id: mk-2nd.awk,v 1.23 2021/06/17 21:20:30 tom Exp $ 4 # Copyright 1998-2004,2005 Free Software Foundation, Inc. # 33 # Generate compile-rules for the modules that we are using in libraries or 36 # make-recursion but that would result in makefiles that are useless for 44 # crenames ("yes" or "no", flag to control whether -c & -o options are used) 45 # cxxrenames ("yes" or "no", flag to control whether -c & -o options are used) 47 # srcdir is expanded when "configure --srcdir" was used 49 # Fields in src/modules: 52 # $3 = source-directory 54 # Fields in src/modules past $3 are dependencies [all …]
|
/freebsd-src/contrib/llvm-project/lldb/source/Plugins/Trace/intel-pt/ |
H A D | TraceIntelPTBundleSaver.cpp | 1 //===-- TraceIntelPTBundleSaver.cpp ---------------------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 20 #include "lldb/lldb-types.h" 85 /// Build the threads sub-section of the trace bundle description file. 107 lldb::tid_t tid = thread_sp->GetID(); in BuildThreadsSection() 108 if (!trace_sp->IsTraced(tid)) in BuildThreadsSection() 114 if (trace_sp->GetTracedCpus().empty()) { in BuildThreadsSection() 119 llvm::Error err = process.GetTarget().GetTrace()->OnThreadBinaryDataRead( in BuildThreadsSection() 121 [&](llvm::ArrayRef<uint8_t> data) -> llvm::Error { in BuildThreadsSection() [all …]
|
/freebsd-src/contrib/llvm-project/clang/lib/Lex/ |
H A D | ModuleMap.cpp | 1 //===- ModuleMap.cpp - Describe the layout of modules ------- 145 Module *Sub = lookupModuleQualified(Id[I].first, Context); resolveModuleId() local 838 if (Module *Sub = lookupModuleQualified(Name, Context)) lookupModuleUnqualified() local 857 if (Module *Sub = lookupModuleQualified(Name, Parent)) findOrCreateModule() local [all...] |