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

  /frameworks/av/media/libnbaio/
PipeReader.cpp 17 #define LOG_TAG "PipeReader"
22 #include <media/nbaio/PipeReader.h>
26 PipeReader::PipeReader(Pipe& pipe) :
29 // any data already in the pipe is not visible to this PipeReader
37 PipeReader::~PipeReader()
43 ssize_t PipeReader::availableToRead()
62 ssize_t PipeReader::read(void *buffer, size_t count, int64_t readPTS)
  /frameworks/av/include/media/nbaio/
PipeReader.h 24 // PipeReader is safe for only a single thread
25 class PipeReader : public NBAIO_Source {
29 // Construct a PipeReader and associate it with a Pipe
31 PipeReader(Pipe& pipe);
32 virtual ~PipeReader();
  /external/chromium_org/chromeos/dbus/
debug_daemon_client.cc 45 class PipeReader {
49 explicit PipeReader(IOCompleteCallback callback)
56 virtual ~PipeReader() {
80 // can be retrieved with PipeReader::data(). To shutdown collection delete
81 // the instance and/or use PipeReader::OnDataReady(-1).
96 base::Bind(&PipeReader::OnDataReady, weak_ptr_factory_.GetWeakPtr()));
116 base::Bind(&PipeReader::OnDataReady, weak_ptr_factory_.GetWeakPtr()));
124 friend class base::RefCounted<PipeReader>;
134 base::WeakPtrFactory<PipeReader> weak_ptr_factory_;
136 DISALLOW_COPY_AND_ASSIGN(PipeReader);
    [all...]

Completed in 90 milliseconds