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

1 2 3

  /external/piex/src/
piex.h 31 // unique_ptr<StreamInterface> data_stream(new DataStream(file));
62 bool IsRaw(StreamInterface* data);
73 Error GetPreviewImageData(StreamInterface* data,
78 bool GetDngInformation(StreamInterface* data, std::uint32_t* width,
84 bool GetOrientation(StreamInterface* data, std::uint32_t* orientation);
tiff_parser.h 111 bool Get16u(StreamInterface* stream, const std::uint32_t offset,
117 bool Get32u(StreamInterface* stream, const std::uint32_t offset,
124 StreamInterface* stream, Error* error);
128 bool GetEndianness(const std::uint32_t tiff_offset, StreamInterface* stream,
133 StreamInterface* stream, Image* image);
137 bool GetJpegDimensions(const std::uint32_t jpeg_offset, StreamInterface* stream,
151 const TagSet& desired_tags, StreamInterface* stream,
157 bool GetExifOrientation(StreamInterface* stream, const std::uint32_t offset,
175 explicit TiffParser(StreamInterface* stream);
176 TiffParser(StreamInterface* stream, const std::uint32_t offset)
    [all...]
piex.cc 54 bool GetDngInformation(const TagSet& extended_tags, StreamInterface* data,
82 const std::uint32_t number_of_ifds, StreamInterface* stream,
106 const std::uint32_t number_of_ifds, StreamInterface* stream,
114 bool GetExifData(const std::uint32_t exif_offset, StreamInterface* stream,
125 StreamInterface* stream,
137 bool GetExifIfd(const Endian endian, StreamInterface* stream,
163 const std::uint32_t skip_offset, StreamInterface* stream,
182 const Endian endian, StreamInterface* stream,
206 const Endian endian, StreamInterface* stream,
229 bool GetOlympusPreviewImage(StreamInterface* stream
    [all...]
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/
socketpool.h 26 class StreamInterface;
36 virtual StreamInterface* RequestConnectedStream(const SocketAddress& remote,
38 virtual void ReturnConnectedStream(StreamInterface* stream) = 0;
52 StreamInterface* RequestConnectedStream(const SocketAddress& remote,
54 void ReturnConnectedStream(StreamInterface* stream) override;
57 typedef std::pair<SocketAddress, StreamInterface*> ConnectedStream;
60 void OnStreamEvent(StreamInterface* stream, int events, int err);
81 StreamInterface* RequestConnectedStream(const SocketAddress& remote,
83 void ReturnConnectedStream(StreamInterface* stream) override;
101 StreamInterface* RequestConnectedStream(const SocketAddress& remote
    [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...]
multipart.h 27 class MultipartStream : public StreamInterface, public sigslot::has_slots<> {
36 bool AddPart(StreamInterface* data_stream,
50 // StreamInterface
67 typedef std::vector<StreamInterface*> PartList;
69 // StreamInterface Slots
70 void OnEvent(StreamInterface* stream, int events, int error);
httpserver.h 43 int HandleConnection(StreamInterface* stream);
45 sigslot::signal3<HttpServer*, int, StreamInterface*> SignalConnectionClosed;
85 void BeginProcess(StreamInterface* stream);
86 StreamInterface* EndProcess();
128 StreamInterface* stream);
httpbase.h 19 class StreamInterface;
83 // Attach HttpBase to a StreamInterface which represents a bidirectional HTTP
100 bool attach(StreamInterface* stream);
101 StreamInterface* stream() { return http_stream_; }
102 StreamInterface* detach();
117 StreamInterface* GetDocumentStream();
144 void OnHttpStreamEvent(StreamInterface* stream, int events, int error);
145 void OnDocumentEvent(StreamInterface* stream, int events, int error);
174 StreamInterface* http_stream_;
linux.h 48 virtual void Attach(StreamInterface* stream);
54 scoped_ptr<StreamInterface> instream_;
socketpool.cc 41 StreamInterface* StreamCache::RequestConnectedStream(
57 if (StreamInterface* stream = pool_->RequestConnectedStream(remote, err)) {
66 void StreamCache::ReturnConnectedStream(StreamInterface* stream) {
88 void StreamCache::OnStreamEvent(StreamInterface* stream, int events, int err) {
119 StreamInterface*
140 NewSocketPool::ReturnConnectedStream(StreamInterface* stream) {
157 StreamInterface*
199 ReuseSocketPool::ReturnConnectedStream(StreamInterface* stream) {
208 ReuseSocketPool::OnStreamEvent(StreamInterface* stream, int events, int err) {
249 StreamInterface* LoggingPoolAdapter::RequestConnectedStream
    [all...]
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...]
sslstreamadapter.h 79 static SSLStreamAdapter* Create(StreamInterface* stream);
81 explicit SSLStreamAdapter(StreamInterface* stream)
diskcache.h 23 class StreamInterface;
46 StreamInterface* WriteResource(const std::string& id, size_t index);
49 StreamInterface* ReadResource(const std::string& id, size_t index) const;
httpclient.h 33 StreamInterface* output, size_t* size);
36 bool HttpReadCacheHeaders(StreamInterface* input,
114 StreamInterface* request_doc);
117 StreamInterface* GetDocumentStream();
  /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() {}
StreamRef.h 14 #include "llvm/DebugInfo/CodeView/StreamInterface.h"
22 StreamRef(const StreamInterface &Stream)
24 StreamRef(const StreamInterface &Stream, uint32_t Offset, uint32_t Length)
97 const StreamInterface *Stream;
ByteStream.h 15 #include "llvm/DebugInfo/CodeView/StreamInterface.h"
25 template <bool Writable = false> class ByteStream : public StreamInterface {
  /external/llvm/include/llvm/DebugInfo/PDB/Raw/
PDBFileBuilder.h 25 class StreamInterface;
35 std::unique_ptr<codeview::StreamInterface> PdbFileBuffer);
51 std::unique_ptr<codeview::StreamInterface> PdbFileBuffer;
PDBFile.h 15 #include "llvm/DebugInfo/CodeView/StreamInterface.h"
27 class StreamInterface;
72 explicit PDBFile(std::unique_ptr<codeview::StreamInterface> PdbFileBuffer);
129 std::unique_ptr<codeview::StreamInterface> Buffer;
  /external/webrtc/webrtc/libjingle/xmpp/
xmppsocket.h 25 class StreamInterface;
57 void OnEvent(rtc::StreamInterface* stream, int events, int err);
62 rtc::StreamInterface *stream_;
  /external/webrtc/webrtc/sound/
alsasoundsystem.h 67 template <typename StreamInterface>
68 StreamInterface *OpenDevice(
72 StreamInterface *(AlsaSoundSystem::*start_fn)(
pulseaudiosoundsystem.h 128 template <typename StreamInterface>
129 StreamInterface *OpenDevice(
133 StreamInterface *(PulseAudioSoundSystem::*connect_fn)(
  /frameworks/base/media/jni/
android_media_Utils.h 33 class AssetStream : public piex::StreamInterface {
52 class BufferedStream : public piex::StreamInterface {
75 class FileStream : public piex::StreamInterface {
99 piex::StreamInterface* stream, const String8& filename, piex::PreviewImageData& image_data);
  /external/webrtc/talk/media/base/
rtpdump.h 106 explicit RtpDumpReader(rtc::StreamInterface* stream)
129 rtc::StreamInterface* stream_;
145 explicit RtpDumpLoopReader(rtc::StreamInterface* stream);
188 explicit RtpDumpWriter(rtc::StreamInterface* stream);
223 rtc::StreamInterface* stream_;

Completed in 437 milliseconds

1 2 3