/aosp_15_r20/prebuilts/go/linux-x86/src/net/ |
D | fd_posix.go | 17 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 …]
|
D | fd_plan9.go | 16 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 …]
|
D | fd_fake.go | 21 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 …]
|
D | sockoptip_stub.go | 11 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 {
|
D | tcpsockopt_stub.go | 14 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 {
|
D | tcpsockopt_plan9.go | 15 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 {
|
D | sockoptip_posix.go | 14 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 {
|
D | tcpsockopt_windows.go | 23 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 {
|
D | tcpsockopt_solaris.go | 24 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 {
|
D | sockopt_posix.go | 75 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 {
|
D | sockopt_fake.go | 23 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 {
|
D | tcpsockopt_openbsd.go | 12 func setKeepAliveIdle(_ *netFD, d time.Duration) error { 21 func setKeepAliveInterval(_ *netFD, d time.Duration) error { 30 func setKeepAliveCount(_ *netFD, n int) error {
|
D | tcpsockopt_unix.go | 15 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 {
|
D | tcpsockopt_darwin.go | 19 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 {
|
D | mptcpsock_linux.go | 97 func hasFallenBack(fd *netFD) bool { 111 func isUsingMPTCPProto(fd *netFD) bool { 121 func isUsingMultipathTCP(fd *netFD) bool {
|
D | sockoptip_windows.go | 13 func setIPv4MulticastInterface(fd *netFD, ifi *Interface) error { 25 func setIPv4MulticastLoopback(fd *netFD, v bool) error {
|
D | sockopt_plan9.go | 9 func setKeepAlive(fd *netFD, keepalive bool) error { 17 func setLinger(fd *netFD, sec int) error {
|
D | sockoptip_linux.go | 12 func setIPv4MulticastInterface(fd *netFD, ifi *Interface) error { 23 func setIPv4MulticastLoopback(fd *netFD, v bool) error {
|
D | sockoptip_bsdvar.go | 14 func setIPv4MulticastInterface(fd *netFD, ifi *Interface) error { 26 func setIPv4MulticastLoopback(fd *netFD, v bool) error {
|
D | splice_stub.go | 11 func spliceFrom(_ *netFD, _ io.Reader) (int64, error, bool) { 15 func spliceTo(_ io.Writer, _ *netFD) (int64, error, bool) {
|
D | splice_linux.go | 19 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) {
|
D | file_wasip1.go | 77 func newFileListener(fd *netFD) Listener { 86 func newFileConn(fd *netFD) Conn {
|
D | rawconn.go | 78 func newRawConn(fd *netFD) *rawConn { 105 func newRawListener(fd *netFD) *rawListener {
|
D | net_fake.go | 226 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 {
|
D | tcpsock.go | 289 func newTCPConn(fd *netFD, keepAliveIdle time.Duration, keepAliveCfg KeepAliveConfig, preKeepAliveH…
|