| D | PythonDataObjects.cpp | 1135 OwnedPythonFile(const PythonFile &file, bool borrowed, Args... args) in OwnedPythonFile() argument 1136 : Base(args...), m_py_obj(file), m_borrowed(borrowed) { in OwnedPythonFile() 1196 SimplePythonFile(const PythonFile &file, bool borrowed, int fd, in SimplePythonFile() argument 1198 : OwnedPythonFile(file, borrowed, fd, options, false) {} in SimplePythonFile() 1249 PythonIOFile(const PythonFile &file, bool borrowed) in PythonIOFile() argument 1250 : OwnedPythonFile(file, borrowed) {} in PythonIOFile() 1295 BinaryPythonFile(int fd, const PythonFile &file, bool borrowed) in BinaryPythonFile() argument 1296 : PythonIOFile(file, borrowed), in BinaryPythonFile() 1349 TextPythonFile(int fd, const PythonFile &file, bool borrowed) in TextPythonFile() argument 1350 : PythonIOFile(file, borrowed), in TextPythonFile() [all …]
|