Searched refs:tuple (Results 101 - 117 of 117) sorted by relevance

12345

/linux-master/net/core/
H A Dfilter.c6635 static struct sock *sk_lookup(struct net *net, struct bpf_sock_tuple *tuple, argument
6643 __be32 src4 = tuple->ipv4.saddr;
6644 __be32 dst4 = tuple->ipv4.daddr;
6648 src4, tuple->ipv4.sport,
6649 dst4, tuple->ipv4.dport,
6652 sk = __udp4_lib_lookup(net, src4, tuple->ipv4.sport,
6653 dst4, tuple->ipv4.dport,
6657 struct in6_addr *src6 = (struct in6_addr *)&tuple->ipv6.saddr;
6658 struct in6_addr *dst6 = (struct in6_addr *)&tuple->ipv6.daddr;
6662 src6, tuple
6685 __bpf_skc_lookup(struct sk_buff *skb, struct bpf_sock_tuple *tuple, u32 len, struct net *caller_net, u32 ifindex, u8 proto, u64 netns_id, u64 flags, int sdif) argument
6726 __bpf_sk_lookup(struct sk_buff *skb, struct bpf_sock_tuple *tuple, u32 len, struct net *caller_net, u32 ifindex, u8 proto, u64 netns_id, u64 flags, int sdif) argument
6757 bpf_skc_lookup(struct sk_buff *skb, struct bpf_sock_tuple *tuple, u32 len, u8 proto, u64 netns_id, u64 flags) argument
6776 bpf_sk_lookup(struct sk_buff *skb, struct bpf_sock_tuple *tuple, u32 len, u8 proto, u64 netns_id, u64 flags) argument
[all...]
/linux-master/drivers/net/ethernet/xircom/
H A Dxirc2ps_cs.c522 * Detect the type of the card. s is the buffer with the data of tuple 0x20
675 tuple_t *tuple,
680 if (tuple->TupleDataLen != 13)
682 if ((tuple->TupleData[0] != 2) || (tuple->TupleData[1] != 1) ||
683 (tuple->TupleData[2] != 6))
686 dev_addr_mod(dev, 2, &tuple->TupleData[2], 4);
743 /* not found: try to get the node-id from tuple 0x89 */
746 /* data layout looks like tuple 0x22 */
674 pcmcia_get_mac_ce(struct pcmcia_device *p_dev, tuple_t *tuple, void *priv) argument
/linux-master/drivers/net/ethernet/broadcom/bnxt/
H A Dbnxt_ethtool.c1631 int tuple, rc = 0; local
1634 tuple = 4;
1636 tuple = 2;
1638 tuple = 0;
1644 if (tuple == 4)
1647 if (tuple == 4 && !(bp->rss_cap & BNXT_RSS_CAP_UDP_RSS_CAP))
1650 if (tuple == 4)
1654 if (tuple == 4)
1657 if (tuple == 4 && !(bp->rss_cap & BNXT_RSS_CAP_UDP_RSS_CAP))
1660 if (tuple
[all...]
/linux-master/drivers/net/ethernet/smsc/
H A Dsmc91c92_cs.c460 tuple_t *tuple,
467 if (pcmcia_parse_tuple(tuple, &parse))
486 (fourth) string in the Version 1 Version/ID tuple. */
496 /* Another possibility: for the EM3288, in a special tuple */
603 /* Check for a LAN function extension tuple */
607 /* Try the third string in the Version 1 Version/ID tuple. */
669 tuple_t *tuple,
674 if (tuple->TupleDataLen < 8)
676 if (tuple->TupleData[0] != 0x04)
679 eth_hw_addr_set(dev, &tuple
459 pcmcia_get_versmac(struct pcmcia_device *p_dev, tuple_t *tuple, void *priv) argument
668 pcmcia_osi_mac(struct pcmcia_device *p_dev, tuple_t *tuple, void *priv) argument
[all...]
/linux-master/tools/perf/scripts/python/
H A Dsched-migration.py101 self.tasks = tuple(tasks)
137 next_tasks = self.tasks[:] + tuple([new])
H A Dtask-analyzer.py527 fd_sum.write(fmt.format(*tuple(self._body[i])) + "\n")
/linux-master/tools/testing/selftests/drivers/net/mlxsw/
H A Dsharedbuffer_configuration.py148 return tuple(ret)
/linux-master/Documentation/sphinx/
H A DrstFlatTable.py148 if isinstance(colwidths, tuple):
150 # colwidths) tuple, where widths is a string (i.e. 'auto').
/linux-master/drivers/comedi/drivers/ni_routing/tools/
H A Dconvert_csv_to_c.py233 sheets = sorted(self.items(), key=lambda i : tuple(i[0].split('-')[::-1]) )
/linux-master/drivers/net/ethernet/dec/tulip/
H A Dxircom_cb.c1007 u8 tuple, data_id, data_count; local
1010 tuple = xr32(CSR9);
1017 if ((tuple == 0x22) && (data_id == 0x04) && (data_count == 0x06)) {
/linux-master/net/sched/
H A Dsch_cake.c592 struct nf_conntrack_tuple tuple = {}; local
599 if (!nf_ct_get_tuple_skb(&tuple, skb))
602 ip = rev ? tuple.dst.u3.ip : tuple.src.u3.ip;
607 ip = rev ? tuple.src.u3.ip : tuple.dst.u3.ip;
616 port = rev ? tuple.dst.u.all : tuple.src.u.all;
621 port = rev ? tuple.src.u.all : tuple
[all...]
H A Dcls_flow.c142 ct->tuplehash[CTINFO2DIR(ctinfo)].tuple.member; \
/linux-master/scripts/
H A Drust_is_available_test.py29 name = str(len(tuple(path.iterdir())))
/linux-master/tools/testing/selftests/hid/tests/
H A Dtest_tablet.py204 return tuple()
268 return tuple()
H A Dtest_mouse.py48 :param buttons: a (l, r, m) tuple of bools for the button states,
50 :param wheels: a single value for the vertical wheel or a (vertical, horizontal) tuple for
70 if isinstance(wheels, tuple):
94 :param buttons: a (l, r, m) tuple of bools for the button states,
96 :param wheels: a single value for the vertical wheel or a (vertical, horizontal) tuple for
/linux-master/tools/power/pm-graph/
H A Dbootgraph.py87 val = tuple(map(int, m.groups()))
/linux-master/net/ipv4/
H A Dicmp.c814 ip_hdr(skb_in)->saddr = ct->tuplehash[0].tuple.src.u3.ip;

Completed in 265 milliseconds

12345