Lines Matching refs:src

61 		  const struct bpf_sock *src)  in skcpy()  argument
63 dst->bound_dev_if = src->bound_dev_if; in skcpy()
64 dst->family = src->family; in skcpy()
65 dst->type = src->type; in skcpy()
66 dst->protocol = src->protocol; in skcpy()
67 dst->mark = src->mark; in skcpy()
68 dst->priority = src->priority; in skcpy()
69 dst->src_ip4 = src->src_ip4; in skcpy()
70 dst->src_ip6[0] = src->src_ip6[0]; in skcpy()
71 dst->src_ip6[1] = src->src_ip6[1]; in skcpy()
72 dst->src_ip6[2] = src->src_ip6[2]; in skcpy()
73 dst->src_ip6[3] = src->src_ip6[3]; in skcpy()
74 dst->src_port = src->src_port; in skcpy()
75 dst->dst_ip4 = src->dst_ip4; in skcpy()
76 dst->dst_ip6[0] = src->dst_ip6[0]; in skcpy()
77 dst->dst_ip6[1] = src->dst_ip6[1]; in skcpy()
78 dst->dst_ip6[2] = src->dst_ip6[2]; in skcpy()
79 dst->dst_ip6[3] = src->dst_ip6[3]; in skcpy()
80 dst->dst_port = src->dst_port; in skcpy()
81 dst->state = src->state; in skcpy()
85 const struct bpf_tcp_sock *src) in tpcpy() argument
87 dst->snd_cwnd = src->snd_cwnd; in tpcpy()
88 dst->srtt_us = src->srtt_us; in tpcpy()
89 dst->rtt_min = src->rtt_min; in tpcpy()
90 dst->snd_ssthresh = src->snd_ssthresh; in tpcpy()
91 dst->rcv_nxt = src->rcv_nxt; in tpcpy()
92 dst->snd_nxt = src->snd_nxt; in tpcpy()
93 dst->snd_una = src->snd_una; in tpcpy()
94 dst->mss_cache = src->mss_cache; in tpcpy()
95 dst->ecn_flags = src->ecn_flags; in tpcpy()
96 dst->rate_delivered = src->rate_delivered; in tpcpy()
97 dst->rate_interval_us = src->rate_interval_us; in tpcpy()
98 dst->packets_out = src->packets_out; in tpcpy()
99 dst->retrans_out = src->retrans_out; in tpcpy()
100 dst->total_retrans = src->total_retrans; in tpcpy()
101 dst->segs_in = src->segs_in; in tpcpy()
102 dst->data_segs_in = src->data_segs_in; in tpcpy()
103 dst->segs_out = src->segs_out; in tpcpy()
104 dst->data_segs_out = src->data_segs_out; in tpcpy()
105 dst->lost_out = src->lost_out; in tpcpy()
106 dst->sacked_out = src->sacked_out; in tpcpy()
107 dst->bytes_received = src->bytes_received; in tpcpy()
108 dst->bytes_acked = src->bytes_acked; in tpcpy()