HomeSort by relevance Sort by last modified time
    Searched refs:fromfd (Results 1 - 25 of 37) sorted by null

1 2

  /external/iperf3/src/
net.h 36 int Nsendfile(int fromfd, int tofd, const char *buf, size_t count) /* __attribute__((hot)) */;
net.c 387 Nsendfile(int fromfd, int tofd, const char *buf, size_t count)
401 r = sendfile(tofd, fromfd, &offset, nleft);
405 r = sendfile(fromfd, tofd, offset, nleft, NULL, &sent, 0);
409 r = sendfile(fromfd, tofd, offset, &sent, NULL, 0);
  /external/syzkaller/sys/akaros/gen/
amd64.go 232 &ResourceType{TypeCommon: TypeCommon{TypeName: "fd", FldName: "fromfd", TypeSize: 4, IsOptional: true}},
239 &ConstType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "const", FldName: "fromfd", TypeSize: 8}}, Val: 18446744073709551516},
246 &ConstType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "const", FldName: "fromfd", TypeSize: 8}}, Val: 18446744073709551516},
253 &ConstType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "const", FldName: "fromfd", TypeSize: 8}}, Val: 18446744073709551516},
260 &ConstType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "const", FldName: "fromfd", TypeSize: 8}}, Val: 18446744073709551516},
267 &ConstType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "const", FldName: "fromfd", TypeSize: 8}}, Val: 18446744073709551516},
274 &ConstType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "const", FldName: "fromfd", TypeSize: 8}}, Val: 18446744073709551516},
281 &ConstType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "const", FldName: "fromfd", TypeSize: 8}}, Val: 18446744073709551516},
288 &ConstType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "const", FldName: "fromfd", TypeSize: 8}}, Val: 18446744073709551516},
295 &ConstType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "const", FldName: "fromfd", TypeSize: 8}}, Val: 18446744073709551516}
    [all...]
  /external/bcc/examples/networking/http_filter/
http-parse-simple.py 79 sock = socket.fromfd(socket_fd,socket.PF_PACKET,socket.SOCK_RAW,socket.IPPROTO_IP)
http-parse-complete.py 132 sock = socket.fromfd(socket_fd,socket.PF_PACKET,socket.SOCK_RAW,socket.IPPROTO_IP)
  /external/python/cpython2/Lib/multiprocessing/
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/linux-kselftest/tools/testing/selftests/capabilities/
test_execve.c 154 static void copy_fromat_to(int fromfd, const char *fromname, const char *toname)
156 int from = openat(fromfd, fromname, O_RDONLY);
  /external/python/cpython3/Lib/multiprocessing/
reduction.py 179 with socket.fromfd(conn.fileno(), socket.AF_UNIX, socket.SOCK_STREAM) as s:
184 with socket.fromfd(conn.fileno(), socket.AF_UNIX, socket.SOCK_STREAM) as s:
connection.py 936 with socket.fromfd(handle, socket.AF_INET, socket.SOCK_STREAM) as s:
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_epoll.py 128 ep2 = select.epoll.fromfd(ep.fileno())
test_kqueue.py 105 kq2 = select.kqueue.fromfd(kq.fileno())
  /external/bcc/examples/networking/vlan_filter/
data-plane-tracing.py 89 sock = socket.fromfd(socket_fd,socket.PF_PACKET,socket.SOCK_RAW,socket.IPPROTO_IP)
  /external/python/cpython2/Lib/test/
test_epoll.py 129 ep2 = select.epoll.fromfd(ep.fileno())
test_kqueue.py 128 kq2 = select.kqueue.fromfd(kq.fileno())
  /external/python/cpython3/Lib/test/
test_epoll.py 147 ep2 = select.epoll.fromfd(ep.fileno())
test_kqueue.py 128 kq2 = select.kqueue.fromfd(kq.fileno())
  /external/python/cpython3/Lib/
socket.py 14 fromfd() -- create a socket object from an open file descriptor [*]
63 __all__ = ["fromfd", "getfqdn", "create_connection",
457 def fromfd(fd, family, type, proto=0): function
458 """ fromfd(fd, family, type[, proto]) -> socket object
  /external/syzkaller/vendor/golang.org/x/sys/unix/
zsysnum_openbsd_386.go 202 SYS_RENAMEAT = 323 // { int sys_renameat(int fromfd, const char *from, \
zsysnum_openbsd_amd64.go 212 SYS_RENAMEAT = 323 // { int sys_renameat(int fromfd, const char *from, \
zsysnum_openbsd_arm.go 208 SYS_RENAMEAT = 323 // { int sys_renameat(int fromfd, const char *from, \
syscall_darwin.go 453 //sys Renameat(fromfd int, from string, tofd int, to string) (err error)
syscall_freebsd.go 523 //sys Renameat(fromfd int, from string, tofd int, to string) (err error)
zsyscall_darwin_386.go 1274 func Renameat(fromfd int, from string, tofd int, to string) (err error) {
1285 _, _, e1 := Syscall6(SYS_RENAMEAT, uintptr(fromfd), uintptr(unsafe.Pointer(_p0)), uintptr(tofd), uintptr(unsafe.Pointer(_p1)), 0, 0)
    [all...]
zsyscall_darwin_amd64.go 1274 func Renameat(fromfd int, from string, tofd int, to string) (err error) {
1285 _, _, e1 := Syscall6(SYS_RENAMEAT, uintptr(fromfd), uintptr(unsafe.Pointer(_p0)), uintptr(tofd), uintptr(unsafe.Pointer(_p1)), 0, 0)
    [all...]
  /external/scapy/scapy/layers/
bluetooth.py     [all...]

Completed in 691 milliseconds

1 2