this_way           15 net/netfilter/nf_conntrack_seqadj.c 	struct nf_ct_seqadj *this_way;
this_way           23 net/netfilter/nf_conntrack_seqadj.c 	this_way = &seqadj->seq[dir];
this_way           24 net/netfilter/nf_conntrack_seqadj.c 	this_way->offset_before	 = off;
this_way           25 net/netfilter/nf_conntrack_seqadj.c 	this_way->offset_after	 = off;
this_way           35 net/netfilter/nf_conntrack_seqadj.c 	struct nf_ct_seqadj *this_way;
this_way           48 net/netfilter/nf_conntrack_seqadj.c 	this_way = &seqadj->seq[dir];
this_way           49 net/netfilter/nf_conntrack_seqadj.c 	if (this_way->offset_before == this_way->offset_after ||
this_way           50 net/netfilter/nf_conntrack_seqadj.c 	    before(this_way->correction_pos, ntohl(seq))) {
this_way           51 net/netfilter/nf_conntrack_seqadj.c 		this_way->correction_pos = ntohl(seq);
this_way           52 net/netfilter/nf_conntrack_seqadj.c 		this_way->offset_before	 = this_way->offset_after;
this_way           53 net/netfilter/nf_conntrack_seqadj.c 		this_way->offset_after	+= off;
this_way          173 net/netfilter/nf_conntrack_seqadj.c 	struct nf_ct_seqadj *this_way, *other_way;
this_way          176 net/netfilter/nf_conntrack_seqadj.c 	this_way  = &seqadj->seq[dir];
this_way          184 net/netfilter/nf_conntrack_seqadj.c 	if (after(ntohl(tcph->seq), this_way->correction_pos))
this_way          185 net/netfilter/nf_conntrack_seqadj.c 		seqoff = this_way->offset_after;
this_way          187 net/netfilter/nf_conntrack_seqadj.c 		seqoff = this_way->offset_before;
this_way          225 net/netfilter/nf_conntrack_seqadj.c 	struct nf_ct_seqadj *this_way;
this_way          230 net/netfilter/nf_conntrack_seqadj.c 	this_way = &seqadj->seq[dir];
this_way          231 net/netfilter/nf_conntrack_seqadj.c 	return after(seq, this_way->correction_pos) ?
this_way          232 net/netfilter/nf_conntrack_seqadj.c 		 this_way->offset_after : this_way->offset_before;