/freebsd-src/usr.sbin/bsnmpd/modules/snmp_pf/ |
H A D | BEGEMOT-PF-MIB.txt | 1 -- 2 -- ---------------------------------------------------------------------------- 3 -- "THE BEER-WARE LICENSE" (Revision 42): 4 -- <philip@FreeBSD.org> wrote this file. As long as you retain this notice you 5 -- can do whatever you want with this stuff. If we meet some day, and you think 6 -- this stuff is worth it, you can buy me a beer in return. -Philip Paeps 7 -- ---------------------------------------------------------------------------- 8 -- 10 BEGEMOT-PF-MIB DEFINITIONS ::= BEGIN 13 MODULE-IDENTITY, OBJECT-TYPE, Counter64, Integer32, [all …]
|
/freebsd-src/contrib/bsnmp/snmp_ntp/ |
H A D | NTP-PROXY-MIB.txt | 1 -- 2 -- NTP Proxy MIB, Revision 0.2, 7/25/97 3 -- 5 NTP-PROXY-MIB DEFINITIONS ::= BEGIN 9 FROM NTP-MIB 11 Integer32, IpAddress, MODULE-IDENTITY, OBJECT-TYPE, Unsigned32, 13 FROM SNMPv2-SMI 15 TEXTUAL-CONVENTION, TruthValue 16 FROM SNMPv2-TC; 18 ntpProxyMIB MODULE-IDENTITY [all …]
|
H A D | NTP-MIB.txt | 1 -- 2 -- NTP MIB, Revision 0.2, 7/25/97 3 -- 5 NTP-MIB DEFINITIONS ::= BEGIN 8 Integer32, IpAddress, MODULE-IDENTITY, OBJECT-TYPE, Unsigned32, 10 FROM SNMPv2-SMI 12 TEXTUAL-CONVENTION, TruthValue 13 FROM SNMPv2-TC; 15 ntpMIB MODULE-IDENTITY 16 LAST-UPDATED "199707251530Z" [all …]
|
H A D | BEGEMOT-NTP-MIB.txt | 1 -- 2 -- Copyright (c) 2005 3 -- Hartmut Brandt 4 -- All rights reserved. 5 -- 6 -- Author: Harti Brandt <harti@freebsd.org> 7 -- 8 -- Redistribution and use in source and binary forms, with or without 9 -- modification, are permitted provided that the following conditions 10 -- are met: [all …]
|
/freebsd-src/usr.sbin/bsnmpd/modules/snmp_wlan/ |
H A D | BEGEMOT-WIRELESS-MIB.txt | 1 -- 2 -- Copyright (C) 2010 The FreeBSD Foundation 3 -- 4 -- This documentation was written by Shteryana Sotirova Shopova under 5 -- sponsorship from the FreeBSD Foundation. 6 -- 7 -- Redistribution and use in source and binary forms, with or without 8 -- modification, are permitted provided that the following conditions 9 -- are met: 10 -- 1. Redistributions of source code must retain the above copyright [all …]
|
/freebsd-src/lib/libsys/ |
H A D | ntp_adjtime.2 | 61 to adjust the phase and frequency of the phase- or frequency-lock loop 69 In the following, all variables that refer PPS are only relevant if 78 .Bd -literal 91 * The following read-only structure members are implemented 92 * only if the PPS signal discipline is configured in the 109 .Bl -tag -width tolerance -compact 113 call (write-only). 115 .Bl -tag -width MOD_TIMECONST -compact -offset indent 135 system time in small increments (read-write). 137 Frequency offset (scaled ppm) (read-write). [all …]
|
/freebsd-src/contrib/llvm-project/lldb/bindings/interface/ |
H A D | SBDataExtensions.i | 22 key = key * self.item_size # SBData uses byte-based indexes, but we want to use itemsize-based indexes here 58 elif value < -2147483648: 137 uint8 = property(_make_helper_uint8, None, doc='''A read only property that returns an array-like object out of which you can read uint8 values.''') 138 uint16 = property(_make_helper_uint16, None, doc='''A read only property that returns an array-lik [all...] |
H A D | SBValueExtensions.i | 23 if -count <= key < count: 51 …children = property(get_value_child_list, None, doc='''A read only property that returns a list() … 52 …child = property(get_child_access_object, None, doc='''A read only property that returns an object… 53 …name = property(GetName, None, doc='''A read only property that returns the name of this value as … 54 …type = property(GetType, None, doc='''A read only property that returns a lldb.SBType object that … 55 …size = property(GetByteSize, None, doc='''A read only property that returns the size in bytes of t… 56 …is_in_scope = property(IsInScope, None, doc='''A read only property that returns a boolean value t… 57 …format = property(GetName, SetFormat, doc='''A read/write property that gets/sets the format used … 58 …value = property(GetValue, SetValueFromCString, doc='''A read/write property that gets/sets value … 59 …value_type = property(GetValueType, None, doc='''A read only property that returns an lldb enumera… [all …]
|
H A D | SBTargetExtensions.i | 53 if -num_modules <= key < num_modules: 57 if key.find('/') == -1: 128 if -count <= key < count: 162 if -count <= key < count: 178 modules = property(get_modules_array, None, doc='''A read only property that returns a list() of lldb.SBModule objects contained in this target. This list is a list all modules that the target currently is tracking (the main executable and all dependent shared libraries).''') 179 module = property(get_modules_access_object, None, doc=r'''A read only property that returns an object that implements python operator overloading with the square brackets().\n target.module[<int>] allows array access to any modules.\n target.module[<str>] allows access to modules by basename, full path, or uuid string value.\n target.module[uuid.UUID()] allows module access by UUID.\n target.module[re] allows module access using a regular expression that matches the module full path.''') 180 process = property(GetProcess, None, doc='''A read only propert [all...] |
H A D | SBProcessExtensions.i | 8 This functions the same as `WriteMemory` except a null-terminator is appended 13 if not str[-1] == '\0': 57 if -count <= key < count: 85 …threads = property(get_process_thread_list, None, doc='''A read only property that returns a list(… 86 …thread = property(get_threads_access_object, None, doc='''A read only property that returns an obj… 87 …is_alive = property(__get_is_alive__, None, doc='''A read only property that returns a boolean val… 88 …is_running = property(__get_is_running__, None, doc='''A read only property that returns a boolean… 89 …is_stopped = property(__get_is_stopped__, None, doc='''A read only property that returns a boolean… 90 …id = property(GetProcessID, None, doc='''A read only property that returns the process ID as an in… 91 …target = property(GetTarget, None, doc='''A read only property that an lldb object that represents… [all …]
|
H A D | SBThreadExtensions.i | 32 if -count <= key < count: 48 …id = property(GetThreadID, None, doc='''A read only property that returns the thread ID as an inte… 49 …idx = property(GetIndexID, None, doc='''A read only property that returns the thread index ID as a… 50 …return_value = property(GetStopReturnValue, None, doc='''A read only property that returns an lldb… 51 …process = property(GetProcess, None, doc='''A read only property that returns an lldb object that … 52 …num_frames = property(GetNumFrames, None, doc='''A read only property that returns the number of s… 53 …frames = property(get_thread_frames, None, doc='''A read only property that returns a list() of ll… 54 …frame = property(get_frames_access_object, None, doc='''A read only property that returns an objec… 55 …name = property(GetName, None, doc='''A read only property that returns the name of this thread as… 56 …queue = property(GetQueueName, None, doc='''A read only property that returns the dispatch queue n… [all …]
|
/freebsd-src/usr.sbin/bsnmpd/modules/snmp_hast/ |
H A D | BEGEMOT-HAST-MIB.txt | 1 -- 2 -- Copyright (c) 2013 Mikolaj Golub <trociny@FreeBSD.org> 3 -- All rights reserved. 4 -- 5 -- Redistribution and use in source and binary forms, with or without 6 -- modification, are permitted provided that the following conditions 7 -- are met: 8 -- 1. Redistributions of source code must retain the above copyright 9 -- notice, this list of conditions and the following disclaimer. 10 -- 2. Redistributions in binary form must reproduce the above copyright [all …]
|
/freebsd-src/contrib/ntp/ntpsnmpd/ |
H A D | ntpv4-mib.mib | 1 -- ********************************************************************* 2 -- 3 -- The Network Time Protocol Version 4 4 -- Management Information Base (MIB) 5 -- 6 -- Authors: Heiko Gerstung (heiko.gerstung@meinberg.de) 7 -- Chris Elliott (chelliot@pobox.com) 8 -- 9 -- for the Internet Engineering Task Force (IETF) 10 -- NTP Working Group (ntpwg) [all …]
|
/freebsd-src/contrib/ncurses/man/ |
H A D | curs_threads.3x | 3 .\" Copyright 2021-2023,2024 Thomas E. Dickey * 4 .\" Copyright 2008-2015,2017 Free Software Foundation, Inc. * 32 .TH curs_threads 3X 2024-03-16 "ncurses @NCURSES_MAJOR@.@NCURSES_MINOR@" "Library calls" 55 \fB\%use_window\fP \- 56 \fIcurses\fR support for multi-threaded applications 73 The \fI\%ncurses\fP library can be configured to support multi-threaded 105 maintaining them as as read-only values in the \fISCREEN\fP structure. 108 thread-safe. 109 We would expect a multi-threaded application to have threads updating 124 coarse-grained mutexes for their respective \fI\%WINDOW\fP and [all …]
|
/freebsd-src/usr.sbin/bsnmpd/modules/snmp_bridge/ |
H A D | BEGEMOT-BRIDGE-MIB.txt | 1 -- 2 -- Copyright (C) 2006 Shteryana Shopova <syrinx@FreeBSD.org> 3 -- All rights reserved. 4 -- 5 -- Redistribution and use in source and binary forms, with or without 6 -- modification, are permitted provided that the following conditions 7 -- are met: 8 -- 1. Redistributions of source code must retain the above copyright 9 -- notice, this list of conditions and the following disclaimer. 10 -- 2. Redistributions in binary form must reproduce the above copyright [all …]
|
/freebsd-src/crypto/openssl/doc/man3/ |
H A D | BIO_s_mem.pod | 7 BIO_get_mem_ptr, BIO_new_mem_buf - memory BIO 35 Unless the memory BIO is read only any data read from it is deleted from 43 Calling BIO_reset() on a read write memory BIO clears any data in it if the 44 flag BIO_FLAGS_NONCLEAR_RST is not set, otherwise it just restores the read 46 data can be read again. On a read only BIO it similarly restores the BIO to 47 its original state and the read only data can be read again. 56 zero then it will return B<v> when it is empty and it will set the read retry 58 positive return value B<v> should be set to a negative value, typically -1. 73 if B<len> is -1 then the B<buf> is assumed to be nul terminated and its 74 length is determined by B<strlen>. The BIO is set to a read only state and [all …]
|
/freebsd-src/usr.sbin/bsnmpd/modules/snmp_netgraph/ |
H A D | BEGEMOT-NETGRAPH.txt | 1 -- 2 -- Copyright (c) 2001-2003 3 -- Fraunhofer Institute for Open Communication Systems (FhG Fokus). 4 -- All rights reserved. 5 -- 6 -- Author: Harti Brandt <harti@freebsd.org> 7 -- 8 -- Redistribution of this software and documentation and use in source and 9 -- binary forms, with or without modification, are permitted provided that 10 -- the following conditions are met: [all …]
|
/freebsd-src/secure/lib/libcrypto/man/man3/ |
H A D | BIO_s_mem.3 | 18 .\" Set up some character translations and predefined strings. \*(-- will 24 .tr \(*W- 27 . ds -- \(*W- 29 . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch 30 . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch 37 . ds -- \|\(em\| 71 .\" Fear. Run. Save yourself. No user-serviceable parts. 81 . ds #H ((1u-(\\\\n(.fu%2u))*.13m) 97 . ds ' \\k:\h'-(\\n(.wu*8/10-\*(#H)'\'\h"|\\n:u" 98 . ds ` \\k:\h'-(\\n(.wu*8/10-\*(#H)'\`\h'|\\n:u' [all …]
|
/freebsd-src/sys/contrib/device-tree/src/powerpc/fsl/ |
H A D | p1022ds.dtsi | 2 * P1022 DS Device Tree Source stub (no addresses or top-level ranges) 37 #address-cells = <1>; 38 #size-cells = <1>; 39 compatible = "cfi-flash"; 41 bank-width = <2>; 42 device-width = <1>; 46 label = "ramdisk-nor"; 47 read-only; 52 label = "diagnostic-nor"; 53 read-only; [all …]
|
H A D | p1020rdb.dtsi | 2 * P1020 RDB Device Tree Source stub (no addresses or top-level ranges) 4 * Copyright 2011-2012 Freescale Semiconductor Inc. 37 #address-cells = <1>; 38 #size-cells = <1>; 39 compatible = "cfi-flash"; 41 bank-width = <2>; 42 device-width = <1>; 48 label = "NOR (RO) Vitesse-7385 Firmware"; 49 read-only; 56 read-only; [all …]
|
H A D | p2020rdb.dts | 1 // SPDX-License-Identifier: GPL-2.0-or-later 5 * Copyright 2009-2012 Freescale Semiconductor Inc. 8 /include/ "p2020si-pre.dtsi" 37 #address-cells = <1>; 38 #size-cells = <1>; 39 compatible = "cfi-flash"; 41 bank-width = <2>; 42 device-width = <1>; 48 label = "NOR (RO) Vitesse-7385 Firmware"; 49 read-only; [all …]
|
/freebsd-src/contrib/libarchive/cpio/ |
H A D | bsdcpio.1 | 2 .\" SPDX-License-Identifier: BSD-2-Clause 4 .\" Copyright (c) 2003-2007 Tim Kientzle 22 .Ar < name-list 27 .Ar dest-dir 28 .Ar < name-list 39 .Bl -tag -compac [all...] |
/freebsd-src/lib/libsecureboot/efi/include/Guid/ |
H A D | GlobalVariable.h | 3 Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR> 7 http://opensource.org/licenses/bsd-license.php 33 // only permit the creation of variables with a UEFI Specification-defined 37 // L"Boot####" - A boot load option. 38 // L"Driver####" - A driver load option. 39 // L"SysPrep####" - A System Prep application load option. 40 // L"Key####" - Describes hot key relationship with a Boot#### load option. 91 /// The boot option for the next boot only. 101 /// The types of boot options supported by the boot manager. Should be treated as read-only. 118 /// only modified by firmware and is read-only to the OS. [all …]
|
/freebsd-src/sys/contrib/device-tree/src/arm/qcom/ |
H A D | qcom-ipq4018-ap120c-ac.dtsi | 1 // SPDX-License-Identifier: GPL-2.0-or-later OR MIT 3 #include "qcom-ipq4019.dtsi" 4 #include <dt-bindings/gpio/gpio.h> 5 #include <dt-bindings/input/input.h> 8 model = "ALFA Network AP120C-AC"; 9 compatible = "alfa-networ [all...] |
/freebsd-src/share/man/man9/ |
H A D | smr.9 | 1 .\" SPDX-License-Identifier: BSD-2-Clause 34 .Nd safe memory reclamation for lock-free data structures 74 memory-safe lock-free data structures. 75 In typical usage, read accesses to an SMR-protected data structure, such as a 77 .Dq read section 85 In contrast with reader-writer locks such as 91 Readers can always enter a read section immediately 96 so mutations do not introduce read latency. 101 operate only on per-CPU data and thus avoid some of the performance problems 102 inherent in the implementation of traditional reader-writer mutexes. [all …]
|