HomeSort by relevance Sort by last modified time
    Searched defs:Pipe (Results 51 - 75 of 133) sorted by null

1 23 4 5 6

  /system/connectivity/wificond/tests/
looper_backed_event_loop_unittest.cpp 34 class Pipe {
39 Pipe() {
41 ::pipe(fds);
50 LOG(ERROR) << "Failed to write signal to pipe: " << strerror(errno);
61 LOG(ERROR) << "No data from pipe";
63 LOG(ERROR) << "Failed to read signal from pipe: " << strerror(errno);
108 Pipe pipe; local
111 event_loop_->PostTask([&write_result, &pipe]() {write_result = pipe.writeSignal();})
125 Pipe pipe; local
140 Pipe pipe; local
    [all...]
  /system/extras/alloc-stress/
alloc-stress.cpp 27 class Pipe {
30 Pipe(const Pipe &) = delete;
31 Pipe& operator=(const Pipe &) = delete;
32 Pipe& operator=(const Pipe &&) = delete;
34 Pipe(int readFd, int writeFd) : m_readFd{readFd}, m_writeFd{writeFd} {
38 Pipe(Pipe&& rval) noexcept
    [all...]
  /external/python/cpython2/Lib/multiprocessing/
connection.py 35 __all__ = [ 'Client', 'Listener', 'Pipe' ]
92 return tempfile.mktemp(prefix=r'\\.\pipe\pyc-%d-%d-' %
122 connections, or for a Windows named pipe.
141 Accept a connection on the bound socket or named pipe of `self`.
153 Close the bound socket or named pipe of `self`.
183 def Pipe(duplex=True):
185 Returns pair of connection objects at either end of a pipe
196 fd1, fd2 = os.pipe()
205 def Pipe(duplex=True):
207 Returns pair of connection objects at either end of a pipe
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/multiprocessing/
connection.py 35 __all__ = [ 'Client', 'Listener', 'Pipe' ]
92 return tempfile.mktemp(prefix=r'\\.\pipe\pyc-%d-%d-' %
122 connections, or for a Windows named pipe.
141 Accept a connection on the bound socket or named pipe of `self`.
153 Close the bound socket or named pipe of `self`.
183 def Pipe(duplex=True):
185 Returns pair of connection objects at either end of a pipe
196 fd1, fd2 = os.pipe()
205 def Pipe(duplex=True):
207 Returns pair of connection objects at either end of a pipe
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/multiprocessing/
connection.py 35 __all__ = [ 'Client', 'Listener', 'Pipe' ]
92 return tempfile.mktemp(prefix=r'\\.\pipe\pyc-%d-%d-' %
122 connections, or for a Windows named pipe.
141 Accept a connection on the bound socket or named pipe of `self`.
153 Close the bound socket or named pipe of `self`.
183 def Pipe(duplex=True):
185 Returns pair of connection objects at either end of a pipe
196 fd1, fd2 = os.pipe()
205 def Pipe(duplex=True):
207 Returns pair of connection objects at either end of a pipe
    [all...]
  /prebuilts/go/darwin-x86/src/os/
file_plan9.go 416 // Pipe returns a connected pair of Files; reads from r return bytes
418 func Pipe() (r *File, w *File, err error) {
421 if e := syscall.Pipe(p[0:]); e != nil {
422 return nil, nil, NewSyscallError("pipe", e)
file_windows.go 467 // Pipe returns a connected pair of Files; reads from r return bytes written to w.
469 func Pipe() (r *File, w *File, err error) {
474 e := syscall.Pipe(p[0:])
477 return nil, nil, NewSyscallError("pipe", e)
  /prebuilts/go/darwin-x86/src/syscall/
fd_nacl.go 282 // A pipeFile is an in-memory implementation of a pipe.
322 func Pipe(fd []int) error {
syscall_linux_386.go 26 //sysnb pipe(p *[2]_C_int) (err error)
28 func Pipe(p []int) (err error) {
33 err = pipe(&pp)
syscall_linux_s390x.go 70 func Pipe(p []int) (err error) {
syscall_plan9.go 144 //sys pipe(p *[2]int32) (err error)
145 func Pipe(p []int) (err error) {
150 err = pipe(&pp)
syscall_solaris.go 57 func pipe() (r uintptr, w uintptr, err uintptr) func
59 func Pipe(p []int) (err error) {
63 r0, w0, e1 := pipe()
  /prebuilts/go/linux-x86/src/os/
file_plan9.go 416 // Pipe returns a connected pair of Files; reads from r return bytes
418 func Pipe() (r *File, w *File, err error) {
421 if e := syscall.Pipe(p[0:]); e != nil {
422 return nil, nil, NewSyscallError("pipe", e)
file_windows.go 467 // Pipe returns a connected pair of Files; reads from r return bytes written to w.
469 func Pipe() (r *File, w *File, err error) {
474 e := syscall.Pipe(p[0:])
477 return nil, nil, NewSyscallError("pipe", e)
  /prebuilts/go/linux-x86/src/syscall/
fd_nacl.go 282 // A pipeFile is an in-memory implementation of a pipe.
322 func Pipe(fd []int) error {
syscall_linux_386.go 26 //sysnb pipe(p *[2]_C_int) (err error)
28 func Pipe(p []int) (err error) {
33 err = pipe(&pp)
syscall_linux_s390x.go 70 func Pipe(p []int) (err error) {
syscall_plan9.go 144 //sys pipe(p *[2]int32) (err error)
145 func Pipe(p []int) (err error) {
150 err = pipe(&pp)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
connection.py 35 __all__ = [ 'Client', 'Listener', 'Pipe' ]
92 return tempfile.mktemp(prefix=r'\\.\pipe\pyc-%d-%d-' %
122 connections, or for a Windows named pipe.
141 Accept a connection on the bound socket or named pipe of `self`.
153 Close the bound socket or named pipe of `self`.
183 def Pipe(duplex=True):
185 Returns pair of connection objects at either end of a pipe
196 fd1, fd2 = os.pipe()
205 def Pipe(duplex=True):
207 Returns pair of connection objects at either end of a pipe
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
connection.py 35 __all__ = [ 'Client', 'Listener', 'Pipe' ]
92 return tempfile.mktemp(prefix=r'\\.\pipe\pyc-%d-%d-' %
122 connections, or for a Windows named pipe.
141 Accept a connection on the bound socket or named pipe of `self`.
153 Close the bound socket or named pipe of `self`.
183 def Pipe(duplex=True):
185 Returns pair of connection objects at either end of a pipe
196 fd1, fd2 = os.pipe()
205 def Pipe(duplex=True):
207 Returns pair of connection objects at either end of a pipe
    [all...]
  /system/libhwbinder/vts/performance/
PerfTest.cpp 54 tuple<Pipe, Pipe> Pipe::createPipePair() {
58 int error1 = pipe(a);
59 int error2 = pipe(b);
63 return make_tuple(Pipe(a[0], b[1]), Pipe(b[0], a[1]));
66 Pipe::Pipe(Pipe&& rval) noexcept
    [all...]
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...]
Benchmark_throughput.cpp 47 class Pipe {
50 Pipe(int readFd, int writeFd)
53 Pipe(const Pipe &) = delete;
54 Pipe& operator=(const Pipe &) = delete;
55 Pipe& operator=(const Pipe &&) = delete;
57 Pipe(Pipe&& rval) noexcept
    [all...]
  /frameworks/native/libs/binder/tests/
binderThroughputTest.cpp 52 class Pipe {
55 Pipe(int readFd, int writeFd) : m_readFd{readFd}, m_writeFd{writeFd} {}
56 Pipe(const Pipe &) = delete;
57 Pipe& operator=(const Pipe &) = delete;
58 Pipe& operator=(const Pipe &&) = delete;
60 Pipe(Pipe&& rval) noexcept
    [all...]
schd-dbg.cpp 151 class Pipe {
154 Pipe(int readFd, int writeFd) : m_readFd{readFd}, m_writeFd{writeFd} {
156 Pipe(const Pipe&) = delete;
157 Pipe& operator=(const Pipe&) = delete;
158 Pipe& operator=(const Pipe&&) = delete;
161 Pipe(Pipe&& rval) noexcept
    [all...]

Completed in 838 milliseconds

1 23 4 5 6