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

12 3 4 5 6 7 8

  /prebuilts/go/linux-x86/src/syscall/
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)
syscall_darwin.go 166 //sysnb pipe() (r int, w int, err error)
168 func Pipe(p []int) (err error) {
172 p[0], p[1], err = pipe()
syscall_linux_arm.go 22 func Pipe(p []int) (err error) {
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/dummy/
connection.py 35 __all__ = [ 'Client', 'Listener', 'Pipe' ]
63 def Pipe(duplex=True):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/dummy/
connection.py 35 __all__ = [ 'Client', 'Listener', 'Pipe' ]
63 def Pipe(duplex=True):
  /prebuilts/go/darwin-x86/src/io/
pipe.go 5 // Pipe adapter to connect code expecting an io.Reader
28 // ErrClosedPipe is the error used for read or write operations on a closed pipe.
29 var ErrClosedPipe = errors.New("io: read/write on closed pipe")
31 // A pipe is the shared pipe structure underlying PipeReader and PipeWriter.
32 type pipe struct { type
43 func (p *pipe) Read(b []byte) (n int, err error) {
60 func (p *pipe) readCloseError() error {
68 func (p *pipe) CloseRead(err error) error {
77 func (p *pipe) Write(b []byte) (n int, err error)
    [all...]
  /prebuilts/go/linux-x86/src/io/
pipe.go 5 // Pipe adapter to connect code expecting an io.Reader
28 // ErrClosedPipe is the error used for read or write operations on a closed pipe.
29 var ErrClosedPipe = errors.New("io: read/write on closed pipe")
31 // A pipe is the shared pipe structure underlying PipeReader and PipeWriter.
32 type pipe struct { type
43 func (p *pipe) Read(b []byte) (n int, err error) {
60 func (p *pipe) readCloseError() error {
68 func (p *pipe) CloseRead(err error) error {
77 func (p *pipe) Write(b []byte) (n int, err error)
    [all...]
  /external/clang/lib/Driver/
InputInfo.h 34 Pipe
  /external/perfetto/src/base/
task_runner_unittest.cc 48 struct Pipe {
49 Pipe() {
51 PERFETTO_DCHECK(pipe(pipe_fds) == 0);
54 // Make the pipe initially readable.
142 Pipe pipe; local
143 task_runner.AddFileDescriptorWatch(pipe.read_fd.get(),
150 Pipe pipe; local
153 task_runner.AddFileDescriptorWatch(pipe.read_fd.get()
164 Pipe pipe; local
180 Pipe pipe; local
194 Pipe pipe; local
213 Pipe pipe; local
232 Pipe pipe; local
244 Pipe pipe; local
306 Pipe pipe; local
325 Pipe pipe; local
341 Pipe pipe; local
    [all...]
  /external/python/cpython2/Lib/multiprocessing/
__init__.py 48 'Manager', 'Pipe', 'cpu_count', 'log_to_stderr', 'get_logger',
102 def Pipe(duplex=True):
104 Returns two connection object connected by a pipe
106 from multiprocessing.connection import Pipe
107 return Pipe(duplex)
  /external/toolchain-utils/automation/common/
command.py 132 return [str, Shell, Chain, Pipe]
138 class Pipe(AbstractCommandContainer):
139 """Container that chains shell commands using pipe (|) operator."""
154 pipe = self._StringifyCommands()
157 pipe.insert(str(Shell('cat', self._input), 0))
160 pipe.append(str(Shell('tee', self._output)))
162 return ' | '.join(pipe)
  /prebuilts/gdb/darwin-x86/lib/python2.7/multiprocessing/
__init__.py 48 'Manager', 'Pipe', 'cpu_count', 'log_to_stderr', 'get_logger',
102 def Pipe(duplex=True):
104 Returns two connection object connected by a pipe
106 from multiprocessing.connection import Pipe
107 return Pipe(duplex)
  /prebuilts/gdb/linux-x86/lib/python2.7/multiprocessing/
__init__.py 48 'Manager', 'Pipe', 'cpu_count', 'log_to_stderr', 'get_logger',
102 def Pipe(duplex=True):
104 Returns two connection object connected by a pipe
106 from multiprocessing.connection import Pipe
107 return Pipe(duplex)
  /prebuilts/go/darwin-x86/src/net/
pipe.go 89 func (pipeAddr) Network() string { return "pipe" }
90 func (pipeAddr) String() string { return "pipe" }
92 type pipe struct { type
113 // Pipe creates a synchronous, in-memory, full duplex
118 func Pipe() (Conn, Conn) {
126 p1 := &pipe{
133 p2 := &pipe{
143 func (*pipe) LocalAddr() Addr { return pipeAddr{} }
144 func (*pipe) RemoteAddr() Addr { return pipeAddr{} }
146 func (p *pipe) Read(b []byte) (int, error)
    [all...]
  /prebuilts/go/darwin-x86/src/os/
file_windows.go 306 // Pipe returns a connected pair of Files; reads from r return bytes written to w.
308 func Pipe() (r *File, w *File, err error) {
312 return nil, nil, NewSyscallError("pipe", e)
  /prebuilts/go/darwin-x86/src/syscall/
syscall_darwin.go 166 //sysnb pipe() (r int, w int, err error)
168 func Pipe(p []int) (err error) {
172 p[0], p[1], err = pipe()
syscall_linux_arm.go 22 func Pipe(p []int) (err error) {
syscall_linux_arm64.go 92 func Pipe(p []int) (err error) {
syscall_linux_mips64x.go 94 func Pipe(p []int) (err error) {
syscall_linux_mipsx.go 121 func Pipe(p []int) (err error) {
  /prebuilts/go/linux-x86/src/net/
pipe.go 89 func (pipeAddr) Network() string { return "pipe" }
90 func (pipeAddr) String() string { return "pipe" }
92 type pipe struct { type
113 // Pipe creates a synchronous, in-memory, full duplex
118 func Pipe() (Conn, Conn) {
126 p1 := &pipe{
133 p2 := &pipe{
143 func (*pipe) LocalAddr() Addr { return pipeAddr{} }
144 func (*pipe) RemoteAddr() Addr { return pipeAddr{} }
146 func (p *pipe) Read(b []byte) (int, error)
    [all...]
  /prebuilts/go/linux-x86/src/os/
file_windows.go 306 // Pipe returns a connected pair of Files; reads from r return bytes written to w.
308 func Pipe() (r *File, w *File, err error) {
312 return nil, nil, NewSyscallError("pipe", e)

Completed in 1528 milliseconds

12 3 4 5 6 7 8