HomeSort by relevance Sort by last modified time
    Searched defs:StreamInterface (Results 1 - 5 of 5) sorted by null

  /external/llvm/include/llvm/DebugInfo/CodeView/
StreamInterface.h 1 //===- StreamInterface.h - Base interface for a stream of data --*- C++ -*-===//
20 /// StreamInterface abstracts the notion of a data stream. This way, an
27 class StreamInterface {
29 virtual ~StreamInterface() {}
  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorDeviceCuda.h 19 class StreamInterface {
21 virtual ~StreamInterface() {}
99 class CudaStreamDevice : public StreamInterface {
184 // The StreamInterface is not owned: the caller is
186 explicit GpuDevice(const StreamInterface* stream) : stream_(stream), max_blocks_(INT_MAX) {
189 explicit GpuDevice(const StreamInterface* stream, int num_blocks) : stream_(stream), max_blocks_(num_blocks) {
313 const StreamInterface* stream_;
  /external/piex/src/
piex_types.h 107 // Defines the StreamInterface that needs to be implemented by the client.
108 class StreamInterface {
110 virtual ~StreamInterface() {}
  /external/webrtc/webrtc/base/
stream.cc 39 // StreamInterface
41 StreamInterface::~StreamInterface() {
44 StreamResult StreamInterface::WriteAll(const void* data, size_t data_len,
60 StreamResult StreamInterface::ReadAll(void* buffer, size_t buffer_len,
76 StreamResult StreamInterface::ReadLine(std::string* line) {
96 void StreamInterface::PostEvent(Thread* t, int events, int err) {
100 void StreamInterface::PostEvent(int events, int err) {
104 const void* StreamInterface::GetReadData(size_t* data_len) {
108 void* StreamInterface::GetWriteBuffer(size_t* buf_len)
    [all...]
stream.h 28 // StreamInterface is a generic asynchronous stream interface, supporting read,
34 // The following enumerations are declared outside of the StreamInterface
60 class StreamInterface : public MessageHandler {
66 ~StreamInterface() override;
99 sigslot::signal3<StreamInterface*, int, int> SignalEvent;
225 StreamInterface();
231 RTC_DISALLOW_COPY_AND_ASSIGN(StreamInterface);
242 class StreamAdapterInterface : public StreamInterface,
245 explicit StreamAdapterInterface(StreamInterface* stream, bool owned = true);
294 void Attach(StreamInterface* stream, bool owned = true)
    [all...]

Completed in 284 milliseconds