Home | History | Annotate | Download | only in Interpreter

Lines Matching defs:file

5 // This file is distributed under the University of Illinois Open Source
11 // the *FIRST* header file included here.
27 #include "lldb/Host/File.h"
49 FILE *file = ::tmpfile();
50 if (file)
52 ::PyObject_Print (m_py_obj, file, 0);
53 const long length = ftell (file);
56 ::rewind(file);
58 const size_t length_read = ::fread (file_contents.data(), 1, file_contents.size(), file);
62 ::fclose (file);