Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for MibIfRow (0.18 sec)

  1. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"MibIfRow.LastChange", Field, 0},
    		{"MibIfRow.Mtu", Field, 0},
    		{"MibIfRow.Name", Field, 0},
    		{"MibIfRow.OperStatus", Field, 0},
    		{"MibIfRow.OutDiscards", Field, 0},
    		{"MibIfRow.OutErrors", Field, 0},
    		{"MibIfRow.OutNUcastPkts", Field, 0},
    		{"MibIfRow.OutOctets", Field, 0},
    		{"MibIfRow.OutQLen", Field, 0},
    		{"MibIfRow.OutUcastPkts", Field, 0},
    		{"MibIfRow.PhysAddr", Field, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  2. src/syscall/types_windows.go

    	SecondaryWinsServer IpAddrString
    	LeaseObtained       int64
    	LeaseExpires        int64
    }
    
    const MAXLEN_PHYSADDR = 8
    const MAX_INTERFACE_NAME_LEN = 256
    const MAXLEN_IFDESCR = 256
    
    type MibIfRow struct {
    	Name            [MAX_INTERFACE_NAME_LEN]uint16
    	Index           uint32
    	Type            uint32
    	Mtu             uint32
    	Speed           uint32
    	PhysAddrLen     uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  3. api/go1.txt

    pkg syscall (windows-amd64), type MibIfRow struct, OperStatus uint32
    pkg syscall (windows-amd64), type MibIfRow struct, OutDiscards uint32
    pkg syscall (windows-amd64), type MibIfRow struct, OutErrors uint32
    pkg syscall (windows-amd64), type MibIfRow struct, OutNUcastPkts uint32
    pkg syscall (windows-amd64), type MibIfRow struct, OutOctets uint32
    pkg syscall (windows-amd64), type MibIfRow struct, OutQLen uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
  4. src/syscall/zsyscall_windows.go

    	r0, _, _ := Syscall(procGetAdaptersInfo.Addr(), 2, uintptr(unsafe.Pointer(ai)), uintptr(unsafe.Pointer(ol)), 0)
    	if r0 != 0 {
    		errcode = Errno(r0)
    	}
    	return
    }
    
    func GetIfEntry(pIfRow *MibIfRow) (errcode error) {
    	r0, _, _ := Syscall(procGetIfEntry.Addr(), 1, uintptr(unsafe.Pointer(pIfRow)), 0, 0)
    	if r0 != 0 {
    		errcode = Errno(r0)
    	}
    	return
    }
    
    func CancelIo(s Handle) (err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 56.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	SecondaryWinsServer IpAddrString
    	LeaseObtained       int64
    	LeaseExpires        int64
    }
    
    const MAXLEN_PHYSADDR = 8
    const MAX_INTERFACE_NAME_LEN = 256
    const MAXLEN_IFDESCR = 256
    
    type MibIfRow struct {
    	Name            [MAX_INTERFACE_NAME_LEN]uint16
    	Index           uint32
    	Type            uint32
    	Mtu             uint32
    	Speed           uint32
    	PhysAddrLen     uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  6. src/syscall/syscall_windows.go

    //sys	GetAddrInfoW(nodename *uint16, servicename *uint16, hints *AddrinfoW, result **AddrinfoW) (sockerr error) = ws2_32.GetAddrInfoW
    //sys	FreeAddrInfoW(addrinfo *AddrinfoW) = ws2_32.FreeAddrInfoW
    //sys	GetIfEntry(pIfRow *MibIfRow) (errcode error) = iphlpapi.GetIfEntry
    //sys	GetAdaptersInfo(ai *IpAdapterInfo, ol *uint32) (errcode error) = iphlpapi.GetAdaptersInfo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    //sys	GetAddrInfoW(nodename *uint16, servicename *uint16, hints *AddrinfoW, result **AddrinfoW) (sockerr error) = ws2_32.GetAddrInfoW
    //sys	FreeAddrInfoW(addrinfo *AddrinfoW) = ws2_32.FreeAddrInfoW
    //sys	GetIfEntry(pIfRow *MibIfRow) (errcode error) = iphlpapi.GetIfEntry
    //sys	GetAdaptersInfo(ai *IpAdapterInfo, ol *uint32) (errcode error) = iphlpapi.GetAdaptersInfo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	if r0 != 0 {
    		errcode = syscall.Errno(r0)
    	}
    	return
    }
    
    func GetIfEntry(pIfRow *MibIfRow) (errcode error) {
    	r0, _, _ := syscall.Syscall(procGetIfEntry.Addr(), 1, uintptr(unsafe.Pointer(pIfRow)), 0, 0)
    	if r0 != 0 {
    		errcode = syscall.Errno(r0)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
Back to top