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

1 2 3 4 5 6 7 8

  /prebuilts/go/darwin-x86/src/os/
pipe_bsd.go 11 // Pipe returns a connected pair of Files; reads from r return bytes written to w.
13 func Pipe() (r *File, w *File, err error) {
18 e := syscall.Pipe(p[0:])
21 return nil, nil, NewSyscallError("pipe", e)
pipe_freebsd.go 9 // Pipe returns a connected pair of Files; reads from r return bytes written to w.
11 func Pipe() (r *File, w *File, err error) {
16 return nil, nil, NewSyscallError("pipe", e)
pipe_linux.go 9 // Pipe returns a connected pair of Files; reads from r return bytes written to w.
11 func Pipe() (r *File, w *File, err error) {
20 e = syscall.Pipe(p[0:])
23 return nil, nil, NewSyscallError("pipe", e)
  /prebuilts/go/linux-x86/src/os/
pipe_bsd.go 11 // Pipe returns a connected pair of Files; reads from r return bytes written to w.
13 func Pipe() (r *File, w *File, err error) {
18 e := syscall.Pipe(p[0:])
21 return nil, nil, NewSyscallError("pipe", e)
pipe_freebsd.go 9 // Pipe returns a connected pair of Files; reads from r return bytes written to w.
11 func Pipe() (r *File, w *File, err error) {
16 return nil, nil, NewSyscallError("pipe", e)
pipe_linux.go 9 // Pipe returns a connected pair of Files; reads from r return bytes written to w.
11 func Pipe() (r *File, w *File, err error) {
20 e = syscall.Pipe(p[0:])
23 return nil, nil, NewSyscallError("pipe", e)
  /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)
  /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...]
  /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
  /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...]
  /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() {
  /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. */
  /external/python/cpython2/Lib/multiprocessing/dummy/
connection.py 35 __all__ = [ 'Client', 'Listener', 'Pipe' ]
63 def Pipe(duplex=True):
  /external/python/cpython3/Lib/multiprocessing/dummy/
connection.py 10 __all__ = [ 'Client', 'Listener', 'Pipe' ]
44 def Pipe(duplex=True):
  /prebuilts/gdb/darwin-x86/lib/python2.7/multiprocessing/dummy/
connection.py 35 __all__ = [ 'Client', 'Listener', 'Pipe' ]
63 def Pipe(duplex=True):
  /prebuilts/gdb/linux-x86/lib/python2.7/multiprocessing/dummy/
connection.py 35 __all__ = [ 'Client', 'Listener', 'Pipe' ]
63 def Pipe(duplex=True):
  /prebuilts/go/darwin-x86/src/syscall/
syscall_dragonfly.go 75 //sysnb pipe() (r int, w int, err error)
77 func Pipe(p []int) (err error) {
81 p[0], p[1], err = pipe()
syscall_freebsd.go 69 func Pipe(p []int) error {
syscall_linux_amd64.go 95 //sysnb pipe(p *[2]_C_int) (err error)
97 func Pipe(p []int) (err error) {
102 err = pipe(&pp)
syscall_linux_ppc64x.go 78 func Pipe(p []int) (err error) {
syscall_netbsd.go 105 //sysnb pipe() (fd1 int, fd2 int, err error)
106 func Pipe(p []int) (err error) {
110 p[0], p[1], err = pipe()
syscall_openbsd.go 65 //sysnb pipe(p *[2]_C_int) (err error)
66 func Pipe(p []int) (err error) {
71 err = pipe(&pp)
  /prebuilts/go/linux-x86/src/syscall/
syscall_dragonfly.go 75 //sysnb pipe() (r int, w int, err error)
77 func Pipe(p []int) (err error) {
81 p[0], p[1], err = pipe()
syscall_freebsd.go 69 func Pipe(p []int) error {

Completed in 342 milliseconds

1 2 3 4 5 6 7 8