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 41 class PipeReader {
45 explicit PipeReader(IOCompleteCallback callback)
52 virtual ~PipeReader() {
76 // can be retrieved with PipeReader::data(). To shutdown collection delete
77 // the instance and/or use PipeReader::OnDataReady(-1).
92 base::Bind(&PipeReader::OnDataReady, weak_ptr_factory_.GetWeakPtr()));
112 base::Bind(&PipeReader::OnDataReady, weak_ptr_factory_.GetWeakPtr()));
120 friend class base::RefCounted<PipeReader>;
130 base::WeakPtrFactory<PipeReader> weak_ptr_factory_;
132 DISALLOW_COPY_AND_ASSIGN(PipeReader);
    [all...]

Completed in 57 milliseconds