Home
last modified time | relevance | path

Searched refs:layer (Results 1 – 25 of 182) sorted by relevance

12345678

/freebsd-12-stable/usr.sbin/ppp/
Dlink.c253 int layer; in link_PushPacket() local
266 for (layer = l->nlayers; layer && bp; layer--) in link_PushPacket()
267 if (l->layer[layer - 1]->push != NULL) in link_PushPacket()
268 bp = (*l->layer[layer - 1]->push)(b, l, bp, pri, &proto); in link_PushPacket()
282 int layer; in link_PullPacket() local
302 layer = 0; in link_PullPacket()
304 while (layer || lbp[layer]) { in link_PullPacket()
305 if (lbp[layer] == NULL) { in link_PullPacket()
306 layer--; in link_PullPacket()
309 bp = lbp[layer]; in link_PullPacket()
[all …]
Dlink.h59 struct layer const *layer[LAYER_MAX]; /* i/o layers */ member
76 extern int link_Stack(struct link *, struct layer *);
Dlqr.c423 int len, layer; in lqr_LayerPush() local
453 for (layer = 0; layer < l->nlayers; layer++) in lqr_LayerPush()
454 switch (l->layer[layer]->type) { in lqr_LayerPush()
465 layer = l->nlayers; in lqr_LayerPush()
475 l->layer[layer]->name); in lqr_LayerPush()
534 struct layer lqrlayer = { LAYER_LQR, "lqr", lqr_LayerPush, lqr_LayerPull };
Dsync.h31 extern struct layer synclayer;
Dtcpmss.h31 extern struct layer tcpmsslayer;
Dacf.h35 extern struct layer acflayer;
Dvjcomp.h38 extern struct layer vjlayer;
Dnat_cmd.h44 extern struct layer natlayer;
/freebsd-12-stable/sys/compat/linuxkpi/common/src/
Dlinux_idr.c166 idr_pos(int id, int layer) in idr_pos() argument
168 return (id >> (IDR_BITS * layer)) & IDR_MASK; in idr_pos()
195 idr_remove_layer(struct idr_layer *il, int layer) in idr_remove_layer() argument
201 if (layer == 0) { in idr_remove_layer()
207 idr_remove_layer(il->ary[i], layer - 1); in idr_remove_layer()
226 int layer; in idr_remove_locked() local
231 layer = idr->layers - 1; in idr_remove_locked()
238 while (layer && il) { in idr_remove_locked()
239 idx = idr_pos(id, layer); in idr_remove_locked()
242 layer--; in idr_remove_locked()
[all …]
/freebsd-12-stable/contrib/wpa/hostapd/logwatch/
Dhostapd29 if (my ($iface,$mac,$layer,$details) = ($line =~ /(.*?): STA (.*?) (.*?): (.*?)$/i)) {
34 $hostapd{$iface}->{$mac}->{$layer}->{$details}++;
45 foreach my $layer (sort keys %{$hostapd{$iface}->{$mac}}) {
46 print " $layer:\n";
47 foreach my $details (sort keys %{$hostapd{$iface}->{$mac}->{$layer}}) {
49 my $count = $hostapd{$iface}->{$mac}->{$layer}->{$details};
/freebsd-12-stable/sys/dev/pms/freebsd/driver/ini/src/
Dosapi.c582 ostiEnter(tiRoot_t *ptiRoot, U32 layer, int io) in ostiEnter() argument
587 BUG_ON((io != 0 && io != 1) || (layer != 0 && layer != 1 && layer != 2)); in ostiEnter()
593 BUG_ON(pCard->callLevel[io] >= sizeof(pCard->layer[0]) / in ostiEnter()
594 sizeof(pCard->layer[0][0])); in ostiEnter()
597 unsigned int prev_layer = pCard->layer[io][pCard->callLevel[io] - 1]; in ostiEnter()
602 pCard->enterCycles[io][layer] = cycles; in ostiEnter()
603 pCard->layer[io][pCard->callLevel[io]] = layer; in ostiEnter()
610 ostiLeave(tiRoot_t *ptiRoot, U32 layer, int io) in ostiLeave() argument
615 BUG_ON((io != 0 && io != 1) || (layer != 0 && layer != 1 && layer != 2)); in ostiLeave()
624 BUG_ON(pCard->layer[io][pCard->callLevel[io]] != layer); in ostiLeave()
[all …]
/freebsd-12-stable/crypto/openssl/ssl/record/
DREADME5 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
70 the main one is rec_layer_s3.c which provides the core SSL/TLS layer. The second
/freebsd-12-stable/sys/netsmb/
Dsmb_rq.c57 static int smb_rq_getenv(struct smb_connobj *layer,
63 smb_rq_alloc(struct smb_connobj *layer, u_char cmd, struct smb_cred *scred, in smb_rq_alloc() argument
72 error = smb_rq_init(rqp, layer, cmd, scred); in smb_rq_alloc()
85 smb_rq_init(struct smb_rq *rqp, struct smb_connobj *layer, u_char cmd, in smb_rq_init() argument
92 error = smb_rq_getenv(layer, &rqp->sr_vc, &rqp->sr_share); in smb_rq_init()
280 smb_rq_getenv(struct smb_connobj *layer, in smb_rq_getenv() argument
288 switch (layer->co_level) { in smb_rq_getenv()
290 vcp = CPTOVC(layer); in smb_rq_getenv()
291 if (layer->co_parent == NULL) { in smb_rq_getenv()
298 ssp = CPTOSS(layer); in smb_rq_getenv()
[all …]
Dsmb_rq.h130 int smb_rq_alloc(struct smb_connobj *layer, u_char cmd,
132 int smb_rq_init(struct smb_rq *rqp, struct smb_connobj *layer, u_char cmd,
144 int smb_t2_alloc(struct smb_connobj *layer, u_short setup, struct smb_cred *scred,
146 int smb_t2_init(struct smb_t2rq *rqp, struct smb_connobj *layer, u_short setup,
/freebsd-12-stable/contrib/libpcap/doc/
DREADME.sita32 PCAP into two halves. The top layer performs the majority of the
34 provide the lower layer functionality of actual sniffing and
51 back to the local 'top layer' for forwarding to the actual
54 Note that the DLT_SITA link-layer type includes a proprietary header
60 - Link layer hardware signal status (1 octet)
/freebsd-12-stable/sys/x86/x86/
Dmp_x86.c509 int layer; in topo_probe() local
593 for (layer = 0; layer < nlayers; ++layer) { in topo_probe()
594 node_id = i >> topo_layers[layer].id_shift; in topo_probe()
596 topo_layers[layer].type, in topo_probe()
597 topo_layers[layer].subtype); in topo_probe()
602 for (layer = 0; layer < nlayers; ++layer) { in topo_probe()
603 node_id = boot_cpu_id >> topo_layers[layer].id_shift; in topo_probe()
605 topo_layers[layer].type, in topo_probe()
606 topo_layers[layer].subtype); in topo_probe()
/freebsd-12-stable/sys/dev/ixgbe/
Dif_ix.c1264 u64 layer; in ixgbe_add_media_types() local
1266 layer = sc->phy_layer = ixgbe_get_supported_physical_layer(hw); in ixgbe_add_media_types()
1269 if (layer & IXGBE_PHYSICAL_LAYER_10GBASE_T) in ixgbe_add_media_types()
1271 if (layer & IXGBE_PHYSICAL_LAYER_1000BASE_T) in ixgbe_add_media_types()
1273 if (layer & IXGBE_PHYSICAL_LAYER_100BASE_TX) in ixgbe_add_media_types()
1275 if (layer & IXGBE_PHYSICAL_LAYER_10BASE_T) in ixgbe_add_media_types()
1283 if (layer & IXGBE_PHYSICAL_LAYER_SFP_PLUS_CU || in ixgbe_add_media_types()
1284 layer & IXGBE_PHYSICAL_LAYER_SFP_ACTIVE_DA) in ixgbe_add_media_types()
1288 if (layer & IXGBE_PHYSICAL_LAYER_10GBASE_LR) { in ixgbe_add_media_types()
1294 if (layer & IXGBE_PHYSICAL_LAYER_10GBASE_SR) { in ixgbe_add_media_types()
[all …]
/freebsd-12-stable/crypto/openssh/
Dxmss_hash_address.c16 void setLayerADRS(uint32_t adrs[8], uint32_t layer){ in setLayerADRS() argument
17 adrs[0] = layer; in setLayerADRS()
DREADME.tun6 layer 2 or 3 traffic.
35 following configuration in /etc/hostname.tun0 to set up the layer 3
40 OpenBSD also supports layer 2 tunneling over the tun device by adding
84 combination with layer 2 tunneling and Ethernet bridging.
/freebsd-12-stable/sys/dev/ow/
DREADME.txt12 device, which implements the own(9) interface (n for network, the layer
13 described in the AN927). The presentation layer and above is the
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/VE/
DVVPInstrInfo.td10 // SDNodes are an intermediate isel layer between the vector SDNodes emitted by
15 // The standard The VVP layer SDNode. The VE vector instruction.
/freebsd-12-stable/contrib/libpcap/
DCHANGES100 Add Nordic Semiconductor Bluetooth LE sniffer link-layer header type.
164 Add a link-layer header type for RDS (IEC 62106) groups.
167 Removes the need for the "host-endian" link-layer header type.
229 Don't crash on filters testing a non-existent link-layer type
269 used for link-layer filtering. (Wireshark bug 9376)
278 Support filtering filtering E1 SS7 traffic on MTP2 layer Annex A
321 Add new link-layer type for NFC Forum LLCP.
347 Add some new link-layer header types.
367 Add a link-layer header type for STANAG 5066 D_PDUs.
368 Add a link-layer type for a variant of 3GPP TS 27.010.
[all …]
/freebsd-12-stable/contrib/llvm-project/openmp/runtime/src/
Dkmp_dispatch_hier.h61 void append(enum sched_type sched, kmp_int32 chunk, kmp_hier_layer_e layer) { in append()
76 layers[current_size] = layer; in append()
679 kmp_hier_layer_e layer = new_layers[i]; in allocate_hier() local
681 info[i].type = layer; in allocate_hier()
684 max = __kmp_hier_max_units[layer + 1]; in allocate_hier()
687 KMP_WARNING(HierSchedInvalid, __kmp_get_hier_str(layer)); in allocate_hier()
938 const char *layer = __kmp_get_hier_str(new_layers[i]); in __kmp_dispatch_init_hierarchy() local
941 gtid, i, layer, i, (int)new_scheds[i], i, new_chunks[i])); in __kmp_dispatch_init_hierarchy()
/freebsd-12-stable/contrib/file/tests/
Dcl8m8ocofedso.result1 Audio file with ID3 version 2.4.0, contains: MPEG ADTS, layer III, v1, 192 kbps, 44.1 kHz, JntStereo
DJW07022A.mp3.result1 Audio file with ID3 version 2.2.0, contains: MPEG ADTS, layer III, v1, 96 kbps, 44.1 kHz, Monaural

12345678