Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.cpp1145 class PythonIOFile : public OwnedPythonFile<File> { class
1147 PythonIOFile(const PythonFile &file, bool borrowed) in PythonIOFile() function in __anon7439c15d0411::PythonIOFile
1150 ~PythonIOFile() override { Close(); } in ~PythonIOFile()
1184 char PythonIOFile::ID = 0;
1188 class BinaryPythonFile : public PythonIOFile {
1194 : PythonIOFile(file, borrowed), in BinaryPythonFile()
1242 class TextPythonFile : public PythonIOFile {
1248 : PythonIOFile(file, borrowed), in TextPythonFile()
1406 if (auto *pythonio = llvm::dyn_cast<PythonIOFile>(&file)) in FromFile()