Home
last modified time | relevance | path

Searched refs:PythonIOFile (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.cpp1183 class PythonIOFile : public OwnedPythonFile<File> { class
1185 PythonIOFile(const PythonFile &file, bool borrowed) in PythonIOFile() function in __anonf81d8c2d0411::PythonIOFile
1188 ~PythonIOFile() override { Close(); } in ~PythonIOFile()
1222 char PythonIOFile::ID = 0;
1226 class BinaryPythonFile : public PythonIOFile {
1232 : PythonIOFile(file, borrowed), in BinaryPythonFile()
1280 class TextPythonFile : public PythonIOFile {
1286 : PythonIOFile(file, borrowed), in TextPythonFile()
1444 if (auto *pythonio = llvm::dyn_cast<PythonIOFile>(&file)) in FromFile()