Searched refs:fd (Results 1 – 8 of 8) sorted by relevance
/kernel/tests/net/test/ |
D | tun_twister.py | 73 def __init__(self, fd=None, validator=None): argument 85 self._fd = fd 186 def __init__(self, fd=None, validator=None, drop_multicast=True): argument 197 super(TapTwister, self).__init__(fd=fd, validator=validator)
|
D | run_net_test.sh | 7 fd = sys.stdout.fileno() 8 flags = fcntl.fcntl(fd, fcntl.F_GETFL) 10 fcntl.fcntl(fd, fcntl.F_SETFL, flags) 230 mac=$(printf fe:fd:00:00:00:%02x $id) 344 $blockdevice=$ROOTFS $netconfig $consolemode ssl3=null,fd:3 $cmdline \
|
D | ping6_test.py | 373 fd = s.fileno() 374 reply = posix.read(fd, 4096) 382 fd = s.fileno() 383 reply = posix.read(fd, 4096)
|
D | net_test.py | 123 def SetNonBlocking(fd): argument 124 flags = fcntl.fcntl(fd, fcntl.F_GETFL, 0) 125 fcntl.fcntl(fd, fcntl.F_SETFL, flags | os.O_NONBLOCK)
|
D | anycast_test.py | 43 def __init__(self, fd): argument 46 self._fd = fd
|
D | tcp_repair_test.py | 316 for fd,event in events: 317 if fd == sock.fileno():
|
D | sock_diag_test.py | 828 for fd, event in poll_events: 831 out.append((fd, "|".join(flags)))
|
D | xfrm_algorithm_test.py | 383 with TapTwister(fd=self.tuns[netid].fileno(), validator=AssertEncrypted):
|