Searched refs:infos (Results 1 – 1 of 1) sorted by relevance
/kernel/tests/net/test/ |
D | sock_diag_test.py | 675 infos = self.sock_diag.Dump(diag_req, "") 677 for diag_msg, attrs in infos), 678 "Expected to find FIN_WAIT2 socket in %s" % infos) 1065 def assertFoundSockets(self, infos, sockets): argument 1069 for info in infos: 1078 for i in infos: 1091 infos = self.FilterEstablishedSockets(0x1234, 0xffff) 1092 self.assertFoundSockets(infos, [s1]) 1094 infos = self.FilterEstablishedSockets(0x1234, 0xfffe) 1095 self.assertFoundSockets(infos, [s1, s2]) [all …]
|