/third_party/python/Lib/asyncio/ |
D | trsock.py | 153 def set_inheritable(self, *args, **kwargs): member in TransportSocket 155 return self._sock.set_inheritable(*args, **kwargs)
|
/third_party/python/Lib/ |
D | socket.py | 529 def set_inheritable(self, inheritable): member in socket 534 def set_inheritable(self, inheritable): member in socket 535 os.set_inheritable(self.fileno(), inheritable) 537 set_inheritable.__doc__ = "Set the inheritable flag of the socket"
|
D | _pyio.py | 1594 os.set_inheritable(fd, False)
|
/third_party/python/Python/ |
D | fileutils.c | 1305 set_inheritable(int fd, int inheritable, int raise, int *atomic_flag_works) in set_inheritable() function 1443 return set_inheritable(fd, 0, 0, NULL); in make_non_inheritable() 1465 return set_inheritable(fd, inheritable, 1, atomic_flag_works); in _Py_set_inheritable() 1474 return set_inheritable(fd, inheritable, 0, atomic_flag_works); in _Py_set_inheritable_async_safe() 1529 if (set_inheritable(fd, 0, gil_held, atomic_flag_works) < 0) { in _Py_open_impl() 1701 if (set_inheritable(fileno(f), 0, 1, NULL) < 0) { in _Py_fopen_obj()
|
/third_party/python/Misc/NEWS.d/ |
D | 3.6.0b4.rst | 27 Fix the set_inheritable() file descriptor method on platforms that do not
|
D | 3.10.0a5.rst | 310 Fix os.set_inheritable() for O_PATH file descriptors on Linux.
|
D | 3.10.0rc2.rst | 340 Fix the :func:`os.set_inheritable` function on FreeBSD 14 for file
|
D | 3.5.2rc1.rst | 540 Fix os.set_inheritable() on Android, ioctl() is blocked by SELinux and fails
|
D | 3.5.0a1.rst | 359 Fix the internal function set_inheritable() on Illumos. This platform 361 ENOTTY: "Inappropriate ioctl for device". set_inheritable() now falls back
|
D | 3.6.0a1.rst | 853 Fix os.set_inheritable() on Android, ioctl() is blocked by SELinux and fails
|
D | 3.7.0a1.rst | 1116 Fix the set_inheritable() file descriptor method on platforms that do not
|
/third_party/python/Lib/test/ |
D | test_subprocess.py | 2732 os.set_inheritable(fd, True) 2858 os.set_inheritable(fds[0], True) 2859 os.set_inheritable(fds[1], True) 2888 os.set_inheritable(inheritable, True) 2889 os.set_inheritable(non_inheritable, False) 3361 os.set_inheritable(fd, True)
|
D | test_os.py | 2193 self.check(os.set_inheritable, True) 3863 os.set_inheritable(fd, True) 3886 os.set_inheritable(fd, True) 3896 os.set_inheritable(fd, True) 3899 os.set_inheritable(fd, False) 3910 os.set_inheritable(fd, True) 3914 os.set_inheritable(fd, False)
|
D | test_socket.py | 5736 sock.set_inheritable(True) 5739 sock.set_inheritable(False) 5764 sock.set_inheritable(True)
|
D | test_posix.py | 1706 os.set_inheritable(wfd, True)
|
/third_party/python/Doc/library/ |
D | select.rst | 89 Use :func:`os.set_inheritable` to make the file descriptor inheritable.
|
D | socket.rst | 1692 .. method:: socket.set_inheritable(inheritable)
|
D | os.rst | 1609 .. function:: set_inheritable(fd, inheritable)
|
/third_party/python/Doc/whatsnew/ |
D | 3.4.rst | 273 * :func:`os.get_inheritable`, :func:`os.set_inheritable` 275 * :meth:`socket.socket.get_inheritable`, :meth:`socket.socket.set_inheritable` 1175 :func:`os.set_inheritable`) or a Windows handle 1396 :meth:`~socket.socket.set_inheritable`.
|
/third_party/python/Misc/ |
D | HISTORY | 1392 - Issue #22258: Fix the internal function set_inheritable() on Illumos. 1394 with errno is ENOTTY: "Inappropriate ioctl for device". set_inheritable() 4042 os.get/set_inheritable(), os.get/set_handle_inheritable() and 4043 socket.socket.get/set_inheritable().
|