| /freebsd/contrib/libyaml/tests/ |
| H A D | ReadMe.md | 20 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 D | run-parser-test-suite.c | 14 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 D | run-emitter-test-suite.c | 27 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 D | quic-fc.md | 7 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 D | stream-receive-buffers.md | 19 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 D | printpacket6.c | 22 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 D | milbeaut-uart.txt | 11 - auto-flow-control: flow control enable. 20 auto-flow-control;
|
| H A D | st-asc.txt | 10 - st,hw-flow-ctrl bool flag to enable hardware flow control.
|
| /freebsd/crypto/openssl/ssl/statem/ |
| H A D | README.md | 19 - 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 D | print-ip6.c | 234 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 D | uipc_mbufhash.c | 140 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/cddl/usr.sbin/dwatch/libexec/ |
| H A D | ip | 22 this string flow; 37 this->flow = this->recv ? "<-" : "->"; 65 this->flow,
|
| H A D | rw | 24 this string flow; 35 this->flow = probefunc == "read" ? "<-" : "->"; 63 this->flow,
|
| H A D | tcp | 63 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 D | udp | 22 this string flow; 40 this->flow = this->recv ? "<-" : "->"; 78 this->flow,
|
| H A D | udplite | 22 this string flow; 40 this->flow = this->recv ? "<-" : "->"; 78 this->flow,
|
| H A D | io | 35 this string flow; 49 this->flow = probefunc == "done" ? "<-" : "->"; 93 this->flow,
|
| /freebsd/sys/contrib/dev/mediatek/mt76/mt7915/ |
| H A D | mac.c | 2232 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/sys/contrib/device-tree/Bindings/hsi/ |
| H A D | client-devices.txt | 15 - hsi-flow: RX flow type ("synchronized" or "pipeline") 38 hsi-flow = "synchronized";
|
| /freebsd/sys/contrib/device-tree/Bindings/dma/ |
| H A D | qcom_adm.txt | 8 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 D | pcap-rdmasniff.c | 56 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 D | mac.c | 3132 struct mt7996_twt_flow *flow) in mt7996_mac_twt_sched_list_add() argument 3135 u32 duration = flow->duration << 8; in mt7996_mac_twt_sched_list_add() 3142 list_add(&flow->list, &dev->twt_list); in mt7996_mac_twt_sched_list_add() 3154 list_add(&flow->list, &iter->list); in mt7996_mac_twt_sched_list_add() 3160 list_add_tail(&flow->list, &dev->twt_list); in mt7996_mac_twt_sched_list_add() 3213 f = &msta_link->twt.flow[i]; in mt7996_mac_twt_param_equal() 3237 struct mt7996_twt_flow *flow; in mt7996_mac_add_twt_setup() local 3249 ARRAY_SIZE(msta_link->twt.flow)) in mt7996_mac_add_twt_setup() 3270 flow = &msta_link->twt.flow[flowid]; in mt7996_mac_add_twt_setup() 3271 memset(flow, 0, sizeof(*flow)); in mt7996_mac_add_twt_setup() [all …]
|
| /freebsd/sys/ofed/drivers/infiniband/core/ |
| H A D | ib_uverbs_std_types.c | 53 struct ib_flow *flow = (struct ib_flow *)uobject->object; in uverbs_free_flow() local 56 struct ib_qp *qp = flow->qp; in uverbs_free_flow() 59 ret = flow->device->destroy_flow(flow); in uverbs_free_flow()
|
| /freebsd/sys/netgraph/bluetooth/l2cap/ |
| H A D | ng_l2cap_evnt.c | 705 bcopy(&val.flow, &ch->iflow, sizeof(ch->iflow)); in ng_l2cap_process_cfg_req() 860 bcopy(&val.flow, &cmd->ch->oflow, in ng_l2cap_process_cfg_rsp() 1456 val->flow.token_rate = le32toh(val->flow.token_rate); in get_next_l2cap_opt() 1457 val->flow.token_bucket_size = in get_next_l2cap_opt() 1458 le32toh(val->flow.token_bucket_size); in get_next_l2cap_opt() 1459 val->flow.peak_bandwidth = le32toh(val->flow.peak_bandwidth); in get_next_l2cap_opt() 1460 val->flow.latency = le32toh(val->flow.latency); in get_next_l2cap_opt() 1461 val->flow.delay_variation = le32toh(val->flow.delay_variation); in get_next_l2cap_opt()
|
| /freebsd/sys/contrib/device-tree/Bindings/interrupt-controller/ |
| H A D | cirrus,clps711x-intc.txt | 20 8: TC1OI TC1 under flow 21 9: TC2OI TC2 under flow
|