Home | History | Annotate | Download | only in test

Lines Matching refs:F_SETFL

68         rv = fcntl.fcntl(self.f.fileno(), fcntl.F_SETFL, os.O_NONBLOCK)
80 rv = fcntl.fcntl(self.f, fcntl.F_SETFL, os.O_NONBLOCK)
91 self.assertRaises(ValueError, fcntl.fcntl, -1, fcntl.F_SETFL, os.O_NONBLOCK)
92 self.assertRaises(ValueError, fcntl.fcntl, F(-1), fcntl.F_SETFL, os.O_NONBLOCK)
93 self.assertRaises(TypeError, fcntl.fcntl, 'spam', fcntl.F_SETFL, os.O_NONBLOCK)
94 self.assertRaises(TypeError, fcntl.fcntl, F('spam'), fcntl.F_SETFL, os.O_NONBLOCK)
97 fcntl.F_SETFL, os.O_NONBLOCK)
99 fcntl.F_SETFL, os.O_NONBLOCK)
101 fcntl.F_SETFL, os.O_NONBLOCK)
103 fcntl.F_SETFL, os.O_NONBLOCK)