/external/python/cpython2/Lib/multiprocessing/ |
D | reduction.py | 181 def fromfd(fd, family, type_, proto=0): function 182 s = socket.fromfd(fd, family, type_, proto) 193 _sock = fromfd(fd, family, type_, proto)
|
/external/iperf3/src/ |
D | net.c | 394 Nsendfile(int fromfd, int tofd, const char *buf, size_t count) in Nsendfile() argument 408 r = sendfile(tofd, fromfd, &offset, nleft); in Nsendfile() 412 r = sendfile(fromfd, tofd, offset, nleft, NULL, &sent, 0); in Nsendfile() 416 r = sendfile(fromfd, tofd, offset, &sent, NULL, 0); in Nsendfile()
|
D | net.h | 36 int Nsendfile(int fromfd, int tofd, const char *buf, size_t count) /* __attribute__((hot)) */;
|
/external/bcc/examples/networking/http_filter/ |
D | http-parse-simple.py | 79 sock = socket.fromfd(socket_fd,socket.PF_PACKET,socket.SOCK_RAW,socket.IPPROTO_IP)
|
D | http-parse-complete.py | 132 sock = socket.fromfd(socket_fd,socket.PF_PACKET,socket.SOCK_RAW,socket.IPPROTO_IP)
|
/external/python/cpython3/Lib/multiprocessing/ |
D | reduction.py | 183 with socket.fromfd(conn.fileno(), socket.AF_UNIX, socket.SOCK_STREAM) as s: 188 with socket.fromfd(conn.fileno(), socket.AF_UNIX, socket.SOCK_STREAM) as s:
|
D | connection.py | 946 with socket.fromfd(handle, socket.AF_INET, socket.SOCK_STREAM) as s:
|
/external/linux-kselftest/tools/testing/selftests/capabilities/ |
D | test_execve.c | 154 static void copy_fromat_to(int fromfd, const char *fromname, const char *toname) in copy_fromat_to() argument 156 int from = openat(fromfd, fromname, O_RDONLY); in copy_fromat_to()
|
/external/bcc/examples/networking/vlan_filter/ |
D | data-plane-tracing.py | 89 sock = socket.fromfd(socket_fd,socket.PF_PACKET,socket.SOCK_RAW,socket.IPPROTO_IP)
|
/external/python/cpython2/Lib/test/ |
D | test_epoll.py | 129 ep2 = select.epoll.fromfd(ep.fileno())
|
D | test_kqueue.py | 128 kq2 = select.kqueue.fromfd(kq.fileno())
|
D | test_socket.py | 835 sock = socket.fromfd(fd, socket.AF_INET, socket.SOCK_STREAM)
|
/external/python/cpython3/Lib/test/ |
D | test_epoll.py | 145 ep2 = select.epoll.fromfd(ep.fileno())
|
D | test_kqueue.py | 126 kq2 = select.kqueue.fromfd(kq.fileno())
|
D | _test_multiprocessing.py | 4806 s = socket.fromfd(fd, socket.AF_INET, socket.SOCK_STREAM)
|
D | test_socket.py | 2284 sock = socket.fromfd(fd, socket.AF_INET, socket.SOCK_STREAM)
|
/external/python/cpython2/Doc/library/ |
D | select.rst | 163 .. method:: epoll.fromfd(fd) 289 .. method:: kqueue.fromfd(fd)
|
D | socket.rst | 389 .. function:: fromfd(fd, family, type[, proto])
|
/external/python/cpython3/Lib/ |
D | socket.py | 537 def fromfd(fd, family, type, proto=0): function
|
/external/python/cpython3/Doc/library/ |
D | select.rst | 339 .. method:: epoll.fromfd(fd) 478 .. method:: kqueue.fromfd(fd)
|
D | socket.rst | 526 :func:`socket.fromfd`, *fileno* will return the same socket and not a 648 .. function:: fromfd(fd, family, type, proto=0)
|
/external/scapy/scapy/layers/ |
D | bluetooth.py | 900 self.ins = self.outs = socket.fromfd(s, 31, 3, 1)
|
/external/rust/crates/libc/src/unix/bsd/apple/ |
D | mod.rs | 3411 fromfd: ::c_int, in renameatx_np()
|
/external/python/cpython2/Misc/ |
D | HISTORY | 16586 module. And there's a new function fromfd() which creates a socket
|
/external/python/cpython3/Misc/ |
D | HISTORY | 33965 module. And there's a new function fromfd() which creates a socket
|