Searched refs:rpipe (Results 1 – 9 of 9) sorted by relevance
/external/syzkaller/vm/vmimpl/ |
D | console.go | 84 rpipe, wpipe, err := osutil.LongPipe() 93 rpipe.Close() 100 rpipe: rpipe, 114 rpipe io.ReadCloser member 119 n, err := t.rpipe.Read(buf) 136 t.rpipe.Close()
|
/external/syzkaller/vm/odroid/ |
D | odroid.go | 131 rpipe, wpipe, err := osutil.LongPipe() 162 out, _ := ioutil.ReadAll(rpipe) 172 out, _ := ioutil.ReadAll(rpipe) 318 rpipe, wpipe, err := osutil.LongPipe() 334 rpipe.Close() 346 merger.Add("ssh", rpipe)
|
/external/syzkaller/vm/qemu/ |
D | qemu.go | 58 rpipe io.ReadCloser member 266 inst.rpipe, inst.wpipe, err = osutil.LongPipe() 287 if inst.rpipe != nil { 288 inst.rpipe.Close() 363 inst.merger.Add("qemu", inst.rpipe) 364 inst.rpipe = nil 431 rpipe, wpipe, err := osutil.LongPipe() 435 inst.merger.Add("ssh", rpipe)
|
/external/syzkaller/vm/isolated/ |
D | isolated.go | 127 rpipe, wpipe, err := osutil.LongPipe() 160 out, _ := ioutil.ReadAll(rpipe) 266 rpipe, wpipe, err := osutil.LongPipe() 288 rpipe.Close() 300 merger.Add("ssh", rpipe)
|
/external/syzkaller/vm/kvm/ |
D | kvm.go | 126 rpipe, wpipe, err := osutil.LongPipe() 144 rpipe.Close() 154 n, err := rpipe.Read(buf[:]) 173 rpipe.Close()
|
/external/syzkaller/vm/gvisor/ |
D | gvisor.go | 105 rpipe, wpipe, err := osutil.LongPipe() 114 merger.Add("gvisor", rpipe) 244 rpipe, wpipe, err := osutil.LongPipe() 249 inst.merger.Add("cmd", rpipe)
|
/external/u-boot/common/ |
D | cli_hush.c | 1766 struct pipe *rpipe; local 1776 for (rpipe = pi; rpipe; rpipe = rpipe->next) { 1777 if ((rpipe->r_mode == RES_IN || 1778 rpipe->r_mode == RES_FOR) && 1779 (rpipe->next == NULL)) { 1786 if ((rpipe->r_mode == RES_IN && 1787 (rpipe->next->r_mode == RES_IN && 1788 rpipe->next->progs->argv != NULL))|| 1789 (rpipe->r_mode == RES_FOR && 1790 rpipe->next->r_mode != RES_IN)) { [all …]
|
/external/python/cpython3/Lib/test/test_asyncio/ |
D | test_events.py | 1435 rpipe, wpipe = os.pipe() 1436 pipeobj = io.open(rpipe, 'rb', 1024) 1472 rpipe, wpipe = os.pipe() 1473 rpipeobj = io.open(rpipe, 'rb', 1024) 1536 rpipe, wpipe = os.pipe() 1550 chunk = os.read(rpipe, 1024) 1562 os.close(rpipe)
|
/external/python/cpython3/Lib/test/ |
D | test_builtin.py | 1658 with open(r, "r") as rpipe: 1661 line = rpipe.readline().strip()
|