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

1 2 3 4 5 6 7 8 91011>>

  /device/generic/goldfish/libqemu/
test_util.h 27 } Pipe;
29 int pipe_openSocket( Pipe* pipe, int port );
30 int pipe_openQemuPipe( Pipe* pipe, const char* pipename );
31 int pipe_send( Pipe* pipe, const void* buff, size_t bufflen );
32 int pipe_recv( Pipe* pipe, void* buff, size_t bufflen );
33 void pipe_close( Pipe* pipe )
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/
PipeTest.java 21 import java.nio.channels.Pipe;
22 import java.nio.channels.Pipe.SinkChannel;
23 import java.nio.channels.Pipe.SourceChannel;
29 * Tests for Pipe and its default implementation
34 * @tests java.nio.channels.Pipe#open()
37 Pipe pipe = Pipe.open(); local
38 assertNotNull(pipe);
42 * @tests java.nio.channels.Pipe#sink(
45 Pipe pipe = Pipe.open(); local
54 Pipe pipe = Pipe.open(); local
    [all...]
  /external/drrickorang/LoopbackApp/app/src/main/java/org/drrickorang/loopback/
Pipe.java 21 * This class is a pipe that allows one writer and one reader.
24 public abstract class Pipe {
33 public Pipe(int maxSamples) {
50 /** Clear the pipe. */
  /libcore/luni/src/test/java/libcore/java/nio/channels/
PipeTest.java 20 import java.nio.channels.Pipe;
24 Pipe p = Pipe.open();
  /frameworks/av/media/libnbaio/
Pipe.cpp 17 #define LOG_TAG "Pipe"
23 #include <media/nbaio/Pipe.h>
28 Pipe::Pipe(size_t maxFrames, const NBAIO_Format& format, void *buffer) :
40 Pipe::~Pipe()
48 ssize_t Pipe::write(const void *buffer, size_t count)
  /frameworks/av/media/libnbaio/include/media/nbaio/
Pipe.h 25 // Pipe is multi-thread safe for readers (see PipeReader), but safe for only a single writer thread.
28 class Pipe : public NBAIO_Sink {
34 // buffer is an optional parameter specifying the virtual address of the pipe buffer,
36 Pipe(size_t maxFrames, const NBAIO_Format& format, void *buffer = NULL);
39 virtual ~Pipe();
53 // The write side of a pipe permits overruns; flow control is the caller's responsibility.
65 volatile int32_t mReaders; // number of PipeReader clients currently attached to this Pipe
PipeReader.h 20 #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);
55 Pipe& pipe() const { return mPipe; }
59 Pipe& mPipe;
  /system/libhwbinder/vts/performance/
PerfTest.h 29 // Pipe is a object used for IPC between parent process and child process.
31 // The common usage is the main process to create the Pipe and forks.
34 class Pipe {
36 static tuple<Pipe, Pipe> createPipePair();
37 Pipe(Pipe&& rval);
38 ~Pipe();
62 Pipe(int read_fd, int write_fd) : fd_read_{read_fd}, fd_write_{write_fd} {}
63 Pipe(const Pipe&) = delete
    [all...]
  /libcore/ojluni/src/main/java/java/nio/channels/
Pipe.java 33 * A pair of channels that implements a unidirectional pipe.
35 * <p> A pipe consists of a pair of channels: A writable {@link
36 * Pipe.SinkChannel sink} channel and a readable {@link Pipe.SourceChannel source}
40 * <p> Whether or not a thread writing bytes to a pipe will block until another
41 * thread reads those bytes, or some previously-written bytes, from the pipe is
42 * system-dependent and therefore unspecified. Many pipe implementations will
52 public abstract class Pipe {
55 * A channel representing the readable end of a {@link Pipe}.
77 * <p> Pipe-source channels only support reading, so this metho
    [all...]
  /system/extras/alloc-stress/
alloc-stress.cpp 35 class Pipe {
38 Pipe(const Pipe &) = delete;
39 Pipe& operator=(const Pipe &) = delete;
40 Pipe& operator=(const Pipe &&) = delete;
42 Pipe(int readFd, int writeFd) : m_readFd{readFd}, m_writeFd{writeFd} {
46 Pipe(Pipe&& rval) noexcept
    [all...]
  /frameworks/native/libs/input/tests/
TestHelpers.h 26 class Pipe {
31 Pipe() {
33 ::pipe(fds);
39 ~Pipe() {
  /system/core/libutils/tests/
TestHelpers.h 24 class Pipe {
29 Pipe() {
31 ::pipe(fds);
37 ~Pipe() {
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/WindowsResource/
ResourceScriptTokenList.h 31 SHORT_TOKEN(Pipe, '|') // Bitwise-OR operator.
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/WindowsResource/
ResourceScriptTokenList.h 31 SHORT_TOKEN(Pipe, '|') // Bitwise-OR operator.
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/WindowsResource/
ResourceScriptTokenList.h 31 SHORT_TOKEN(Pipe, '|') // Bitwise-OR operator.
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/WindowsResource/
ResourceScriptTokenList.h 31 SHORT_TOKEN(Pipe, '|') // Bitwise-OR operator.
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/WindowsResource/
ResourceScriptTokenList.h 31 SHORT_TOKEN(Pipe, '|') // Bitwise-OR operator.
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/WindowsResource/
ResourceScriptTokenList.h 31 SHORT_TOKEN(Pipe, '|') // Bitwise-OR operator.
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/WindowsResource/
ResourceScriptTokenList.h 31 SHORT_TOKEN(Pipe, '|') // Bitwise-OR operator.
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/WindowsResource/
ResourceScriptTokenList.h 31 SHORT_TOKEN(Pipe, '|') // Bitwise-OR operator.
  /external/python/cpython2/Lib/test/
mp_fork_bomb.py 10 r, w = multiprocessing.Pipe(False)
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
mp_fork_bomb.py 10 r, w = multiprocessing.Pipe(False)
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
mp_fork_bomb.py 10 r, w = multiprocessing.Pipe(False)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
mp_fork_bomb.py 10 r, w = multiprocessing.Pipe(False)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
mp_fork_bomb.py 10 r, w = multiprocessing.Pipe(False)

Completed in 1573 milliseconds

1 2 3 4 5 6 7 8 91011>>