Home
last modified time | relevance | path

Searched refs:req_seq (Results 1 – 2 of 2) sorted by relevance

/linux/net/tls/
H A Dtls_device.c717 u32 req_seq = resync_req >> 32; in tls_device_rx_resync_async() local
718 u32 req_end = req_seq + ((resync_req >> 16) & 0xffff); in tls_device_rx_resync_async()
735 if (before(*seq, req_seq)) in tls_device_rx_resync_async()
750 if (req_seq == resync_async->log[i] && in tls_device_rx_resync_async()
753 *seq = req_seq; in tls_device_rx_resync_async()
762 if (req_seq == *seq && in tls_device_rx_resync_async()
779 u32 req_seq; in tls_device_rx_resync_new_rec() local
793 req_seq = resync_req >> 32; in tls_device_rx_resync_new_rec()
797 if (likely(!is_req_pending) || req_seq != seq || in tls_device_rx_resync_new_rec()
/linux/tools/net/ynl/pyynl/lib/
H A Dynl.py1070 def _encode_message(self, op, vals, flags, req_seq):
1075 msg = self.nlproto.message(nl_flags, op.req_value, 1, req_seq)
1086 req_seq = random.randint(1024, 65535)
1090 msg = self._encode_message(op, vals, flags, req_seq)
1091 reqs_by_seq[req_seq] = (op, vals, msg, flags)
1093 req_seq += 1
1027 _encode_message(self, op, vals, flags, req_seq) global() argument