Home
last modified time | relevance | path

Searched refs:fromfd (Results 1 – 25 of 26) sorted by relevance

12

/external/python/cpython2/Lib/multiprocessing/
Dreduction.py181 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/
Dnet.c395 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()
Dnet.h36 int Nsendfile(int fromfd, int tofd, const char *buf, size_t count) /* __attribute__((hot)) */;
/external/bcc/examples/networking/http_filter/
Dhttp-parse-simple.py79 sock = socket.fromfd(socket_fd,socket.PF_PACKET,socket.SOCK_RAW,socket.IPPROTO_IP)
Dhttp-parse-complete.py132 sock = socket.fromfd(socket_fd,socket.PF_PACKET,socket.SOCK_RAW,socket.IPPROTO_IP)
/external/python/cpython3/Lib/multiprocessing/
Dreduction.py183 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:
Dconnection.py952 with socket.fromfd(handle, socket.AF_INET, socket.SOCK_STREAM) as s:
/external/linux-kselftest/tools/testing/selftests/capabilities/
Dtest_execve.c154 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/
Ddata-plane-tracing.py89 sock = socket.fromfd(socket_fd,socket.PF_PACKET,socket.SOCK_RAW,socket.IPPROTO_IP)
/external/python/cpython2/Lib/test/
Dtest_epoll.py129 ep2 = select.epoll.fromfd(ep.fileno())
Dtest_kqueue.py128 kq2 = select.kqueue.fromfd(kq.fileno())
Dtest_socket.py835 sock = socket.fromfd(fd, socket.AF_INET, socket.SOCK_STREAM)
/external/python/cpython3/Lib/test/
Dtest_epoll.py145 ep2 = select.epoll.fromfd(ep.fileno())
Dtest_kqueue.py126 kq2 = select.kqueue.fromfd(kq.fileno())
D_test_multiprocessing.py4902 s = socket.fromfd(fd, socket.AF_INET, socket.SOCK_STREAM)
Dtest_socket.py2481 sock = socket.fromfd(fd, socket.AF_INET, socket.SOCK_STREAM)
/external/python/cpython2/Doc/library/
Dselect.rst163 .. method:: epoll.fromfd(fd)
289 .. method:: kqueue.fromfd(fd)
Dsocket.rst389 .. function:: fromfd(fd, family, type[, proto])
/external/python/cpython3/Lib/
Dsocket.py538 def fromfd(fd, family, type, proto=0): function
/external/python/cpython3/Doc/library/
Dselect.rst339 .. method:: epoll.fromfd(fd)
481 .. method:: kqueue.fromfd(fd)
Dsocket.rst568 :func:`socket.fromfd`, *fileno* will return the same socket and not a
695 .. function:: fromfd(fd, family, type, proto=0)
/external/scapy/scapy/layers/
Dbluetooth.py900 self.ins = self.outs = socket.fromfd(s, 31, 3, 1)
/external/llvm-project/compiler-rt/include/sanitizer/
Dnetbsd_syscall_hooks.h2553 #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/
Dmod.rs3703 fromfd: ::c_int, in renameatx_np()
/external/python/cpython2/Misc/
DHISTORY16586 module. And there's a new function fromfd() which creates a socket

12