Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 202 for Namelen (0.22 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go

    }
    
    type RawSockaddrAny struct {
    	Addr RawSockaddr
    	Pad  [96]int8
    }
    
    type Iovec struct {
    	Base *byte
    	Len  uint64
    }
    
    type Msghdr struct {
    	Name       *byte
    	Namelen    uint32
    	Iov        *Iovec
    	Iovlen     uint64
    	Control    *byte
    	Controllen uint64
    	Flags      int32
    	_          [4]byte
    }
    
    type Cmsghdr struct {
    	Len   uint64
    	Level int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  2. cmd/os_unix.go

    		// files and directories.
    		typ = unexpectedFileMode
    	}
    
    	nameBuf := (*[unsafe.Sizeof(dirent.Name)]byte)(unsafe.Pointer(&dirent.Name[0]))
    	nameLen, err := direntNamlen(dirent)
    	if err != nil {
    		return consumed, nil, typ, err
    	}
    
    	return consumed, nameBuf[:nameLen], typ, nil
    }
    
    // readDirFn applies the fn() function on each entries at dirPath, doesn't recurse into
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/ztypes_aix_ppc64.go

    }
    
    type IPv6MTUInfo struct {
    	Addr RawSockaddrInet6
    	Mtu  uint32
    }
    
    type Linger struct {
    	Onoff  int32
    	Linger int32
    }
    
    type Msghdr struct {
    	Name       *byte
    	Namelen    uint32
    	Iov        *Iovec
    	Iovlen     int32
    	Control    *byte
    	Controllen uint32
    	Flags      int32
    }
    
    const (
    	SizeofSockaddrInet4    = 0x10
    	SizeofSockaddrInet6    = 0x1c
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 5K bytes
    - Viewed (0)
  4. src/syscall/ztypes_solaris_amd64.go

    	Multiaddr [4]byte /* in_addr */
    	Interface [4]byte /* in_addr */
    }
    
    type IPv6Mreq struct {
    	Multiaddr [16]byte /* in6_addr */
    	Interface uint32
    }
    
    type Msghdr struct {
    	Name         *byte
    	Namelen      uint32
    	Pad_cgo_0    [4]byte
    	Iov          *Iovec
    	Iovlen       int32
    	Pad_cgo_1    [4]byte
    	Accrights    *int8
    	Accrightslen int32
    	Pad_cgo_2    [4]byte
    }
    
    type Cmsghdr struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 5.6K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/decodesym.go

    	if r == 0 {
    		return ""
    	}
    
    	data := ldr.DataString(r)
    	n := 1 + binary.MaxVarintLen64
    	if len(data) < n {
    		n = len(data)
    	}
    	nameLen, nameLenLen := binary.Uvarint([]byte(data[1:n]))
    	return data[1+nameLenLen : 1+nameLenLen+int(nameLen)]
    }
    
    func decodetypeNameEmbedded(ldr *loader.Loader, symIdx loader.Sym, relocs *loader.Relocs, off int) bool {
    	r := decodeRelocSym(ldr, symIdx, relocs, int32(off))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  6. src/syscall/ztypes_openbsd_386.go

    	Multiaddr [4]byte /* in_addr */
    	Interface [4]byte /* in_addr */
    }
    
    type IPv6Mreq struct {
    	Multiaddr [16]byte /* in6_addr */
    	Interface uint32
    }
    
    type Msghdr struct {
    	Name       *byte
    	Namelen    uint32
    	Iov        *Iovec
    	Iovlen     uint32
    	Control    *byte
    	Controllen uint32
    	Flags      int32
    }
    
    type Cmsghdr struct {
    	Len   uint32
    	Level int32
    	Type  int32
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 6.7K bytes
    - Viewed (0)
  7. src/syscall/ztypes_openbsd_arm64.go

    	Multiaddr [4]byte /* in_addr */
    	Interface [4]byte /* in_addr */
    }
    
    type IPv6Mreq struct {
    	Multiaddr [16]byte /* in6_addr */
    	Interface uint32
    }
    
    type Msghdr struct {
    	Name       *byte
    	Namelen    uint32
    	Iov        *Iovec
    	Iovlen     uint32
    	Control    *byte
    	Controllen uint32
    	Flags      int32
    }
    
    type Cmsghdr struct {
    	Len   uint32
    	Level int32
    	Type  int32
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 17:34:54 UTC 2019
    - 6.7K bytes
    - Viewed (0)
  8. src/syscall/ztypes_openbsd_mips64.go

    	Multiaddr [4]byte /* in_addr */
    	Interface [4]byte /* in_addr */
    }
    
    type IPv6Mreq struct {
    	Multiaddr [16]byte /* in6_addr */
    	Interface uint32
    }
    
    type Msghdr struct {
    	Name       *byte
    	Namelen    uint32
    	Iov        *Iovec
    	Iovlen     uint32
    	Control    *byte
    	Controllen uint32
    	Flags      int32
    }
    
    type Cmsghdr struct {
    	Len   uint32
    	Level int32
    	Type  int32
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 29 08:08:26 UTC 2020
    - 6.7K bytes
    - Viewed (0)
  9. src/syscall/ztypes_linux_amd64.go

    	X__unused [3]int64
    }
    
    type Statfs_t struct {
    	Type    int64
    	Bsize   int64
    	Blocks  uint64
    	Bfree   uint64
    	Bavail  uint64
    	Files   uint64
    	Ffree   uint64
    	Fsid    Fsid
    	Namelen int64
    	Frsize  int64
    	Flags   int64
    	Spare   [4]int64
    }
    
    type Dirent struct {
    	Ino       uint64
    	Off       int64
    	Reclen    uint16
    	Type      uint8
    	Name      [256]int8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 12K bytes
    - Viewed (0)
  10. src/syscall/zsysnum_openbsd_amd64.go

    	SYS_GETGID         = 47  // { gid_t sys_getgid(void); }
    	SYS_SIGPROCMASK    = 48  // { int sys_sigprocmask(int how, sigset_t mask); }
    	SYS_GETLOGIN       = 49  // { int sys_getlogin(char *namebuf, u_int namelen); }
    	SYS_SETLOGIN       = 50  // { int sys_setlogin(const char *namebuf); }
    	SYS_ACCT           = 51  // { int sys_acct(const char *path); }
    	SYS_SIGPENDING     = 52  // { int sys_sigpending(void); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 14.2K bytes
    - Viewed (0)
Back to top