/external/python/cpython3/Modules/_io/clinic/ |
D | _iomodule.c.h | 135 const char *newline, int closefd, PyObject *opener); 149 int closefd = 1; in _io_open() local 153 &file, &mode, &buffering, &encoding, &errors, &newline, &closefd, &opener)) { in _io_open() 156 …return_value = _io_open_impl(module, file, mode, buffering, encoding, errors, newline, closefd, op… in _io_open()
|
D | winconsoleio.c.h | 44 const char *mode, int closefd, 55 int closefd = 1; in _io__WindowsConsoleIO___init__() local 59 &nameobj, &mode, &closefd, &opener)) { in _io__WindowsConsoleIO___init__() 62 …return_value = _io__WindowsConsoleIO___init___impl((winconsoleio *)self, nameobj, mode, closefd, o… in _io__WindowsConsoleIO___init__()
|
D | fileio.c.h | 46 int closefd, PyObject *opener); 56 int closefd = 1; in _io_FileIO___init__() local 60 &nameobj, &mode, &closefd, &opener)) { in _io_FileIO___init__() 63 return_value = _io_FileIO___init___impl((fileio *)self, nameobj, mode, closefd, opener); in _io_FileIO___init__()
|
/external/python/cpython3/Modules/_io/ |
D | fileio.c | 63 unsigned int closefd : 1; member 91 if (self->fd >= 0 && self->closefd) { in fileio_dealloc_warn() 149 if (!self->closefd) { in _io_FileIO_close_impl() 186 self->closefd = 1; in fileio_new() 221 int closefd, PyObject *opener) argument 247 if (self->closefd) { 362 self->closefd = closefd; 365 self->closefd = 1; 366 if (!closefd) { 1080 self->fd, mode_string(self), self->closefd ? "True" : "False"); [all …]
|
D | _iomodule.c | 234 const char *newline, int closefd, PyObject *opener) in _io_open_impl() argument 376 "OsiO", path_or_fd, rawmode, closefd, opener); in _io_open_impl()
|
/external/elfutils/libdwfl/ |
D | offline.c | 276 const char *file_name, int fd, bool closefd, in __libdwfl_report_offline() argument 281 Dwfl_Error error = __libdw_open_file (&fd, &elf, closefd, true); in __libdwfl_report_offline() 291 if (closefd) in __libdwfl_report_offline() 304 bool closefd = false; in dwfl_report_offline() local 307 closefd = true; in dwfl_report_offline() 316 return __libdwfl_report_offline (dwfl, name, file_name, fd, closefd, NULL); in dwfl_report_offline()
|
D | dwfl_report_elf.c | 294 bool closefd = false; in dwfl_report_elf() local 297 closefd = true; in dwfl_report_elf() 307 Dwfl_Error error = __libdw_open_file (&fd, &elf, closefd, false); in dwfl_report_elf() 319 if (closefd) in dwfl_report_elf()
|
/external/python/cpython2/Modules/_io/ |
D | fileio.c | 55 unsigned int closefd : 1; member 110 if (!self->closefd) { in fileio_close() 133 self->closefd = 1; in fileio_new() 218 int closefd = 1; in fileio_init() local 223 if (self->closefd) { in fileio_init() 233 kwlist, &nameobj, &mode, &closefd)) in fileio_init() 359 self->closefd = closefd; in fileio_init() 362 self->closefd = 1; in fileio_init() 363 if (!closefd) { in fileio_init() 1109 return PyBool_FromLong((long)(self->closefd)); in get_closefd()
|
D | _iomodule.c | 295 int buffering = -1, closefd = 1; in io_open() local 311 &closefd)) { in io_open() 416 "Osi", file, rawmode, closefd); in io_open()
|
/external/fonttools/Lib/fontTools/misc/ |
D | py23.py | 184 newline=None, closefd=True, opener=None): argument 233 if closefd: 238 closefd = True 246 file, mode, buffering, encoding, errors, newline, closefd, 250 file, mode, buffering, encoding, errors, newline, closefd)
|
/external/libdrm/etnaviv/ |
D | etnaviv_device.c | 68 dev->closefd = 1; in etna_device_new_dup() 88 if (dev->closefd) in etna_device_del_impl()
|
D | etnaviv_priv.h | 78 int closefd; /* call close(fd) upon destruction */ member
|
/external/libdrm/freedreno/ |
D | freedreno_device.c | 97 dev->closefd = 1; in fd_device_new_dup() 111 int close_fd = dev->closefd ? dev->fd : -1; in fd_device_del_impl()
|
D | freedreno_priv.h | 102 int closefd; /* call close(fd) upon destruction */ member
|
/external/python/cpython3/Objects/ |
D | fileobject.c | 31 const char *errors, const char *newline, int closefd) in PyFile_FromFd() argument 41 newline, closefd); in PyFile_FromFd()
|
/external/python/cpython3/Lib/multiprocessing/ |
D | popen_forkserver.py | 53 with open(w, 'wb', closefd=True) as f:
|
D | popen_spawn_posix.py | 61 with open(parent_w, 'wb', closefd=False) as f:
|
D | popen_spawn_win32.py | 67 with open(wfd, 'wb', closefd=True) as to_child:
|
D | spawn.py | 110 with os.fdopen(fd, 'rb', closefd=True) as from_parent:
|
/external/python/cpython3/Lib/test/libregrtest/ |
D | setup.py | 134 closefd=False,
|
/external/python/cpython3/Lib/ |
D | _pyio.py | 38 newline=None, closefd=True, opener=None): argument 207 closefd, opener=opener) 1427 def __init__(self, file, mode='r', closefd=True, opener=None): argument 1500 if not closefd: 1514 self._closefd = closefd 1731 def closefd(self): member in FileIO
|
/external/python/cpython2/Lib/test/ |
D | test_io.py | 545 closefd=False) 551 file = self.open(f.fileno(), "r", closefd=False) 559 self.assertRaises(ValueError, self.open, support.TESTFN, "r", closefd=False) 565 self.assertEqual(f.buffer.raw.closefd, True) 566 file = self.open(f.fileno(), "r", closefd=False) 567 self.assertEqual(file.buffer.raw.closefd, False) 620 self.check_flush_error_on_close(fd, 'wb', buffering=0, closefd=False) 627 self.check_flush_error_on_close(fd, 'wb', closefd=False) 634 self.check_flush_error_on_close(fd, 'w', closefd=False) 661 fileio = self.FileIO(f1.fileno(), closefd=False) [all …]
|
D | test_pty.py | 61 reader = io.FileIO(fd, mode='rb', closefd=False)
|
/external/python/cpython3/Lib/test/ |
D | test_io.py | 718 closefd=False) 724 file = self.open(f.fileno(), "r", closefd=False) 732 self.assertRaises(ValueError, self.open, support.TESTFN, "r", closefd=False) 738 self.assertEqual(f.buffer.raw.closefd, True) 739 file = self.open(f.fileno(), "r", closefd=False) 740 self.assertEqual(file.buffer.raw.closefd, False) 794 self.check_flush_error_on_close(fd, 'wb', buffering=0, closefd=False) 801 self.check_flush_error_on_close(fd, 'wb', closefd=False) 808 self.check_flush_error_on_close(fd, 'w', closefd=False) 871 fileio = self.FileIO(f1.fileno(), closefd=False) [all …]
|
D | test_pty.py | 59 reader = io.FileIO(fd, mode='rb', closefd=False)
|