Searched refs:Pipe (Results 1 - 10 of 10) sorted by relevance

/frameworks/av/include/media/nbaio/
H A DPipe.h24 // Pipe is multi-thread safe for readers (see PipeReader), but safe for only a single writer thread.
27 class Pipe : public NBAIO_Sink { class in namespace:android
33 Pipe(size_t maxFrames, NBAIO_Format format);
34 virtual ~Pipe();
59 volatile int32_t mReaders; // number of PipeReader clients currently attached to this Pipe
H A DPipeReader.h20 #include "Pipe.h"
29 // Construct a PipeReader and associate it with a Pipe
30 // FIXME make this constructor a factory method of Pipe.
31 PipeReader(Pipe& pipe);
53 Pipe& pipe() const { return mPipe; }
57 Pipe& mPipe;
/frameworks/av/media/libnbaio/
H A DPipe.cpp17 #define LOG_TAG "Pipe"
23 #include <media/nbaio/Pipe.h>
28 Pipe::Pipe(size_t maxFrames, NBAIO_Format format) : function in class:android::Pipe
37 Pipe::~Pipe()
43 ssize_t Pipe::write(const void *buffer, size_t count)
H A DAndroid.mk12 Pipe.cpp \
H A DPipeReader.cpp26 PipeReader::PipeReader(Pipe& pipe) :
/frameworks/base/libs/androidfw/tests/
H A DTestHelpers.h24 class Pipe { class in namespace:android
29 Pipe() { function in class:android::Pipe
37 ~Pipe() {
H A DInputChannel_test.cpp41 Pipe pipe;
55 // clean up fds of Pipe endpoints that were closed so we don't try to close them again
/frameworks/native/libs/utils/tests/
H A DTestHelpers.h24 class Pipe { class in namespace:android
29 Pipe() { function in class:android::Pipe
37 ~Pipe() {
H A DLooper_test.cpp41 Pipe* mPipe;
44 DelayedWriteSignal(int delayMillis, Pipe* pipe) :
165 Pipe pipe;
183 Pipe pipe;
206 Pipe pipe;
224 Pipe pipe;
249 Pipe pipe;
275 Pipe pipe;
297 Pipe pipe;
339 Pipe pip
[all...]
/frameworks/av/services/audioflinger/
H A DAudioFlinger.cpp82 #include <media/nbaio/Pipe.h>
2315 // create a Pipe to archive a copy of FastMixer's output for dumpsys
2316 Pipe *teeSink = new Pipe(TEE_SINK_FRAMES, format);

Completed in 224 milliseconds