HomeSort by relevance Sort by last modified time
    Searched refs:StreamFile (Results 1 - 25 of 31) sorted by null

1 2

  /external/lldb/include/lldb/Core/
StreamFile.h 1 //===-- StreamFile.h --------------------------------------------*- C++ -*-===//
26 class StreamFile : public Stream
32 StreamFile ();
34 StreamFile (uint32_t flags, uint32_t addr_size, lldb::ByteOrder byte_order);
36 StreamFile (int fd, bool transfer_ownership);
38 StreamFile (const char *path);
40 StreamFile (FILE *fh, bool transfer_ownership);
43 ~StreamFile();
65 // Classes that inherit from StreamFile can see and modify these
70 DISALLOW_COPY_AND_ASSIGN (StreamFile);
    [all...]
Debugger.h 28 #include "lldb/Core/StreamFile.h"
360 StreamFile m_input_file;
361 StreamFile m_output_file;
362 StreamFile m_error_file;
  /external/lldb/source/Core/
StreamFile.cpp 1 //===-- StreamFile.cpp ------------------------------------------*- C++ -*-===//
10 #include "lldb/Core/StreamFile.h"
24 // StreamFile constructor
26 StreamFile::StreamFile () :
32 StreamFile::StreamFile (uint32_t flags, uint32_t addr_size, ByteOrder byte_order) :
38 StreamFile::StreamFile (int fd, bool transfer_ownership) :
44 StreamFile::StreamFile (FILE *fh, bool transfer_ownership)
    [all...]
Android.mk 62 StreamFile.cpp \
EmulateInstruction.cpp 17 #include "lldb/Core/StreamFile.h"
364 StreamFile strm (stdout, false);
380 StreamFile strm (stdout, false);
393 StreamFile strm (stdout, false);
411 StreamFile strm (stdout, false);
Debugger.cpp     [all...]
  /external/lldb/source/API/
SBStream.cpp 14 #include "lldb/Core/StreamFile.h"
81 StreamFile *stream_file = new StreamFile;
113 m_opaque_ap.reset (new StreamFile (fh, transfer_fh_ownership));
140 m_opaque_ap.reset (new StreamFile (::fdopen (fd, "w"), transfer_fh_ownership));
SBInstruction.cpp 23 #include "lldb/Core/StreamFile.h"
189 StreamFile out_stream (out, false);
  /external/lldb/tools/lldb-platform/
lldb-platform.cpp 28 #include "lldb/Core/StreamFile.h"
137 log_stream_sp.reset (new StreamFile (stdout, false));
141 log_stream_sp.reset (new StreamFile (stderr, false));
149 log_stream_sp.reset (new StreamFile (log_file, true));
  /external/lldb/include/lldb/Interpreter/
CommandReturnObject.h 19 #include "lldb/Core/StreamFile.h"
82 lldb::StreamSP stream_sp (new StreamFile (fh, transfer_fh_ownership));
89 lldb::StreamSP stream_sp (new StreamFile (fh, transfer_fh_ownership));
  /external/lldb/source/Expression/
ClangUtilityFunction.cpp 21 #include "lldb/Core/StreamFile.h"
143 StreamFile logfile ("/tmp/exprs.txt", "a");
  /external/llvm/tools/llvm-bcanalyzer/
llvm-bcanalyzer.cpp 82 const BitstreamReader &StreamFile) {
92 StreamFile.getBlockInfo(BlockID)) {
118 const BitstreamReader &StreamFile) {
134 StreamFile.getBlockInfo(BlockID)) {
499 BitstreamReader StreamFile(BufPtr, EndBufPtr);
500 BitstreamCursor Stream(StreamFile);
501 StreamFile.CollectBlockInfoNames();
555 if (const char *BlockName = GetBlockName(I->first, StreamFile))
613 GetCodeName(FreqPairs[i].second, I->first, StreamFile))
  /external/lldb/source/Plugins/Process/Utility/
InferiorCallPOSIX.cpp 12 #include "lldb/Core/StreamFile.h"
96 StreamFile error_strm;
182 StreamFile error_strm;
236 StreamFile error_strm;
  /external/clang/include/clang/Serialization/
Module.h 172 llvm::BitstreamReader StreamFile;
  /external/clang/tools/libclang/
CXLoadedDiagnostic.cpp 271 llvm::BitstreamReader StreamFile;
272 StreamFile.init((const unsigned char *)Buffer->getBufferStart(),
276 Stream.init(StreamFile);
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitcodeReader.h 134 std::unique_ptr<BitstreamReader> StreamFile;
BitcodeReader.cpp     [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_3_0/
BitcodeReader.h 134 std::unique_ptr<BitstreamReader> StreamFile;
BitcodeReader.cpp     [all...]
  /external/lldb/source/Target/
StackFrameList.cpp 19 #include "lldb/Core/StreamFile.h"
269 StreamFile s(stdout, false);
749 StreamFile s(stdout, false);
    [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.h 130 std::unique_ptr<BitstreamReader> StreamFile;
BitcodeReader.cpp     [all...]
  /external/clang/lib/Serialization/
ModuleManager.cpp 131 New->StreamFile.init((const unsigned char *)New->Buffer->getBufferStart(),
  /external/lldb/include/lldb/
lldb-forward.h 191 class StreamFile;
  /external/lldb/source/Commands/
CommandObjectMemory.cpp 765 StreamFile outfile_stream;
    [all...]

Completed in 546 milliseconds

1 2