Home
last modified time | relevance | path

Searched full:layer (Results 1 – 25 of 1890) sorted by relevance

12345678910>>...76

/freebsd/sys/contrib/device-tree/Bindings/display/
H A Dxylon,logicvc-display.yaml25 In version 3 of the controller, each layer has fixed memory offset and address
103 xylon,background-layer:
106 The last layer is used to display a black background (C_USE_BACKGROUND).
107 The layer must still be registered.
126 "^layer@[0-9]+$":
133 xylon,layer-depth:
135 description: Layer depth (C_LAYER_X_DATA_WIDTH).
137 xylon,layer-colorspace:
143 description: Layer colorspace (C_LAYER_X_TYPE).
145 xylon,layer-alpha-mode:
[all …]
/freebsd/sbin/mount_nullfs/
H A Dmount_nullfs.838 .Nd "mount a loopback file system sub-tree; demonstrate the use of a null file system layer"
49 layer, duplicating a sub-tree of the file system
81 all lower-layer vnodes, not just over directory vnodes.
95 Disable metadata caching in the null layer.
96 Some lower-layer file systems may force this option.
108 The null layer has two purposes.
109 First, it serves as a demonstration of layering by providing a layer
113 Second, the null layer can serve as a prototype layer.
114 Since it provides all necessary layer framewor
[all...]
/freebsd/sbin/mount_unionfs/
H A Dmount_unionfs.855 layer and
59 layer.
77 becomes the lower layer and
79 becomes the upper layer.
84 Specifies the way to create a file or a directory in the upper layer
92 lower layer to the created file in the upper layer.
99 Specifies whether whiteouts should always be made in the upper layer
101 lower layer.
136 Filenames are looked up in the upper layer and then in the
137 lower layer.
[all …]
/freebsd/usr.sbin/ppp/
H A Dlink.c43 #include "layer.h"
163 * the async layer record how much it's padded the packet in the mbuf's in link_PendingLowPriorityData()
251 int layer; in link_PushPacket() local
255 * ``push'' function in each layer starting at the top. in link_PushPacket()
263 bp->priv = 0; /* Adjusted by the async layer ! */ in link_PushPacket()
264 for (layer = l->nlayers; layer && bp; layer--) in link_PushPacket()
265 if (l->layer[layer - 1]->push != NULL) in link_PushPacket()
266 bp = (*l->layer[layer - 1]->push)(b, l, bp, pri, &proto); in link_PushPacket()
280 int layer; in link_PullPacket() local
284 * ``pull'' function in each layer starting at the bottom. in link_PullPacket()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/TraceExporter/common/
H A DTraceHTR.h71 /// Function calls are identified in the instruction layer by finding 'call'
93 /// Constructor for a block of an HTR layer.
96 /// The offset of the start of this block in the previous layer.
100 /// layer.
107 /// Get the offset of the start of this block in the previous layer.
114 /// previous layer.
127 /// Offset in the previous layer
130 /// layer
136 /// HTR layer interface
140 /// Construct new HTR layer.
[all …]
H A DTraceHTR.cpp250 HTRBlockLayerUP lldb_private::BasicSuperBlockMerge(IHTRLayer &layer) { in BasicSuperBlockMerge() argument
252 std::make_unique<HTRBlockLayer>(layer.GetLayerId() + 1); in BasicSuperBlockMerge()
254 if (layer.GetNumUnits()) { in BasicSuperBlockMerge()
256 // and tails, one for merging/creating the next layer A 'head' is defined to in BasicSuperBlockMerge()
270 layer.GetMetadataByIndex(0).GetFirstInstructionLoadAddress(); in BasicSuperBlockMerge()
271 size_t num_units = layer.GetNumUnits(); in BasicSuperBlockMerge()
275 layer.GetMetadataByIndex(i).GetFirstInstructionLoadAddress(); in BasicSuperBlockMerge()
296 layer.GetMetadataByIndex(i).GetFirstInstructionLoadAddress(); in BasicSuperBlockMerge()
298 layer.GetMetadataByIndex(i + 1).GetFirstInstructionLoadAddress(); in BasicSuperBlockMerge()
303 lldb::addr_t last_id = layer.GetMetadataByIndex(num_units - 1) in BasicSuperBlockMerge()
[all …]
/freebsd/contrib/libarchive/libarchive/
H A Dlibarchive_internals.354 layer, a format layer that understands the archive file format,
55 a compression layer, and an I/O layer.
56 The I/O layer is completely exposed to clients who can replace
76 The lowest layer is the I/O layer.
77 This layer can be overridden by clients, but most clients use
82 The compression layer calls the I/O layer t
[all...]
/freebsd/sys/contrib/ena-com/
H A Dena_com.h470 * @ena_dev: ENA communication layer struct
481 * @ena_dev: ENA communication layer struct
488 * @ena_dev: ENA communication layer struct
495 * @ena_dev: ENA communication layer struct
503 * @ena_dev: ENA communication layer struct
508 * @ena_dev: ENA communication layer struct
515 * @ena_dev: ENA communication layer struct
522 * @ena_dev: ENA communication layer struct
530 * @ena_dev: ENA communication layer struct
535 * @ena_dev: ENA communication layer struct
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/TraceExporter/docs/
H A Dhtr.rst11 **Layer:** The representation of trace data between passes. For Intel PT there are two types of layers:
13 **Instruction Layer:** Composed of the load addresses of the instructions in the trace. In an effort to save space,
15 single instruction layer.
17 **Block Layer:** Composed of blocks - a block in *layer n* refers to a sequence of blocks in *layer n - 1*. A block in
18 *layer 1* refers to a sequence of instructions in *layer 0* (the instruction layer). Metadata is stored for each block in
19 a block layer
[all...]
/freebsd/sys/compat/linuxkpi/common/src/
H A Dlinux_idr.c163 idr_pos(int id, int layer) in idr_pos() argument
165 return (id >> (IDR_BITS * layer)) & IDR_MASK; in idr_pos()
200 idr_remove_layer(struct idr_layer *il, int layer) in idr_remove_layer() argument
206 if (layer == 0) { in idr_remove_layer()
212 idr_remove_layer(il->ary[i], layer - 1); in idr_remove_layer()
231 int layer; in idr_remove_locked() local
236 layer = idr->layers - 1; in idr_remove_locked()
243 while (layer && il) { in idr_remove_locked()
244 idx = idr_pos(id, layer); in idr_remove_locked()
247 layer--; in idr_remove_locked()
[all …]
/freebsd/contrib/wpa/src/tls/
H A Dtlsv1_record.c20 * tlsv1_record_set_cipher_suite - TLS record layer: Set cipher suite
21 * @rl: Pointer to TLS record layer data
25 * This function is used to prepare TLS record layer for cipher suite change.
68 * tlsv1_record_change_write_cipher - TLS record layer: Change write cipher
69 * @rl: Pointer to TLS record layer data
72 * This function changes TLS record layer to use the new cipher suite
77 wpa_printf(MSG_DEBUG, "TLSv1: Record Layer - New write cipher suite " in tlsv1_record_change_write_cipher()
102 * tlsv1_record_change_read_cipher - TLS record layer: Change read cipher
103 * @rl: Pointer to TLS record layer data
106 * This function changes TLS record layer to use the new cipher suite
[all …]
/freebsd/share/man/man9/
H A Down.984 The network layer designates the next command as being either for all
86 The network layer also specifies the speed used by the link layer.
146 is the client device (the presentation layer device) sending the command.
161 presentation layer devices can use to coordinate access.
189 The lowest relevant layer, the link layer, defines the polling windows
191 The network layer is built on top of the link layer
193 The transport layer defines commands and responses from the devices.
194 The presentation layer is composed of the device specific commands and
200 Presentation layer devices (children of the newbus
H A Difnet.9195 describing the link layer implemented by the interface (if any)
199 (Some trivial interfaces do not provide any link layer addresses;
226 A pointer to the common data for the interface's layer 2 protocol.
467 layer:
470 Pass a packet to an appropriate upper layer as determined
471 from the link-layer header of the packet.
476 can be shared among multiple drivers utilizing the same link-layer
542 for validity, and if necessary compute a link-layer group which
626 Control flags for the link layer.
862 Length of a link-layer address on this device, or zero if there are
[all …]
/freebsd/sys/dev/isci/scil/
H A Dscic_sds_phy_registers.h61 * to the SCU link layer registers.
71 //* SCU LINK LAYER REGISTER OPERATIONS
75 * Macro to read the transport layer register associated with this phy
85 * Macro to write the transport layer register associated with this phy
96 //* Transport Layer registers controlled by the phy object
100 * This macro reads the Transport layer control register
106 * This macro writes the Transport layer control register
112 * This macro reads the Transport layer address translation register
118 * This macro writes the Transport layer address translation register
124 * This macro writes the STP Transport Layer Direct Attached RNi register.
[all …]
/freebsd/sys/fs/nullfs/
H A Dnull_vnops.c39 * Null Layer
43 * The null layer duplicates a portion of the filesystem
48 * all lower-layer vnodes, not just over directory vnodes.
50 * The null layer has two purposes. First, it serves as a demonstration
51 * of layering by proving a layer which does nothing. (It actually
53 * more than nothing.) Second, the null layer can serve as a prototype
54 * layer. Since it provides all necessary layer framework,
56 * with a null layer.
58 * The remainder of this man page examines the null layer a
[all...]
/freebsd/contrib/libpcap/
H A Dpcap_datalink_val_to_name.3pcap24 name or description for a link-layer header type value
39 translates a link-layer header type value to the corresponding
40 link-layer header type name, which is the
42 name for the link-layer header type value with the
51 translates a link-layer header type value to a short description of that
52 link-layer header type.
59 translates a link-layer header type value to a short description of that
60 link-layer header type just like
/freebsd/contrib/libpcap/pcap/
H A Dsll.h53 * a 2-byte link-layer type;
55 * a 2-byte link-layer address length;
57 * an 8-byte source link-layer address, whose actual length is
60 * All fields except for the link-layer address are in network byte order.
63 * LINUX_SLL_ values below. If you must change the link-layer header
80 * A DLT_LINUX_SLL fake link-layer header.
87 uint16_t sll_hatype; /* link-layer address type */
88 uint16_t sll_halen; /* link-layer address length */
89 uint8_t sll_addr[SLL_ADDRLEN]; /* link-layer address */
94 * A DLT_LINUX_SLL2 fake link-layer header.
[all …]
/freebsd/share/doc/smm/18.net/
H A D2.t41 session layer (layer 3) and all of the transport and
44 The network layer provides possibly imperfect
52 layer the notions of reliable transfer, data sequencing,
58 each message handed to the network layer by a
64 The session layer facilities may provide forms of
66 by the transport layer, service authentication
73 the internal layering. The contents of each layer
/freebsd/usr.sbin/fifolog/lib/
H A Dfifolog.h36 * The outer timestamping and synchronization layer.
38 * The inner sequencing and identification layer.
40 * All three layers are synchronized at a subset of the outer layer
44 * The outer layer:
71 * These fields are immediately followed by the inner layer payload as
74 * If the inner layer payload is shorter than the available space in
85 * The gzip layer
92 * in outer layer (apart from a natural correlation with padding) since
96 * The inner layer:
98 * The inner layer contains data identification and to the second
[all …]
/freebsd/sys/contrib/dev/iwlwifi/
H A Diwl-op-mode.h25 * The operational mode (a.k.a. op_mode) is the layer that implements
28 * underlying HW works, since the transport layer takes care of that.
39 * 1) The driver layer (iwl-drv.c) chooses the op_mode based on the
41 * 2) The driver layer starts the op_mode (ops->start)
44 * 5) The driver layer stops the op_mode
51 * interact with it. The driver layer typically calls the start and stop
52 * handlers, the transport layer calls the others.
57 * @start: start the op_mode. The transport layer is already allocated.
76 * @free_skb: allows the transport layer to free skbs that haven't been
78 * there are Tx packets pending in the transport layer
[all...]
/freebsd/crypto/openssl/ssl/record/
H A DREADME.md1 Record Layer Design
5 record layer code to aid future maintenance.
7 The record layer is divided into a number of components. At the time of writing
16 be private to the record layer, or whether they form part of the API to the rest
27 interface to the record layer for the rest of libssl. The other 3 components are
28 entirely private to the record layer and therefore should never be accessed
69 the main one is rec_layer_s3.c which provides the core SSL/TLS layer. The second
/freebsd/share/man/man4/
H A Dng_hci.433 (HCI) layer
41 Interface (HCI) layer as per chapter H1 of the Bluetooth Specification Book
117 The HCI layer on the Host exchanges data and commands with the HCI firmware
119 The Host Controller Transport Layer (i.e., physical
124 of which Host Controller Transport Layer is used.
225 HCI layer performs flow control on baseband connection basis (i.e., ACL and
236 HCI layer will send
254 Bluetooth Host Controller Transport Layer hook.
259 Upper layer protocol/node is connected to the hook.
264 Upper layer protocol/node is connected to the hook.
[all …]
/freebsd/contrib/tcpdump/
H A Dprint-sll.c57 * a 2-byte link-layer type;
59 * a 2-byte link-layer address length;
61 * an 8-byte source link-layer address, whose actual length is
64 * All fields except for the link-layer address are in network byte order.
67 * LINUX_SLL_ values below. If you must change the link-layer header
82 * A DLT_LINUX_SLL fake link-layer header.
89 nd_uint16_t sll_hatype; /* link-layer address type */
90 nd_uint16_t sll_halen; /* link-layer address length */
91 nd_byte sll_addr[SLL_ADDRLEN]; /* link-layer address */
96 * A DLT_LINUX_SLL2 fake link-layer header.
[all …]
/freebsd/sys/cam/ctl/
H A Dctl_frontend.h36 * CAM Target Layer front end registration hooks
96 * (Front End Target Driver) and the CTL layer. Here is a description of
116 * layer will add a few to this to account for
132 * argument, by the CTL layer when it wants the FETD
137 * argument, by the CTL layer when it wants the FETD
166 * by the CTL layer to tell the FETD to initiate a
170 * fe_done(): This function is called by the CTL layer when a
177 * back to the CTL layer via ctl_queue_sense().
183 * targ_port: The CTL layer assigns a "port number" to every
186 * the CTL layer. This enables us to determine
[all …]
/freebsd/contrib/wpa/src/eap_peer/
H A Deap.h32 * lower layer. These are defined in RFC 4137, Sect. 4.1. Lower layer code is
45 * EAPOL_eapRestart - Lower layer request to restart authentication
47 * Set to true in lower layer, false in EAP state machine.
61 * Set to true in EAP state machine, false in lower layer.
68 * Set to true in EAP state machine, false in lower layer.
73 * EAPOL_eapReq - EAP request available from lower layer
75 * Set to true in lower layer, false in EAP state machine.
80 * EAPOL_portEnabled - Lower layer is ready for communication
112 * lower layer. These are defined in RFC 4137, Sect. 4.1. Lower layer code is
130 * struct eapol_callbacks - Callback functions from EAP to lower layer
[all …]

12345678910>>...76