Home
last modified time | relevance | path

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

1234567

/freebsd-13.1/contrib/tcpdump/
H A Dprint-ip6.c224 u_int flow; in ip6_print() local
249 flow = EXTRACT_32BITS(&ip6->ip6_flow); in ip6_print()
253 if (flow & 0x0f000000) in ip6_print()
254 ND_PRINT((ndo, "pri 0x%02x, ", (flow & 0x0f000000) >> 24)); in ip6_print()
255 if (flow & 0x00ffffff) in ip6_print()
256 ND_PRINT((ndo, "flowlabel 0x%06x, ", flow & 0x00ffffff)); in ip6_print()
259 if (flow & 0x0ff00000) in ip6_print()
260 ND_PRINT((ndo, "class 0x%02x, ", (flow & 0x0ff00000) >> 20)); in ip6_print()
261 if (flow & 0x000fffff) in ip6_print()
262 ND_PRINT((ndo, "flowlabel 0x%05x, ", flow & 0x000fffff)); in ip6_print()
/freebsd-13.1/sbin/ipf/libipf/
H A Dprintpacket6.c23 u_32_t flow; in printpacket6() local
28 flow = ntohl(*(u_32_t *)buf); in printpacket6()
29 flow &= 0xfffff; in printpacket6()
40 PRINTF("ip6/%d %d %#x %d", buf[0] & 0xf, plen, flow, p); in printpacket6()
/freebsd-13.1/sys/contrib/device-tree/Bindings/serial/
H A Dmilbeaut-uart.txt11 - auto-flow-control: flow control enable.
20 auto-flow-control;
H A Dst,stm32-uart.yaml37 st,hw-flow-ctrl:
38 description: enable hardware flow control (deprecated)
68 - st,hw-flow-ctrl
H A Dst-asc.txt10 - st,hw-flow-ctrl bool flag to enable hardware flow control.
H A Dsocionext,uniphier-uart.yaml25 auto-flow-control:
26 description: enable automatic flow control support.
/freebsd-13.1/crypto/openssl/ssl/statem/
H A DREADME18 - Separate message flow state from handshake state (in order to better
20 - message flow state = when to flush buffers; handling restarts in the
21 event of NBIO events; handling the common flow of steps for reading a
22 message and the common flow of steps for writing a message etc
27 The message flow state machine is divided into a reading sub-state machine and a
/freebsd-13.1/sys/kern/
H A Duipc_mbufhash.c142 uint32_t flow; in m_tcpip_hash() local
145 flow = ip6->ip6_flow & IPV6_FLOWLABEL_MASK; in m_tcpip_hash()
146 p = fnv_32_buf(&flow, sizeof(flow), p); in m_tcpip_hash()
/freebsd-13.1/cddl/usr.sbin/dwatch/libexec/
H A Dip23 this string flow;
38 this->flow = this->recv ? "<-" : "->";
66 this->flow,
H A Drw25 this string flow;
36 this->flow = probefunc == "read" ? "<-" : "->";
64 this->flow,
H A Dtcp64 this string flow;
113 this->flow = probeflow[probename];
172 /* flow = "[from state]->[to state]" */
173 this->flow = strjoin(tcpstate[this->from_state],
201 this->flow,
H A Dudplite23 this string flow;
41 this->flow = this->recv ? "<-" : "->";
79 this->flow,
H A Dudp23 this string flow;
41 this->flow = this->recv ? "<-" : "->";
79 this->flow,
H A Dio36 this string flow;
50 this->flow = probefunc == "done" ? "<-" : "->";
94 this->flow,
/freebsd-13.1/sys/contrib/device-tree/Bindings/hsi/
H A Dclient-devices.txt15 - hsi-flow: RX flow type ("synchronized" or "pipeline")
38 hsi-flow = "synchronized";
/freebsd-13.1/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-13.1/contrib/libpcap/
H A Dpcap-rdmasniff.c57 struct ibv_flow * flow; member
83 ibv_destroy_flow(priv->flow); in rdmasniff_cleanup()
262 priv->flow = ibv_create_flow(priv->qp, &flow_attr); in rdmasniff_activate()
263 if (!priv->flow) { in rdmasniff_activate()
325 if (priv->flow) { in rdmasniff_activate()
326 ibv_destroy_flow(priv->flow); in rdmasniff_activate()
/freebsd-13.1/sys/contrib/device-tree/Bindings/crypto/
H A Damlogic,gxl-crypto.yaml22 - description: "Interrupt for flow 0"
23 - description: "Interrupt for flow 1"
/freebsd-13.1/sys/netgraph/atm/sscop/
H A Dng_sscop.c97 int flow; /* flow control states */ member
306 if (priv->flow) { in flow_upper()
309 priv->flow = 0; in flow_upper()
322 priv->flow = 1; in flow_upper()
329 if (priv->flow) in flow_upper()
339 priv->flow = 1; in flow_upper()
530 priv->flow = 1; in ng_sscop_rcvmsg()
743 if (sig == SSCOP_DATA_indication && priv->flow) in sscop_send_upper()
/freebsd-13.1/sys/netgraph/bluetooth/l2cap/
H A Dng_l2cap_evnt.c706 bcopy(&val.flow, &ch->iflow, sizeof(ch->iflow)); in ng_l2cap_process_cfg_req()
861 bcopy(&val.flow, &cmd->ch->oflow, in ng_l2cap_process_cfg_rsp()
1457 val->flow.token_rate = le32toh(val->flow.token_rate); in get_next_l2cap_opt()
1458 val->flow.token_bucket_size = in get_next_l2cap_opt()
1459 le32toh(val->flow.token_bucket_size); in get_next_l2cap_opt()
1460 val->flow.peak_bandwidth = le32toh(val->flow.peak_bandwidth); in get_next_l2cap_opt()
1461 val->flow.latency = le32toh(val->flow.latency); in get_next_l2cap_opt()
1462 val->flow.delay_variation = le32toh(val->flow.delay_variation); in get_next_l2cap_opt()
H A Dng_l2cap_llpi.c352 ng_l2cap_flow_p flow) in ng_l2cap_lp_qos_req() argument
398 ep->flags = flow->flags; in ng_l2cap_lp_qos_req()
399 ep->service_type = flow->service_type; in ng_l2cap_lp_qos_req()
400 ep->token_rate = flow->token_rate; in ng_l2cap_lp_qos_req()
401 ep->peak_bandwidth = flow->peak_bandwidth; in ng_l2cap_lp_qos_req()
402 ep->latency = flow->latency; in ng_l2cap_lp_qos_req()
403 ep->delay_variation = flow->delay_variation; in ng_l2cap_lp_qos_req()
/freebsd-13.1/sys/contrib/device-tree/src/arm/
H A Dstm32mp157a-iot-box.dts57 /* Note: HW flow control is broken, hence using custom CTS/RTS gpios */
58 /delete-property/st,hw-flow-ctrl;
/freebsd-13.1/sys/contrib/device-tree/Bindings/interrupt-controller/
H A Dcirrus,clps711x-intc.txt20 8: TC1OI TC1 under flow
21 9: TC2OI TC2 under flow
/freebsd-13.1/cddl/contrib/opensolaris/cmd/dtrace/test/cmd/jdtrace/
H A DJDTrace.java52 static boolean flow = false; field in JDTrace
183 if (flow) { in consumeProbeData()
194 if (flow) { in consumeProbeData()
195 Flow flow = data.getFlow(); in consumeProbeData() local
196 int indent = (flow.getDepth() * 2); in consumeProbeData()
204 switch (flow.getKind()) { in consumeProbeData()
221 switch (flow.getKind()) { in consumeProbeData()
885 flow = (dtrace.getOption(Option.flowindent) != Option.UNSET); in main()
/freebsd-13.1/sys/dev/mlx5/mlx5_core/
H A Dmlx5_fs_tcp.c97 struct mlx5_flow_rule *flow; in mlx5e_accel_fs_add_inpcb() local
153 flow = ERR_PTR(-EINVAL); in mlx5e_accel_fs_add_inpcb()
160 flow = mlx5_add_flow_rule(ft->t, spec->match_criteria_enable, in mlx5e_accel_fs_add_inpcb()
168 return (flow); in mlx5e_accel_fs_add_inpcb()

1234567