/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 | 395 Nsendfile(int fromfd, int tofd, const char *buf, size_t count) in Nsendfile() argument 409 r = sendfile(tofd, fromfd, &offset, nleft); in Nsendfile() 413 r = sendfile(fromfd, tofd, offset, nleft, NULL, &sent, 0); in Nsendfile() 417 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 | 952 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 | 4902 s = socket.fromfd(fd, socket.AF_INET, socket.SOCK_STREAM)
|
D | test_socket.py | 2481 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 | 538 def fromfd(fd, family, type, proto=0): function
|
/external/python/cpython3/Doc/library/ |
D | select.rst | 339 .. method:: epoll.fromfd(fd) 481 .. method:: kqueue.fromfd(fd)
|
D | socket.rst | 568 :func:`socket.fromfd`, *fileno* will return the same socket and not a 695 .. 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/llvm-project/compiler-rt/include/sanitizer/ |
D | netbsd_syscall_hooks.h | 2553 #define __sanitizer_syscall_pre_renameat(fromfd, from, tofd, to) \ argument 2554 __sanitizer_syscall_pre_impl_renameat((long long)(fromfd), \ 2557 #define __sanitizer_syscall_post_renameat(res, fromfd, from, tofd, to) \ argument 2558 __sanitizer_syscall_post_impl_renameat(res, (long long)(fromfd), \ 4772 void __sanitizer_syscall_pre_impl_renameat(long long fromfd, long long from, 4774 void __sanitizer_syscall_post_impl_renameat(long long res, long long fromfd,
|
/external/rust/crates/libc/src/unix/bsd/apple/ |
D | mod.rs | 3703 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
|