Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for sys_linkat (0.27 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/cmd/vendor/golang.org/x/sys/unix/zsymaddr_zos_s390x.s

    	MOVD $·Setns(SB), R8
    	MOVD R8, ret+0(FP)
    	RET
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    TEXT ·get_SymlinkatAddr(SB), NOSPLIT|NOFRAME, $0-8
    	MOVD $·Symlinkat(SB), R8
    	MOVD R8, ret+0(FP)
    	RET
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    TEXT ·get_UnlinkatAddr(SB), NOSPLIT|NOFRAME, $0-8
    	MOVD $·Unlinkat(SB), R8
    	MOVD R8, ret+0(FP)
    	RET
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 8.8K bytes
    - Viewed (0)
Back to top