HomeSort by relevance Sort by last modified time
    Searched refs:get_inheritable (Results 1 - 12 of 12) sorted by null

  /external/python/cpython3/Lib/
socket.py 445 def get_inheritable(self): function in function:socket.type
450 def get_inheritable(self): function in function:socket.type
451 return os.get_inheritable(self.fileno())
454 get_inheritable.__doc__ = "Get the inheritable flag of the socket"
  /external/python/cpython3/Lib/test/
test_devpoll.py 118 self.assertEqual(os.get_inheritable(devpoll.fileno()), False)
test_epoll.py 260 self.assertEqual(os.get_inheritable(epoll.fileno()), False)
test_os.py     [all...]
test_kqueue.py 259 self.assertEqual(os.get_inheritable(kqueue.fileno()), False)
test_posix.py 558 self.assertFalse(os.get_inheritable(fd))
    [all...]
test_asyncore.py 732 self.assertFalse(s.socket.get_inheritable())
test_socket.py     [all...]
test_subprocess.py     [all...]
test_tempfile.py 460 self.assertEqual(os.get_inheritable(file.fd), False)
    [all...]
test_builtin.py     [all...]
  /external/python/cpython3/Python/
fileutils.c 948 get_inheritable(int fd, int raise) function
989 return get_inheritable(fd, 1);
1016 int isInheritable = get_inheritable(fd, raise);
    [all...]

Completed in 468 milliseconds