/freebsd/share/man/man9/ |
H A D | khelp.9 | 2 .\" Copyright (c) 2010-2011 The FreeBSD Foundation 67 module may be able to associate per-object data for maintaining relevant state 78 .Ss Information for Khelp Module Implementors 85 .Bd -literal -offset indent 121 Returning a non-zero value from the 123 function will abort the registration process and fail to load the module. 128 framework during the deregistration process, after the module has been 143 module requires persistent per-object data storage. 148 modules to associate persistent per-object data, so a manual check is required. 158 module with the [all …]
|
H A D | mod_cc.9 | 2 .\" Copyright (c) 2008-2009 Lawrence Stewart <lstewart@FreeBSD.org> 3 .\" Copyright (c) 2010-2011 The FreeBSD Foundation 54 connection-by-connection basis, or use the system default (see 64 .Bd -literal -offset indent 86 TCP_CA_NAME_MAX-1 characters in length (the TCP_CA_NAME_MAX define lives in 92 function is called when a new module is loaded into the system but before the 94 It should be implemented if a module needs to set up some global state prior to 96 Returning a non-zero value from 98 will cause the loading of the module to fail. 102 function is called prior to unloading an existing module from the kernel. [all …]
|
H A D | hhook.9 | 2 .\" Copyright (c) 2010-2011 The FreeBSD Foundation 68 Khelp is responsible for registering and deregistering Khelp module hook 76 .Ss Information for Khelp Module Implementors 114 argument is a pointer to the persistent per-object storage allocated for use by 115 the module if required. 116 The pointer will only ever be NULL if the module did not request per-object 125 function to access data belonging to a different Khelp module. 132 .Bd -literal -offset indent 150 .Bl -bullet 261 if the subsystem provides the ability for Khelp modules to associate per-object [all …]
|
/freebsd/sys/dev/ath/ |
H A D | if_athrate.h | 1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause 4 * Copyright (c) 2004-2008 Sam Leffler, Errno Consulting 39 * A rate control module is responsible for choosing the transmit rate 43 * Only one module may be present at a time; the driver references 45 * to be supported we'll need to switch to a registration-based scheme 48 * An instance of the rate control module is attached to each device 49 * at attach time and detached when the device is destroyed. The module 51 * sets of storage are opaque except for the size of the per-node storage 52 * which must be provided when the module is attached. [all …]
|
/freebsd/lib/libpmc/pmu-events/arch/x86/goldmontplus/ |
H A D | cache.json | 26 "BriefDescription": "Cycles code-fetch stalled due to an outstanding ICache miss.", 45 …from the intra-die interconnect (IDI) fabric. The XQ may reject transactions from the L2Q (non-cac… 86 …"BriefDescription": "Memory uop retired where cross core or cross module HITM occurred (Precise ev… 216 "BriefDescription": "Memory uops retired that split a cache-line (Precise event capable)", 229 "BriefDescription": "Load uops retired that split a cache-line (Precise event capable)", 242 "BriefDescription": "Stores uops retired that split a cache-line (Precise event capable)", 296 …nd & prefetch) miss the L2 cache with a snoop hit in the other processor module, data forwarding i… 306 …nd & prefetch) miss the L2 cache with a snoop hit in the other processor module, data forwarding i… 311 …s (demand & prefetch) true miss for the L2 cache with a snoop miss in the other processor module.", 321 …tch) true miss for the L2 cache with a snoop miss in the other processor module. Requires MSR_OFF… [all …]
|
/freebsd/usr.bin/clang/llvm-bcanalyzer/ |
H A D | llvm-bcanalyzer.1 | 4 .nr rst2man-indent-level 0 7 \\$1 \\n[an-margin] 8 level \\n[rst2man-indent-level] 9 level margin: \\n[rst2man-indent\\n[rst2man-indent-level]] 10 - 11 \\n[rst2man-indent0] 12 \\n[rst2man-indent1] 13 \\n[rst2man-indent2] 18 . nr rst2man-indent\\n[rst2man-indent-level] \\n[an-margin] 19 . nr rst2man-indent-level +1 [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
H A D | DwarfException.h | 1 //===-- DwarfException.h - Dwarf Exception Framework -----------*- C++ -*--===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 11 //===----------------------------------------------------------------------===// 25 /// Per-function flag to indicate if .cfi_personality should be emitted. 28 /// Per-function flag to indicate if .cfi_personality must be emitted. 31 /// Per-function flag to indicate if .cfi_lsda should be emitted. 34 /// Per-function flag to indicate if frame CFI info should be emitted. 37 /// Per-module flag to indicate if .cfi_section has beeen emitted. 40 /// Vector of all personality functions seen so far in the module. [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/bus/ |
H A D | arm,integrator-ap-lm.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 3 --- 4 $id: http://devicetree.org/schemas/bus/arm,integrator-ap-lm.yaml# 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 7 title: Integrator/AP Logic Module extension bus 10 - Linus Walleij <linusw@kernel.org> 15 determine if a logic module is connected at index 0, 1, 2 or 3. The logic 16 module connector is described in this binding. The logic modules per se 17 then have their own specific per-module bindings and they will be described 18 as subnodes under this logic module extension bus. [all …]
|
/freebsd/sys/netinet/ |
H A D | sctp_sysctl.h | 1 /*- 2 * SPDX-License-Identifier: BSD-3-Clause 5 * Copyright (c) 2008-2012, by Randall Stewart. All rights reserved. 6 * Copyright (c) 2008-2012, by Michael Tuexen. All rights reserved. 93 /* JRS - Variable for default congestion control module */ 95 /* RS - Variable for default stream scheduling module */ 138 /* autoasconf: Enable SCTP Auto-ASCONF */ 139 #define SCTPCTL_AUTOASCONF_DESC "Enable SCTP Auto-ASCONF" 144 /* autoasconf: Enable SCTP Auto-ASCONF */ 145 #define SCTPCTL_MULTIPLEASCONFS_DESC "Enable SCTP Multiple-ASCONFs" [all …]
|
/freebsd/usr.bin/clang/llvm-pdbutil/ |
H A D | llvm-pdbutil.1 | 4 .nr rst2man-indent-level 0 7 \\$1 \\n[an-margin] 8 level \\n[rst2man-indent-level] 9 level margin: \\n[rst2man-indent\\n[rst2man-indent-level]] 10 - 11 \\n[rst2man-indent0] 12 \\n[rst2man-indent1] 13 \\n[rst2man-indent2] 18 . nr rst2man-indent\\n[rst2man-indent-level] \\n[an-margin] 19 . nr rst2man-indent-level +1 [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/timer/ |
H A D | nxp,tpm-timer.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 3 --- 4 $id: http://devicetree.org/schemas/timer/nxp,tpm-timer.yaml# 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 7 title: NXP Low Power Timer/Pulse Width Modulation Module (TPM) 10 - Dong Aisheng <aisheng.dong@nxp.com> 13 The Timer/PWM Module (TPM) supports input capture, output compare, 23 - const: fsl,imx7ulp-tpm 24 - items: 25 - const: fsl,imx8ulp-tpm [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/net/bluetooth/ |
H A D | brcm,bcm4377-bluetooth.yaml | 1 # SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause) 3 --- 4 $id: http://devicetree.org/schemas/net/bluetooth/brcm,bcm4377-bluetooth.yaml# 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 10 - Sven Peter <sven@svenpeter.dev> 13 This binding describes Broadcom BCM4377 family PCIe-attached bluetooth chips 14 usually found in Apple machines. The Wi-Fi part of the chip is described in 15 bindings/net/wireless/brcm,bcm4329-fmac.yaml. 18 - $ref: bluetooth-controller.yaml# 23 - pci14e4,5fa0 # BCM4377 [all …]
|
/freebsd/share/man/man4/ |
H A D | hwpmc.4 | 1 .\" Copyright (c) 2003-2008 Joseph Koshy 39 .Bd -ragged -offset indent 44 .Bd -ragged -offset indent 48 To load the driver as a module at boot time: 49 .Bd -literal -offset indent 54 .Bd -ragged -offset indent 62 .Bd -ragged -offset indent 75 The driver supports multi-processor systems. 89 .Bl -tag -width ".Em Process-scope" 90 .It Em "Process-scope" [all …]
|
H A D | mps.4 | 4 .\" Copyright (c) 2015-2017 Avago Technologies 5 .\" Copyright (c) 2015-2017 Broadcom Ltd. 45 .Nd "LSI Fusion-MPT 2 IT/IR 6Gb/s Serial Attached SCSI/SATA driver" 49 .Bd -ragged -offset indent 55 The driver can be loaded as a module at boot time by placing this line in 57 .Bd -literal -offset indent 64 Fusion-MPT 2 IT/IR 72 .Bl -bullet -compact 88 Intel Integrated RAID Module RMS25JB040 90 Intel Integrated RAID Module RMS25JB080 [all …]
|
/freebsd/contrib/unbound/validator/ |
H A D | validator.h | 2 * validator/validator.h - secure validator DNS query response module 39 * This file contains a module that performs validation of DNS queries. 45 #include "util/module.h" 58 * will be primed no more often than this interval. Used when harden- 59 * dnssec-stripped is off and the trust anchor fails. 70 #define SENTINEL_IS "root-key-sentinel-is-ta-" 72 #define SENTINEL_NOT "root-key-sentinel-not-ta-" 112 * NSEC3 maximum iteration count per signing key size. 118 * NSEC3 maximum iteration count per signing key size. 145 * Per query state for the validator module. [all …]
|
/freebsd/contrib/unbound/doc/ |
H A D | unbound.conf.5 | 3 .\" unbound.conf.5 -- unbound.conf manual 12 \- Unbound configuration file. 27 \fIunbound\-checkconf\fR(8) 34 $ unbound \-c /etc/unbound/unbound.conf 53 # mount \-\-bind \-n /dev/urandom /etc/unbound/dev/urandom 54 # and mount \-\-bind \-n /dev/log /etc/unbound/dev/log 62 access\-control: 10.0.0.0/8 allow 63 access\-control: 2001:DB8::/64 allow 82 .B include\-toplevel: 94 information including short information per query. Level 3 gives query level [all …]
|
H A D | example.conf | 13 #include-toplevel: "otherfile.conf" 24 # statistics-interval: 0 27 # statistics-interval, every time it also writes stats to the 28 # shared memory segment keyed with shm-key. 29 # shm-enable: no 32 # shm-key: 11777 35 # statistics-cumulative: no 38 # printed from unbound-control. default off, because of speed. 39 # extended-statistics: no 42 # num-threads: 1 [all …]
|
H A D | unbound.conf.5.in | 3 .\" unbound.conf.5 -- unbound.conf manual 12 \- Unbound configuration file. 27 \fIunbound\-checkconf\fR(8) 34 $ unbound \-c /etc/unbound/unbound.conf 53 # mount \-\-bind \-n /dev/urandom /etc/unbound/dev/urandom 54 # and mount \-\-bind \-n /dev/log /etc/unbound/dev/log 62 access\-control: 10.0.0.0/8 allow 63 access\-control: 2001:DB8::/64 allow 82 .B include\-toplevel: 94 information including short information per query. Level 3 gives query level [all …]
|
H A D | example.conf.in | 13 #include-toplevel: "otherfile.conf" 24 # statistics-interval: 0 27 # statistics-interval, every time it also writes stats to the 28 # shared memory segment keyed with shm-key. 29 # shm-enable: no 32 # shm-key: 11777 35 # statistics-cumulative: no 38 # printed from unbound-control. Default off, because of speed. 39 # extended-statistics: no 42 # rpz-actions) from printing if their value is 0. [all …]
|
/freebsd/sys/dev/pms/freebsd/driver/ini/src/ |
H A D | agdef.h | 4 *Copyright (c) 2014 PMC-Sierra, Inc. All rights reserved. 27 Module Name: 30 Linux iSCSI/FC Initiator driver module constant define header file 32 EW - Yiding(Eddie) Wang 34 Kernel or loadable module 41 $Date: 2012-01-06 17:12:27 -0800 (Fri, 06 Jan 2012) $09-27-2001 47 ---- ---- ---- ----------- 48 EW 09-17-2004 1.0.0 Constant definitions 59 #define AGTIAPI_MAX_LUN 256 /* Max # luns per target */ 60 #define AGTIAPI_MAX_DEVICE 128 //64 //2048//1024 /* Max # device per channel */ [all …]
|
/freebsd/contrib/unbound/iterator/ |
H A D | iterator.h | 2 * iterator/iterator.h - iterative resolver DNS query response module 39 * This file contains a module that performs recursive iterative DNS query 47 #include "util/module.h" 61 /** max number of target lookups per qstate, per delegation point */ 79 /* max number of time-outs for minimised query. Prevents resolving failures 87 #define MINIMISE_MULTIPLE_LABS (MAX_MINIMISE_COUNT - MINIMISE_ONE_LAB) 88 /** at what query-sent-count to stop target fetch policy */ 123 /** NAT64 prefix address, cf. dns64_env->prefix_addr */ 146 * described as a simple number (per dependency level): 147 * negative numbers (usually just -1) mean fetch-all, [all …]
|
/freebsd/contrib/ntp/html/hints/ |
H A D | notes-xntp-v3 | 11 previous versions as non-configured peers; for version-2 configured 24 clock. About once per day the current file is closed and a new one 37 require a 1-pulse-per-second signal, (b) supports both format 0 43 This requires a special STREAMS module. 45 7. In Version 2 special line-discipline modules were required for the 51 8. Support for an external 1-pulse-per-second (pps) signal is 54 of the pulse establishes the on-time epoch within an interval 59 9. The clock-selection and poll-update procedures have been modified 65 versions of this distribution a DES-encrypted version of this routine 71 11. As an alternative to the DES-based authentication mechanism, an [all …]
|
/freebsd/contrib/bsnmp/ |
H A D | oid-list | 1 $Begemot: bsnmp/trunk/oid-list 1512 2011-02-03 15:16:22Z brandt_h $ 6 an official OID for Fokus: enterprises 12325 and assigned the sub-OID 1 12 1 BEGEMOT-SNMPD 13 2 BEGEMOT-NETGRAPH snmpd netgraph module 14 3 BEGEMOT-IP snmpd IP related stuff. 15 4 BEGEMOT-IFACE-MIB interface MIB private stuff 16 5 BEGEMOT-IPSTATS-MIB IP statistics 17 6 BEGEMOT-IP-MIB IP objects 18 100 BEGEMOT-ILMID snmpd ILMID module 19 101 BEGEMOT-ATM snmpd ATM module [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/ofed/opensm/include/opensm/ |
H A D | osm_log.h | 2 * Copyright (c) 2004-2009 Voltaire, Inc. All rights reserved. 3 * Copyright (c) 2002-2012 Mellanox Technologies LTD. All rights reserved. 4 * Copyright (c) 1996-2003 Intel Corporation. All rights reserved. 16 * - Redistributions of source code must retain the above 20 * - Redistributions in binary form must reproduce the above 115 DEFAULT - turn on ERROR and INFO only 149 * This looks up the given file ID in the per module log table. 163 * [in] File ID for module 166 * The log level from the per module logging structure for this file ID. 174 * This sets log level for the given file ID in the per module log table. [all …]
|