HomeSort by relevance Sort by last modified time
    Searched defs:Stream (Results 1 - 25 of 135) sorted by null

1 2 3 4 5 6

  /device/generic/goldfish-opengl/android-emu/android/base/files/
Stream.h 26 class Stream {
29 Stream() = default;
32 virtual ~Stream() = default;
38 // Write up to |size| bytes from |buffer| into the stream. Return the
43 // Write a single byte |value| into the stream. Ignore errors.
46 // Write a 16-bit |value| as big-endian into the stream. Ignore errors.
49 // Write a 32-bit |value| as big-endian into the stream. Ignore errors.
52 // Write a 64-bit |value| as big-endian into the stream. Ignore errors.
55 // Read a single byte from the stream. Return 0 on error.
58 // Read a single big-endian 16-bit value from the stream
    [all...]
  /external/antlr/runtime/Perl5/lib/ANTLR/Runtime/
Stream.pm 1 package ANTLR::Runtime::Stream;
  /frameworks/av/services/audiopolicy/engineconfigurable/parameter-framework/plugin/
Stream.cpp 17 #include "Stream.h"
24 Stream::Stream(const string &/*mappingValue*/,
35 LOG_ALWAYS_FATAL("Invalid Stream type name: %s, invalid XML structure file", name.c_str());
42 bool Stream::sendToHW(string & /*error*/)
Stream.h 27 class Stream : public CSubsystemObject
32 uint32_t volumeProfile; /**< applicable strategy for this stream. */
36 Stream(const std::string &mappingValue,
51 audio_stream_type_t mId; /**< stream type identifier to link with audio.h. */
  /external/webrtc/webrtc/
stream.h 23 class Stream {
25 // Starts stream activity.
26 // When a stream is active, it can receive, process and deliver packets.
28 // Stops stream activity.
29 // When a stream is stopped, it can't receive, process or deliver packets.
31 // Called to notify that network state has changed, so that the stream can
38 virtual ~Stream() {}
42 class ReceiveStream : public Stream {
51 // A tag class that denotes send stream type.
52 class SendStream : public Stream {};
    [all...]
  /external/llvm/include/llvm/DebugInfo/PDB/Raw/
SymbolStream.h 1 //===- SymbolStream.cpp - PDB Symbol Stream Access --------------*- C++ -*-===//
25 SymbolStream(std::unique_ptr<MappedBlockStream> Stream);
36 std::unique_ptr<MappedBlockStream> Stream;
InfoStream.h 1 //===- InfoStream.h - PDB Info Stream (Stream 1) Access ---------*- C++ -*-===//
38 InfoStream(std::unique_ptr<MappedBlockStream> Stream);
52 std::unique_ptr<MappedBlockStream> Stream;
ModStream.h 1 //===- ModStream.h - PDB Module Info Stream Access ------------------------===//
29 ModStream(const ModInfo &Module, std::unique_ptr<MappedBlockStream> Stream);
45 std::unique_ptr<MappedBlockStream> Stream;
TpiStream.h 1 //===- TpiStream.cpp - PDB Type Info (TPI) Stream 2 Access ------*- C++ -*-===//
32 TpiStream(const PDBFile &File, std::unique_ptr<MappedBlockStream> Stream);
58 std::unique_ptr<MappedBlockStream> Stream;
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
DiagnosticPrinter.h 64 raw_ostream &Stream;
67 DiagnosticPrinterRawOStream(raw_ostream &Stream) : Stream(Stream) {}
  /external/adhd/cras/src/tests/
dev_io_stubs.h 32 // Holds the rstream and devstream pointers for an attached stream.
33 struct Stream {
34 Stream(ShmPtr shm, RstreamPtr rstream, DevStreamPtr dstream) :
43 using StreamPtr = std::unique_ptr<Stream>;
70 void AddFakeDataToStream(Stream* stream, unsigned int frames);
81 void add_stream_to_dev(IodevPtr& dev, const StreamPtr& stream);
  /external/grpc-grpc-java/core/src/main/java/io/grpc/internal/
Stream.java 23 * A single stream of communication between two end-points within a transport.
27 public interface Stream {
31 * messages will be delivered. If the stream has a {@code start()} method, it must be called
39 * Writes a message payload to the remote end-point. The bytes from the stream are immediately
42 * and will not wait for the write to complete. If the stream has a {@code start()} method, it
51 * @param message stream containing the serialized message to be sent
  /external/libbrillo/brillo/streams/
stream.h 20 // Stream is a base class that specific stream storage implementations must
22 // The stream class provides general streaming I/O primitives to read, write and
23 // seek within a stream. It has methods for asynchronous (callback-based) as
25 // The Stream class is abstract and cannot be created by itself.
26 // In order to construct a stream, you must use one of the derived classes'
27 // factory methods which return a stream smart pointer (StreamPtr):
39 // instance to be present on the current thread. Using Stream::ReadAsync(),
40 // Stream::WriteAsync() and similar will call MessageLoop::current() to access
56 // NOTE TO IMPLEMENTERS: When creating new stream types, you must deriv
    [all...]
  /external/llvm/include/llvm/IR/
DiagnosticPrinter.h 63 raw_ostream &Stream;
66 DiagnosticPrinterRawOStream(raw_ostream &Stream) : Stream(Stream) {}
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Bitcode/
BitcodeWriter.h 34 std::unique_ptr<BitstreamWriter> Stream;
108 /// Write the specified module to the specified raw output stream.
110 /// For streams where it matters, the given stream should be in "binary"
136 /// file) to the given raw output stream, where it will be written in a new
146 /// Write the specified module summary index to the given raw output stream,
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/PDB/Native/
SymbolStream.h 1 //===- SymbolStream.cpp - PDB Symbol Stream Access --------------*- C++ -*-===//
26 SymbolStream(std::unique_ptr<msf::MappedBlockStream> Stream);
43 std::unique_ptr<msf::MappedBlockStream> Stream;
  /external/swiftshader/third_party/subzero/src/
IceTranslator.cpp 51 Ostream &Stream = Ctx->getStrDump();
52 Stream << "Warning : Default " << Kind << " prefix '" << Prefix
  /device/generic/goldfish/camera/fake-pipeline2/
Base.h 46 struct Stream {
58 // -1 if the reprocessing stream is independent
  /device/google/cuttlefish_common/guest/hals/camera/fake-pipeline2/
Base.h 50 struct Stream {
62 // -1 if the reprocessing stream is independent
  /external/clang/lib/Frontend/
TestModuleFileExtension.h 34 llvm::BitstreamWriter &Stream) override;
38 llvm::BitstreamCursor Stream;
67 const llvm::BitstreamCursor &Stream) override;
  /external/clang/test/Sema/
parentheses.cpp 32 class Stream {
35 Stream &operator<<(int);
36 Stream &operator<<(const char*);
37 Stream &operator>>(int);
38 Stream &operator>>(const char*);
41 void f(Stream& s, bool b) {
98 Stream() << b + c;
99 Stream() >> b + c; // expected-warning {{operator '>>' has lower precedence than '+'; '+' will be evaluated first}} \
  /external/llvm/include/llvm/DebugInfo/CodeView/
StreamRef.h 1 //===- StreamRef.h - A copyable reference to a stream -----------*- C++ -*-===//
21 StreamRef() : Stream(nullptr), ViewOffset(0), Length(0) {}
22 StreamRef(const StreamInterface &Stream)
23 : Stream(&Stream), ViewOffset(0), Length(Stream.getLength()) {}
24 StreamRef(const StreamInterface &Stream, uint32_t Offset, uint32_t Length)
25 : Stream(&Stream), ViewOffset(Offset), Length(Length) {}
36 return Stream->readBytes(ViewOffset + Offset, Size, Buffer)
    [all...]
StreamWriter.h 1 //===- StreamWriter.h - Writes bytes and objects to a stream ----*- C++ -*-===//
29 StreamWriter(StreamRef Stream);
76 uint32_t getLength() const { return Stream.getLength(); }
80 StreamRef Stream;
  /external/lzma/CPP/7zip/Archive/Common/
MultiStream.h 23 CMyComPtr<IInStream> Stream;
41 RINOK(s.Stream->Seek(0, STREAM_SEEK_CUR, &s.LocalPos));
60 unsigned _streamIndex; // required stream
67 CMyComPtr<ISequentialOutStream> Stream;
  /external/swiftshader/src/Pipeline/
VertexRoutine.hpp 59 typedef VertexProcessor::State::Input Stream;
61 Vector4f readStream(Pointer<Byte> &buffer, UInt &stride, const Stream &stream, const UInt &index);

Completed in 819 milliseconds

1 2 3 4 5 6