Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.cpp83 if (PythonFile::Check(m_py_obj)) in GetObjectType()
933 PythonFile::PythonFile() : PythonObject() {} in PythonFile() function in PythonFile
935 PythonFile::PythonFile(File &file, const char *mode) { Reset(file, mode); } in PythonFile() function in PythonFile
937 PythonFile::PythonFile(const char *path, const char *mode) { in PythonFile() function in PythonFile
943 PythonFile::PythonFile(PyRefType type, PyObject *o) { Reset(type, o); } in PythonFile() function in PythonFile
945 PythonFile::~PythonFile() {} in ~PythonFile()
947 bool PythonFile::Check(PyObject *py_obj) { in Check()
974 void PythonFile::Reset(PyRefType type, PyObject *py_obj) { in Reset()
979 if (!PythonFile::Check(py_obj)) { in Reset()
989 void PythonFile::Reset(File &file, const char *mode) { in Reset()
[all …]
H A DPythonDataObjects.h445 class PythonFile : public PythonObject {
447 PythonFile();
448 PythonFile(File &file, const char *mode);
449 PythonFile(const char *path, const char *mode);
450 PythonFile(PyRefType type, PyObject *o);
452 ~PythonFile() override;
H A DScriptInterpreterPython.h584 bool SetStdHandle(File &file, const char *py_name, PythonFile &save_file,
587 PythonFile m_saved_stdin;
588 PythonFile m_saved_stdout;
589 PythonFile m_saved_stderr;
H A DScriptInterpreterPython.cpp576 PythonFile &save_file, in SetStdHandle()
585 .AsType<PythonFile>(); in SetStdHandle()
587 PythonFile new_file(file, mode); in SetStdHandle()