Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
DPythonDataObjects.cpp1247 class PythonIOFile : public OwnedPythonFile<File> { class
1249 PythonIOFile(const PythonFile &file, bool borrowed) in PythonIOFile() function in __anon89da3f040511::PythonIOFile
1252 ~PythonIOFile() override { Close(); } in ~PythonIOFile()
1286 char PythonIOFile::ID = 0;
1290 class BinaryPythonFile : public PythonIOFile {
1296 : PythonIOFile(file, borrowed), in BinaryPythonFile()
1344 class TextPythonFile : public PythonIOFile {
1350 : PythonIOFile(file, borrowed), in TextPythonFile()
1517 if (auto *pythonio = llvm::dyn_cast<PythonIOFile>(&file)) in FromFile()