Home
last modified time | relevance | path

Searched refs:flow (Results 1 – 25 of 216) sorted by relevance

123456789

/freebsd/sys/contrib/dev/broadcom/brcm80211/brcmfmac/
H A Dflowring.c43 brcmf_flowring_is_tdls_mac(struct brcmf_flowring *flow, u8 mac[ETH_ALEN]) in brcmf_flowring_is_tdls_mac() argument
47 search = flow->tdls_entry; in brcmf_flowring_is_tdls_mac()
59 u32 brcmf_flowring_lookup(struct brcmf_flowring *flow, u8 da[ETH_ALEN], in brcmf_flowring_lookup() argument
75 sta = (flow->addr_mode[ifidx] == ADDR_INDIRECT); in brcmf_flowring_lookup()
85 if ((sta) && (flow->tdls_active) && in brcmf_flowring_lookup()
86 (brcmf_flowring_is_tdls_mac(flow, da))) { in brcmf_flowring_lookup()
93 hash = flow->hash; in brcmf_flowring_lookup()
111 u32 brcmf_flowring_create(struct brcmf_flowring *flow, u8 da[ETH_ALEN], in brcmf_flowring_create() argument
128 sta = (flow->addr_mode[ifidx] == ADDR_INDIRECT); in brcmf_flowring_create()
138 if ((sta) && (flow in brcmf_flowring_create()
184 brcmf_flowring_tid(struct brcmf_flowring * flow,u16 flowid) brcmf_flowring_tid() argument
194 brcmf_flowring_block(struct brcmf_flowring * flow,u16 flowid,bool blocked) brcmf_flowring_block() argument
243 brcmf_flowring_delete(struct brcmf_flowring * flow,u16 flowid) brcmf_flowring_delete() argument
275 brcmf_flowring_enqueue(struct brcmf_flowring * flow,u16 flowid,struct sk_buff * skb) brcmf_flowring_enqueue() argument
301 brcmf_flowring_dequeue(struct brcmf_flowring * flow,u16 flowid) brcmf_flowring_dequeue() argument
322 brcmf_flowring_reinsert(struct brcmf_flowring * flow,u16 flowid,struct sk_buff * skb) brcmf_flowring_reinsert() argument
333 brcmf_flowring_qlen(struct brcmf_flowring * flow,u16 flowid) brcmf_flowring_qlen() argument
348 brcmf_flowring_open(struct brcmf_flowring * flow,u16 flowid) brcmf_flowring_open() argument
362 brcmf_flowring_ifidx_get(struct brcmf_flowring * flow,u16 flowid) brcmf_flowring_ifidx_get() argument
376 struct brcmf_flowring *flow; brcmf_flowring_attach() local
400 brcmf_flowring_detach(struct brcmf_flowring * flow) brcmf_flowring_detach() argument
424 brcmf_flowring_configure_addr_mode(struct brcmf_flowring * flow,int ifidx,enum proto_addr_mode addr_mode) brcmf_flowring_configure_addr_mode() argument
446 brcmf_flowring_delete_peer(struct brcmf_flowring * flow,int ifidx,u8 peer[ETH_ALEN]) brcmf_flowring_delete_peer() argument
497 brcmf_flowring_add_tdls_peer(struct brcmf_flowring * flow,int ifidx,u8 peer[ETH_ALEN]) brcmf_flowring_add_tdls_peer() argument
[all...]
H A Dflowring.h50 u32 brcmf_flowring_lookup(struct brcmf_flowring *flow, u8 da[ETH_ALEN],
52 u32 brcmf_flowring_create(struct brcmf_flowring *flow, u8 da[ETH_ALEN],
54 void brcmf_flowring_delete(struct brcmf_flowring *flow, u16 flowid);
55 void brcmf_flowring_open(struct brcmf_flowring *flow, u16 flowid);
56 u8 brcmf_flowring_tid(struct brcmf_flowring *flow, u16 flowid);
57 u32 brcmf_flowring_enqueue(struct brcmf_flowring *flow, u16 flowid,
59 struct sk_buff *brcmf_flowring_dequeue(struct brcmf_flowring *flow, u16 flowid);
60 void brcmf_flowring_reinsert(struct brcmf_flowring *flow, u16 flowid,
62 u32 brcmf_flowring_qlen(struct brcmf_flowring *flow, u16 flowid);
63 u8 brcmf_flowring_ifidx_get(struct brcmf_flowring *flow, u16 flowid);
[all …]
H A Dmsgbuf.c272 struct brcmf_flowring *flow; member
570 brcmf_flowring_delete(msgbuf->flow, flowid); in brcmf_msgbuf_remove_flowring()
613 brcmf_flowring_delete(msgbuf->flow, flowid); in brcmf_msgbuf_flowring_create_worker()
635 create->tid = brcmf_flowring_tid(msgbuf->flow, flowid); in brcmf_msgbuf_flowring_create_worker()
646 brcmf_dbg(MSGBUF, "Send Flow Create Req flow ID %d for peer %pM prio %d ifindex %d\n", in brcmf_msgbuf_flowring_create_worker()
687 flowid = brcmf_flowring_create(msgbuf->flow, eh->h_dest, in brcmf_msgbuf_flowring_create()
710 struct brcmf_flowring *flow = msgbuf->flow; in brcmf_msgbuf_txflow() local
728 while (brcmf_flowring_qlen(flow, flowid)) { in brcmf_msgbuf_txflow()
729 skb = brcmf_flowring_dequeue(flow, flowi in brcmf_msgbuf_txflow()
814 struct brcmf_flowring *flow = msgbuf->flow; brcmf_msgbuf_tx_queue_data() local
1437 struct brcmf_flowring *flow = msgbuf->flow; brcmf_msgbuf_delete_flowring() local
[all...]
/freebsd/contrib/libyaml/tests/
H A DReadMe.md20 For flow style events, you have to enable it with the `--flow` option:
22 echo '{ foo: bar }' | ./tests/run-parser-test-suite --flow keep
30 You can also explicitly disable this style with `--flow off`, or output
31 flow style always, with `--flow on`.
45 * `--flow on`
47 Will emit the whole document in flow style.
49 * `--flow off`
53 * `--flow keep`
55 Will emit block/flow style like in the original document.
60 ./tests/run-parser-test-suite --flow keep |
[all …]
H A Drun-parser-test-suite.c14 int flow = -1; /** default no flow style collections */ in main() local
24 flow = 0; in main()
26 flow = 1; in main()
28 flow = -1; in main()
90 if (flow == 0 && event.data.mapping_start.style == YAML_FLOW_MAPPING_STYLE) in main()
92 else if (flow == 1) in main()
104 if (flow == 0 && event.data.sequence_start.style == YAML_FLOW_SEQUENCE_STYLE) in main()
106 else if (flow == 1) in main()
H A Drun-emitter-test-suite.c27 int flow = -1; /** default no flow style collections */ in main() local
39 flow = 0; in main()
41 flow = 1; in main()
43 flow = -1; in main()
106 if (flow == 1) in main()
108 else if (flow == 0 && strncmp(line+5, "{}", 2) == 0) in main()
119 if (flow == 1) in main()
121 else if (flow == 0 && strncmp(line+5, "[]", 2) == 0) in main()
/freebsd/crypto/openssl/doc/designs/quic-design/
H A Dquic-fc.md7 QUIC flow control acts at both connection and stream levels. At any time,
8 transmission of stream data could be prevented by connection-level flow control,
9 by stream-level flow control, or both. Flow control uses a credit-based model in
10 which the relevant flow control limit is expressed as the maximum number of
14 It is important to note that both connection and stream-level flow control
15 relate only to the transmission of QUIC stream data. QUIC flow control at stream
18 again, this still only counts as one byte for the purposes of flow control. Note
25 believe we have exhausted our flow control credit whereas the peer believes we
27 advancing us more flow control credit.)
29 QUIC flow control at connection level is based on the sum of all the logical
[all …]
H A Dstream-receive-buffers.md19 be stored. The flow controller should be used to limit the peer to not send
20 more data. Without the flow control limit a rogue peer could trigger
21 a DoS via unlimited flow of incoming stream data frames.
23 data can be released and flow control limit can be raised.
47 This function adjusts the current data flow control limit on the `stream`
124 effectively raise the stream data flow control limit quadratically.
127 more data than what is allowed by the stream data flow control limit
130 Although intuitively the MAX_DATA flow control limit might be used to
144 any data will be supported, the MAX_DATA flow control limit should be equal
/freebsd/sbin/ipf/libipf/
H A Dprintpacket6.c22 u_32_t flow; in printpacket6() local
27 flow = ntohl(*(u_32_t *)buf); in printpacket6()
28 flow &= 0xfffff; in printpacket6()
39 PRINTF("ip6/%d %d %#x %d", buf[0] & 0xf, plen, flow, p); in printpacket6()
/freebsd/sys/contrib/device-tree/Bindings/serial/
H A Dmilbeaut-uart.txt11 - auto-flow-control: flow control enable.
20 auto-flow-control;
H A Dst-asc.txt10 - st,hw-flow-ctrl bool flag to enable hardware flow control.
/freebsd/crypto/openssl/ssl/statem/
H A DREADME.md19 - Separate message flow state from handshake state (in order to better
21 * message flow state = when to flush buffers; handling restarts in the
22 event of NBIO events; handling the common flow of steps for reading a
23 message and the common flow of steps for writing a message etc
28 The message flow state machine is divided into a reading sub-state machine and a
/freebsd/contrib/tcpdump/
H A Dprint-ip6.c234 u_int flow; in ip6_print() local
287 flow = GET_BE_U_4(ip6->ip6_flow); in ip6_print()
290 if (flow & 0x0ff00000) in ip6_print()
291 ND_PRINT("class 0x%02x, ", (flow & 0x0ff00000) >> 20); in ip6_print()
292 if (flow & 0x000fffff) in ip6_print()
293 ND_PRINT("flowlabel 0x%05x, ", flow & 0x000fffff); in ip6_print()
/freebsd/sys/kern/
H A Duipc_mbufhash.c140 uint32_t flow; in m_tcpip_hash() local
143 flow = ip6->ip6_flow & IPV6_FLOWLABEL_MASK; in m_tcpip_hash()
144 p = fnv_32_buf(&flow, sizeof(flow), p); in m_tcpip_hash()
/freebsd/sys/contrib/dev/mediatek/mt76/mt7915/
H A Dmac.c2232 struct mt7915_twt_flow *flow) in mt7915_mac_twt_sched_list_add() argument
2235 u32 duration = flow->duration << 8; in mt7915_mac_twt_sched_list_add()
2242 list_add(&flow->list, &dev->twt_list); in mt7915_mac_twt_sched_list_add()
2254 list_add(&flow->list, &iter->list); in mt7915_mac_twt_sched_list_add()
2260 list_add_tail(&flow->list, &dev->twt_list); in mt7915_mac_twt_sched_list_add()
2313 f = &msta->twt.flow[i]; in mt7915_mac_twt_param_equal()
2336 struct mt7915_twt_flow *flow; in mt7915_mac_add_twt_setup() local
2348 if (hweight8(msta->twt.flowid_mask) == ARRAY_SIZE(msta->twt.flow)) in mt7915_mac_add_twt_setup()
2369 flow = &msta->twt.flow[flowid]; in mt7915_mac_add_twt_setup()
2370 memset(flow, 0, sizeof(*flow)); in mt7915_mac_add_twt_setup()
[all …]
/freebsd/cddl/usr.sbin/dwatch/libexec/
H A Dip22 this string flow;
37 this->flow = this->recv ? "<-" : "->";
65 this->flow,
H A Drw24 this string flow;
35 this->flow = probefunc == "read" ? "<-" : "->";
63 this->flow,
H A Dtcp63 this string flow;
112 this->flow = probeflow[probename];
171 /* flow = "[from state]->[to state]" */
172 this->flow = strjoin(tcpstate[this->from_state],
200 this->flow,
H A Dudp22 this string flow;
40 this->flow = this->recv ? "<-" : "->";
78 this->flow,
H A Dudplite22 this string flow;
40 this->flow = this->recv ? "<-" : "->";
78 this->flow,
H A Dio35 this string flow;
49 this->flow = probefunc == "done" ? "<-" : "->";
93 this->flow,
/freebsd/sys/contrib/device-tree/Bindings/hsi/
H A Dclient-devices.txt15 - hsi-flow: RX flow type ("synchronized" or "pipeline")
38 hsi-flow = "synchronized";
/freebsd/sys/contrib/device-tree/Bindings/dma/
H A Dqcom_adm.txt8 denotes CRCI (client rate control interface) flow control assignment.
44 3. CRCI assignment, if applicable. If no CRCI flow control is required, use 0.
45 The CRCI is used for flow control. It identifies the peripheral device that
/freebsd/contrib/libpcap/
H A Dpcap-rdmasniff.c56 struct ibv_flow * flow; member
82 ibv_destroy_flow(priv->flow); in rdmasniff_cleanup()
276 priv->flow = ibv_create_flow(priv->qp, &flow_attr); in rdmasniff_activate()
277 if (!priv->flow) { in rdmasniff_activate()
339 if (priv->flow) { in rdmasniff_activate()
340 ibv_destroy_flow(priv->flow); in rdmasniff_activate()
/freebsd/sys/contrib/dev/mediatek/mt76/mt7996/
H A Dmac.c3133 struct mt7996_twt_flow *flow) in mt7996_mac_twt_sched_list_add()
3136 u32 duration = flow->duration << 8; in mt7996_mac_twt_sched_list_add()
3142 /* add flow as first entry in the list */ in mt7996_mac_twt_sched_list_add()
3143 list_add(&flow->list, &dev->twt_list); in mt7996_mac_twt_sched_list_add()
3155 list_add(&flow->list, &iter->list); in mt7996_mac_twt_sched_list_add()
3160 /* add flow as last entry in the list */ in mt7996_mac_twt_sched_list_add()
3161 list_add_tail(&flow->list, &dev->twt_list); in mt7996_mac_twt_sched_list_add()
3214 f = &msta_link->twt.flow[i]; in mt7996_mac_twt_param_equal()
3238 struct mt7996_twt_flow *flow; in mt7996_mac_add_twt_setup()
3250 ARRAY_SIZE(msta_link->twt.flow)) in mt7996_mac_add_twt_setup()
3132 mt7996_mac_twt_sched_list_add(struct mt7996_dev * dev,struct mt7996_twt_flow * flow) mt7996_mac_twt_sched_list_add() argument
3237 struct mt7996_twt_flow *flow; mt7996_mac_add_twt_setup() local
3323 struct mt7996_twt_flow *flow; mt7996_mac_twt_teardown_flow() local
[all...]

123456789