/frameworks/native/libs/binder/tests/ |
D | binderThroughputTest.cpp | 52 class Pipe { class 55 Pipe(int readFd, int writeFd) : m_readFd{readFd}, m_writeFd{writeFd} {} in Pipe() function in Pipe 56 Pipe(const Pipe &) = delete; 57 Pipe& operator=(const Pipe &) = delete; 58 Pipe& operator=(const Pipe &&) = delete; 60 Pipe(Pipe&& rval) noexcept { in Pipe() function in Pipe 66 ~Pipe() { in ~Pipe() 90 static tuple<Pipe, Pipe> createPipePair() { in createPipePair() 99 return make_tuple(Pipe(a[0], b[1]), Pipe(b[0], a[1])); in createPipePair() 184 Pipe p) in worker_fx() [all …]
|
D | schd-dbg.cpp | 151 class Pipe { class 154 Pipe(int readFd, int writeFd) : m_readFd{readFd}, m_writeFd{writeFd} { in Pipe() function in Pipe 156 Pipe(const Pipe&) = delete; 157 Pipe& operator=(const Pipe&) = delete; 158 Pipe& operator=(const Pipe&&) = delete; 161 Pipe(Pipe&& rval) noexcept { in Pipe() function in Pipe 167 ~Pipe() { in ~Pipe() 191 static tuple<Pipe, Pipe> createPipePair() { in createPipePair() 200 return make_tuple(Pipe(a[0], b[1]), Pipe(b[0], a[1])); in createPipePair() 322 Pipe p) { in worker_fx() [all …]
|
D | binderRpcTest.cpp | 197 class Pipe { class 199 Pipe() { CHECK(android::base::Pipe(&mRead, &mWrite)); } in Pipe() function in android::Pipe 200 Pipe(Pipe&&) = default; 212 Process(const std::function<void(Pipe*)>& f) { in Process() 225 Pipe* getPipe() { return &mPipe; } in getPipe() 229 Pipe mPipe; 337 .host = Process([&](Pipe* pipe) { in createRpcTestSocketServerProcess()
|
/frameworks/av/media/libnbaio/ |
D | Pipe.cpp | 28 Pipe::Pipe(size_t maxFrames, const NBAIO_Format& format, void *buffer) : in Pipe() function in android::Pipe 40 Pipe::~Pipe() in ~Pipe() 48 ssize_t Pipe::write(const void *buffer, size_t count) in write()
|
D | PipeReader.cpp | 27 PipeReader::PipeReader(Pipe& pipe) : in PipeReader()
|
D | Android.bp | 59 "Pipe.cpp",
|
D | README.txt | 9 Pipe
|
/frameworks/av/media/libnbaio/include/media/nbaio/ |
D | Pipe.h | 28 class Pipe : public NBAIO_Sink { 36 Pipe(size_t maxFrames, const NBAIO_Format& format, void *buffer = NULL); 39 virtual ~Pipe();
|
D | PipeReader.h | 31 PipeReader(Pipe& pipe); 55 Pipe& pipe() const { return mPipe; } 59 Pipe& mPipe;
|
/frameworks/native/libs/input/tests/ |
D | TestHelpers.h | 26 class Pipe { 31 Pipe() { in Pipe() function 39 ~Pipe() { in ~Pipe()
|
D | InputChannel_test.cpp | 43 Pipe pipe; in TEST_F() 60 Pipe pipe; in TEST_F()
|
/frameworks/av/services/audioflinger/ |
D | NBAIO_Tee.cpp | 230 Pipe *pipe = new Pipe(frames, format); in makeSinkSource()
|
D | Threads.cpp | 7074 Pipe *pipe = new Pipe(pipeFramesP2, format, pipeBuffer); in RecordThread()
|
/frameworks/base/cmds/incidentd/src/ |
D | incidentd_util.cpp | 85 bool Fpipe::init() { return Pipe(&mRead, &mWrite); } in init()
|
/frameworks/native/libs/binder/rust/tests/ |
D | serialization.cpp | 352 ASSERT_TRUE(base::Pipe(&out_file, &in_file)); in TEST_F()
|
/frameworks/native/cmds/installd/ |
D | dexopt.cpp | 1449 if (!Pipe(&pipe_read, &pipe_write)) { in get_class_loader_context_dex_paths() 2073 if (!Pipe(&pipe_read, &pipe_write)) { in hash_secondary_dex_file()
|
/frameworks/opt/setupwizard/tools/docs/ |
D | android-22.txt | 43957 public abstract class Pipe { 43958 ctor protected Pipe(); 43959 method public static java.nio.channels.Pipe open() throws java.io.IOException; 43960 method public abstract java.nio.channels.Pipe.SinkChannel sink(); 43961 method public abstract java.nio.channels.Pipe.SourceChannel source(); 43964 …public static abstract class Pipe.SinkChannel extends java.nio.channels.spi.AbstractSelectableChan… 43965 ctor protected Pipe.SinkChannel(java.nio.channels.spi.SelectorProvider); 43969 …public static abstract class Pipe.SourceChannel extends java.nio.channels.spi.AbstractSelectableCh… 43970 ctor protected Pipe.SourceChannel(java.nio.channels.spi.SelectorProvider); 44119 method public abstract java.nio.channels.Pipe openPipe() throws java.io.IOException;
|