Home
last modified time | relevance | path

Searched defs:netFD (Results 1 – 25 of 37) sorted by relevance

12

/aosp_15_r20/prebuilts/go/linux-x86/src/net/
Dfd_posix.go17 type netFD struct { struct
18 pfd poll.FD
21 family int
22 sotype int
23 isConnected bool // handshake completed or use of association with peer
24 net string
25 laddr Addr
26 raddr Addr
29 func (fd *netFD) setAddr(laddr, raddr Addr) {
35 func (fd *netFD) Close() error {
[all …]
Dfd_plan9.go16 type netFD struct { struct
17 pfd poll.FD
20 net string
21 n string
22 dir string
23 listen, ctl, data *os.File
24 laddr, raddr Addr
25 isStream bool
44 func (fd *netFD) init() error {
49 func (fd *netFD) name() string {
[all …]
Dfd_fake.go21 type netFD struct { struct
22 pfd poll.FD
25 family int
26 sotype int
27 isConnected bool // handshake completed or use of association with peer
28 net string
29 laddr Addr
30 raddr Addr
37 *fakeNetFD
77 func (fd *netFD) init() error {
[all …]
Dsockoptip_stub.go11 func setIPv4MulticastInterface(fd *netFD, ifi *Interface) error {
15 func setIPv4MulticastLoopback(fd *netFD, v bool) error {
19 func joinIPv4Group(fd *netFD, ifi *Interface, ip IP) error {
23 func setIPv6MulticastInterface(fd *netFD, ifi *Interface) error {
27 func setIPv6MulticastLoopback(fd *netFD, v bool) error {
31 func joinIPv6Group(fd *netFD, ifi *Interface, ip IP) error {
Dtcpsockopt_stub.go14 func setNoDelay(fd *netFD, noDelay bool) error {
18 func setKeepAliveIdle(fd *netFD, d time.Duration) error {
22 func setKeepAliveInterval(fd *netFD, d time.Duration) error {
26 func setKeepAliveCount(fd *netFD, n int) error {
Dtcpsockopt_plan9.go15 func setNoDelay(_ *netFD, _ bool) error {
20 func setKeepAliveIdle(fd *netFD, d time.Duration) error {
30 func setKeepAliveInterval(_ *netFD, d time.Duration) error {
37 func setKeepAliveCount(_ *netFD, n int) error {
Dsockoptip_posix.go14 func joinIPv4Group(fd *netFD, ifi *Interface, ip IP) error {
24 func setIPv6MulticastInterface(fd *netFD, ifi *Interface) error {
34 func setIPv6MulticastLoopback(fd *netFD, v bool) error {
40 func joinIPv6Group(fd *netFD, ifi *Interface, ip IP) error {
Dtcpsockopt_windows.go23 func setKeepAliveIdle(fd *netFD, d time.Duration) error {
40 func setKeepAliveInterval(fd *netFD, d time.Duration) error {
57 func setKeepAliveCount(fd *netFD, n int) error {
70 func setKeepAliveIdleAndInterval(fd *netFD, idle, interval time.Duration) error {
Dtcpsockopt_solaris.go24 func setKeepAliveIdle(fd *netFD, d time.Duration) error {
41 func setKeepAliveInterval(fd *netFD, d time.Duration) error {
58 func setKeepAliveCount(fd *netFD, n int) error {
75 func setKeepAliveIdleAndIntervalAndCount(fd *netFD, idle, interval time.Duration, count int) error {
Dsockopt_posix.go75 func setReadBuffer(fd *netFD, bytes int) error {
81 func setWriteBuffer(fd *netFD, bytes int) error {
87 func setKeepAlive(fd *netFD, keepalive bool) error {
93 func setLinger(fd *netFD, sec int) error {
Dsockopt_fake.go23 func setReadBuffer(fd *netFD, bytes int) error {
30 func setWriteBuffer(fd *netFD, bytes int) error {
37 func setKeepAlive(fd *netFD, keepalive bool) error {
41 func setLinger(fd *netFD, sec int) error {
Dtcpsockopt_openbsd.go12 func setKeepAliveIdle(_ *netFD, d time.Duration) error {
21 func setKeepAliveInterval(_ *netFD, d time.Duration) error {
30 func setKeepAliveCount(_ *netFD, n int) error {
Dtcpsockopt_unix.go15 func setKeepAliveIdle(fd *netFD, d time.Duration) error {
29 func setKeepAliveInterval(fd *netFD, d time.Duration) error {
43 func setKeepAliveCount(fd *netFD, n int) error {
Dtcpsockopt_darwin.go19 func setKeepAliveIdle(fd *netFD, d time.Duration) error {
33 func setKeepAliveInterval(fd *netFD, d time.Duration) error {
47 func setKeepAliveCount(fd *netFD, n int) error {
Dmptcpsock_linux.go97 func hasFallenBack(fd *netFD) bool {
111 func isUsingMPTCPProto(fd *netFD) bool {
121 func isUsingMultipathTCP(fd *netFD) bool {
Dsockoptip_windows.go13 func setIPv4MulticastInterface(fd *netFD, ifi *Interface) error {
25 func setIPv4MulticastLoopback(fd *netFD, v bool) error {
Dsockopt_plan9.go9 func setKeepAlive(fd *netFD, keepalive bool) error {
17 func setLinger(fd *netFD, sec int) error {
Dsockoptip_linux.go12 func setIPv4MulticastInterface(fd *netFD, ifi *Interface) error {
23 func setIPv4MulticastLoopback(fd *netFD, v bool) error {
Dsockoptip_bsdvar.go14 func setIPv4MulticastInterface(fd *netFD, ifi *Interface) error {
26 func setIPv4MulticastLoopback(fd *netFD, v bool) error {
Dsplice_stub.go11 func spliceFrom(_ *netFD, _ io.Reader) (int64, error, bool) {
15 func spliceTo(_ io.Writer, _ *netFD) (int64, error, bool) {
Dsplice_linux.go19 func spliceFrom(c *netFD, r io.Reader) (written int64, err error, handled bool) {
56 func spliceTo(w io.Writer, c *netFD) (written int64, err error, handled bool) {
Dfile_wasip1.go77 func newFileListener(fd *netFD) Listener {
86 func newFileConn(fd *netFD) Conn {
Drawconn.go78 func newRawConn(fd *netFD) *rawConn {
105 func newRawListener(fd *netFD) *rawListener {
Dnet_fake.go226 func newFakeNetFD(fd *netFD) *fakeNetFD {
689 func fakeListen(fd *netFD, laddr sockaddr) (err error) {
742 func fakeConnect(ctx context.Context, fd *netFD, laddr, raddr sockaddr) error {
Dtcpsock.go289 func newTCPConn(fd *netFD, keepAliveIdle time.Duration, keepAliveCfg KeepAliveConfig, preKeepAliveH…

12