Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 136 for sys_linkat (0.29 sec)

  1. api/go1.14.txt

    pkg syscall (freebsd-arm64), const SYS_LGETFH = 160
    pkg syscall (freebsd-arm64), const SYS_LGETFH ideal-int
    pkg syscall (freebsd-arm64), const SYS_LINK = 9
    pkg syscall (freebsd-arm64), const SYS_LINK ideal-int
    pkg syscall (freebsd-arm64), const SYS_LINKAT = 495
    pkg syscall (freebsd-arm64), const SYS_LINKAT ideal-int
    pkg syscall (freebsd-arm64), const SYS_LIO_LISTIO = 257
    pkg syscall (freebsd-arm64), const SYS_LIO_LISTIO ideal-int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 20:31:46 UTC 2023
    - 508.9K bytes
    - Viewed (0)
  2. api/go1.1.txt

    pkg syscall (freebsd-386), const SYS_LCHMOD = 274
    pkg syscall (freebsd-386), const SYS_LCHOWN = 254
    pkg syscall (freebsd-386), const SYS_LGETFH = 160
    pkg syscall (freebsd-386), const SYS_LINK = 9
    pkg syscall (freebsd-386), const SYS_LINKAT = 495
    pkg syscall (freebsd-386), const SYS_LISTEN = 106
    pkg syscall (freebsd-386), const SYS_LPATHCONF = 513
    pkg syscall (freebsd-386), const SYS_LSEEK = 478
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 31 20:37:15 UTC 2022
    - 2.6M bytes
    - Viewed (0)
  3. api/go1.2.txt

    pkg syscall (freebsd-386-cgo), const SYS_LCHOWN ideal-int
    pkg syscall (freebsd-386-cgo), const SYS_LGETFH ideal-int
    pkg syscall (freebsd-386-cgo), const SYS_LINK ideal-int
    pkg syscall (freebsd-386-cgo), const SYS_LINKAT ideal-int
    pkg syscall (freebsd-386-cgo), const SYS_LISTEN ideal-int
    pkg syscall (freebsd-386-cgo), const SYS_LPATHCONF ideal-int
    pkg syscall (freebsd-386-cgo), const SYS_LSEEK ideal-int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 18 04:36:59 UTC 2013
    - 1.9M bytes
    - Viewed (0)
  4. src/internal/syscall/unix/at_sysnum_freebsd.go

    import "syscall"
    
    const (
    	AT_EACCESS          = 0x100
    	AT_FDCWD            = -0x64
    	AT_REMOVEDIR        = 0x800
    	AT_SYMLINK_NOFOLLOW = 0x200
    
    	UTIME_OMIT = -0x2
    
    	unlinkatTrap       uintptr = syscall.SYS_UNLINKAT
    	openatTrap         uintptr = syscall.SYS_OPENAT
    	posixFallocateTrap uintptr = syscall.SYS_POSIX_FALLOCATE
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 28 03:38:07 UTC 2023
    - 497 bytes
    - Viewed (0)
  5. src/internal/syscall/unix/at_sysnum_dragonfly.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package unix
    
    import "syscall"
    
    const unlinkatTrap uintptr = syscall.SYS_UNLINKAT
    const openatTrap uintptr = syscall.SYS_OPENAT
    const fstatatTrap uintptr = syscall.SYS_FSTATAT
    
    const (
    	AT_EACCESS          = 0x4
    	AT_FDCWD            = 0xfffafdcd
    	AT_REMOVEDIR        = 0x2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 06 20:48:47 UTC 2023
    - 482 bytes
    - Viewed (0)
  6. src/internal/syscall/unix/at_sysnum_netbsd.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package unix
    
    import "syscall"
    
    const unlinkatTrap uintptr = syscall.SYS_UNLINKAT
    const openatTrap uintptr = syscall.SYS_OPENAT
    const fstatatTrap uintptr = syscall.SYS_FSTATAT
    
    const (
    	AT_EACCESS          = 0x100
    	AT_FDCWD            = -0x64
    	AT_REMOVEDIR        = 0x800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 14:13:33 UTC 2023
    - 492 bytes
    - Viewed (0)
  7. api/go1.20.txt

    pkg syscall (freebsd-riscv64), const SYS_LGETFH ideal-int #53466
    pkg syscall (freebsd-riscv64), const SYS_LINK = 9 #53466
    pkg syscall (freebsd-riscv64), const SYS_LINK ideal-int #53466
    pkg syscall (freebsd-riscv64), const SYS_LINKAT = 495 #53466
    pkg syscall (freebsd-riscv64), const SYS_LINKAT ideal-int #53466
    pkg syscall (freebsd-riscv64), const SYS_LIO_LISTIO = 257 #53466
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 21:23:32 UTC 2023
    - 602.6K bytes
    - Viewed (0)
  8. src/internal/syscall/unix/at_sysnum_openbsd.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package unix
    
    import "syscall"
    
    const unlinkatTrap uintptr = syscall.SYS_UNLINKAT
    const openatTrap uintptr = syscall.SYS_OPENAT
    const fstatatTrap uintptr = syscall.SYS_FSTATAT
    
    const (
    	AT_EACCESS          = 0x1
    	AT_FDCWD            = -0x64
    	AT_REMOVEDIR        = 0x08
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:36:52 UTC 2024
    - 479 bytes
    - Viewed (0)
  9. src/internal/syscall/unix/at_sysnum_linux.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package unix
    
    import "syscall"
    
    const unlinkatTrap uintptr = syscall.SYS_UNLINKAT
    const openatTrap uintptr = syscall.SYS_OPENAT
    
    const (
    	AT_EACCESS          = 0x200
    	AT_FDCWD            = -0x64
    	AT_REMOVEDIR        = 0x200
    	AT_SYMLINK_NOFOLLOW = 0x100
    
    	UTIME_OMIT = 0x3ffffffe
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 11 18:19:17 UTC 2023
    - 441 bytes
    - Viewed (0)
  10. src/syscall/zsysnum_darwin_arm64.go

    	SYS_READ                           = 3
    	SYS_WRITE                          = 4
    	SYS_OPEN                           = 5
    	SYS_CLOSE                          = 6
    	SYS_WAIT4                          = 7
    	SYS_LINK                           = 9
    	SYS_UNLINK                         = 10
    	SYS_CHDIR                          = 12
    	SYS_FCHDIR                         = 13
    	SYS_MKNOD                          = 14
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 14.4K bytes
    - Viewed (0)
Back to top