Home
last modified time | relevance | path

Searched defs:Inet4Addr (Results 1 – 3 of 3) sorted by relevance

/aosp_15_r20/prebuilts/go/linux-x86/src/vendor/golang.org/x/net/route/
Daddress.go122 type Inet4Addr struct { struct
123 IP [4]byte // IP address
127 func (a *Inet4Addr) Family() int { return syscall.AF_INET }
129 func (a *Inet4Addr) lenAndSpace() (int, int) {
133 func (a *Inet4Addr) marshal(b []byte) (int, error) {
/aosp_15_r20/prebuilts/go/linux-x86/src/vendor/golang.org/x/net/lif/
Daddress.go22 type Inet4Addr struct { struct
23 IP [4]byte // IP address
24 PrefixLen int // address prefix length
28 func (a *Inet4Addr) Family() int { return syscall.AF_INET }
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/sys/unix/
Difreq_linux.go56 func (ifr *Ifreq) Inet4Addr() ([]byte, error) { func