Searched refs:PythonFile (Results 1 – 4 of 4) sorted by relevance
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/ |
| H A D | PythonDataObjects.cpp | 83 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 D | PythonDataObjects.h | 445 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 D | ScriptInterpreterPython.h | 584 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 D | ScriptInterpreterPython.cpp | 576 PythonFile &save_file, in SetStdHandle() 585 .AsType<PythonFile>(); in SetStdHandle() 587 PythonFile new_file(file, mode); in SetStdHandle()
|