Searched refs:FilePrintStream (Results 1 - 5 of 5) sorted by relevance

/macosx-10.10.1/WTF-7600.1.24/wtf/
H A DFilePrintStream.cpp27 #include "FilePrintStream.h"
31 FilePrintStream::FilePrintStream(FILE* file, AdoptionMode adoptionMode) function in class:WTF::FilePrintStream
37 FilePrintStream::~FilePrintStream()
44 std::unique_ptr<FilePrintStream> FilePrintStream::open(const char* filename, const char* mode)
50 return std::make_unique<FilePrintStream>(file);
53 void FilePrintStream::vprintf(const char* format, va_list argList)
58 void FilePrintStream
[all...]
H A DFilePrintStream.h35 class FilePrintStream : public PrintStream { class in namespace:WTF
42 FilePrintStream(FILE*, AdoptionMode = Adopt);
43 virtual ~FilePrintStream();
45 WTF_EXPORT_PRIVATE static std::unique_ptr<FilePrintStream> open(const char* filename, const char* mode);
59 using WTF::FilePrintStream;
H A DDataLog.h31 #include <wtf/FilePrintStream.h>
36 WTF_EXPORT_PRIVATE FilePrintStream& dataFile();
H A DDataLog.cpp30 #include <wtf/FilePrintStream.h>
61 static FilePrintStream* file;
63 static uint64_t fileData[(sizeof(FilePrintStream) + 7) / 8];
112 file = FilePrintStream::open(actualFilename, "w").release();
122 file = new (fileData) FilePrintStream(stderr, FilePrintStream::Borrow);
138 FilePrintStream& dataFile()
/macosx-10.10.1/JavaScriptCore-7600.1.17/profiler/
H A DProfilerDatabase.cpp117 auto out = FilePrintStream::open(filename, "w");

Completed in 76 milliseconds