Lines Matching defs:inheritable
4617 // inheritable (OICI) entries that allow (A) full control (FA) to
9423 inheritable: bool=True
9429 os_dup2_impl(PyObject *module, int fd, int fd2, int inheritable)
9455 /* Character files like console cannot be make non-inheritable */
9456 if (!inheritable && _Py_set_inheritable(fd2, 0, NULL) < 0) {
9463 if (!inheritable)
9476 if (!inheritable && dup3_works != 0) {
9490 if (inheritable || dup3_works == 0)
9501 if (!inheritable && _Py_set_inheritable(fd2, 0, NULL) < 0) {
13482 inheritable: int
13485 Set the inheritable flag of the specified file descriptor.
13489 os_set_inheritable_impl(PyObject *module, int fd, int inheritable)
13495 result = _Py_set_inheritable(fd, inheritable, NULL);
13530 inheritable: bool
13533 Set the inheritable flag of the specified handle.
13538 int inheritable)
13541 DWORD flags = inheritable ? HANDLE_FLAG_INHERIT : 0;