/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/valgrind/coregrind/ |
D | vgdb.c | 593 getpkt (char *buf, int fromfd, int ackfd) in getpkt() argument 603 c = readchar (fromfd); in getpkt() 613 c = readchar (fromfd); in getpkt() 624 repeat = readchar (fromfd); in getpkt() 635 c1 = fromhex (readchar (fromfd)); in getpkt() 636 c2 = fromhex (readchar (fromfd)); in getpkt()
|
/external/python/cpython3/Lib/multiprocessing/ |
D | reduction.py | 176 with socket.fromfd(conn.fileno(), socket.AF_UNIX, socket.SOCK_STREAM) as s: 181 with socket.fromfd(conn.fileno(), socket.AF_UNIX, socket.SOCK_STREAM) as s:
|
D | connection.py | 927 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/python/cpython2/Lib/test/ |
D | test_epoll.py | 129 ep2 = select.epoll.fromfd(ep.fileno())
|
D | test_kqueue.py | 125 kq2 = select.kqueue.fromfd(kq.fileno())
|
D | test_socket.py | 834 sock = socket.fromfd(fd, socket.AF_INET, socket.SOCK_STREAM)
|
/external/python/cpython3/Lib/test/ |
D | test_epoll.py | 138 ep2 = select.epoll.fromfd(ep.fileno())
|
D | test_kqueue.py | 128 kq2 = select.kqueue.fromfd(kq.fileno())
|
D | _test_multiprocessing.py | 3663 s = socket.fromfd(fd, socket.AF_INET, socket.SOCK_STREAM)
|
D | test_socket.py | 1848 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 | 454 def fromfd(fd, family, type, proto=0): function
|
/external/python/cpython3/Doc/library/ |
D | select.rst | 325 .. method:: epoll.fromfd(fd) 464 .. method:: kqueue.fromfd(fd)
|
D | socket.rst | 429 to return. Unlike :func:`socket.fromfd`, *fileno* will return the same 489 .. 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/valgrind/coregrind/m_syswrap/ |
D | syswrap-solaris.c | 4101 Int fromfd = (Int) ARG1; in PRE() local 4105 PRINT("sys_renameat ( %d, %#lx(%s), %d, %#lx(%s) )", fromfd, in PRE() 4107 PRE_REG_READ4(long, "renameat", int, fromfd, const char *, old, in PRE() 4114 if (fromfd != VKI_AT_FDCWD in PRE() 4117 && !ML_(fd_allowed)(fromfd, "renameat", tid, False)) { in PRE()
|
D | syswrap-darwin.c | 3734 int, fromfd, int, tofd, in PRE() 3744 int, fromfd, int, tofd, in PRE()
|
/external/valgrind/memcheck/tests/solaris/ |
D | scalar.stderr.exp | 1098 Syscall param renameat(fromfd) contains uninitialised byte(s)
|
/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
|