HomeSort by relevance Sort by last modified time
    Searched refs:StreamFile (Results 1 - 25 of 28) 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/llvm/tools/llvm-bcanalyzer/
llvm-bcanalyzer.cpp 82 const BitstreamReader &StreamFile,
93 StreamFile.getBlockInfo(BlockID)) {
119 const BitstreamReader &StreamFile,
136 StreamFile.getBlockInfo(BlockID)) {
491 BitstreamReader &StreamFile,
513 StreamFile = BitstreamReader(BufPtr, EndBufPtr);
514 Stream = BitstreamCursor(StreamFile);
515 StreamFile.CollectBlockInfoNames();
539 BitstreamReader StreamFile;
542 if (openBitcodeFile(InputFilename, StreamBuffer, StreamFile, Stream
    [all...]
  /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/clang/lib/Frontend/
SerializedDiagnosticReader.cpp 28 llvm::BitstreamReader StreamFile;
29 StreamFile.init((const unsigned char *)(*Buffer)->getBufferStart(),
32 llvm::BitstreamCursor Stream(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/lib/Serialization/
ModuleManager.cpp 139 New->StreamFile.init((const unsigned char *)New->Buffer->getBufferStart(),
145 ModuleEntry->Signature = ReadSignature(ModuleEntry->StreamFile);
147 assert(ModuleEntry->Signature == ReadSignature(ModuleEntry->StreamFile));
ASTReader.cpp     [all...]
  /external/clang/include/clang/Serialization/
Module.h 182 llvm::BitstreamReader StreamFile;
  /external/lldb/source/Target/
StackFrameList.cpp 19 #include "lldb/Core/StreamFile.h"
269 StreamFile s(stdout, false);
749 StreamFile s(stdout, false);
    [all...]
  /external/lldb/include/lldb/
lldb-forward.h 191 class StreamFile;
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitcodeReader.cpp 190 std::unique_ptr<BitstreamReader> StreamFile;
    [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_3_0/
BitcodeReader.cpp 433 std::unique_ptr<BitstreamReader> StreamFile;
    [all...]
  /external/lldb/source/Commands/
CommandObjectMemory.cpp 765 StreamFile outfile_stream;
    [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp 139 std::unique_ptr<BitstreamReader> StreamFile;
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/psdk_inc/
_dbg_common.h     [all...]
  /external/lldb/source/Plugins/Process/gdb-remote/
ProcessGDBRemote.cpp 39 #include "lldb/Core/StreamFile.h"
79 lldb_private::StreamFile strm;
    [all...]

Completed in 852 milliseconds

1 2