Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 93 for Unlinkat (0.19 sec)

  1. src/syscall/zsyscall_openbsd_arm.go

    	}
    	return
    }
    
    func libc_fstatat_trampoline()
    
    //go:cgo_import_dynamic libc_fstatat fstatat "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func unlinkat(fd int, path string, flags int) (err error) {
    	var _p0 *byte
    	_p0, err = BytePtrFromString(path)
    	if err != nil {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  2. src/syscall/zsyscall_aix_ppc64.go

    //go:cgo_import_dynamic libc_readlink readlink "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_utimes utimes "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_utimensat utimensat "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_unlinkat unlinkat "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_getcwd getcwd "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_getgroups getgroups "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_setgroups setgroups "libc.a/shr_64.o"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:50:55 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm64.go

    	SYS_SYMLINKAT                = 502 // { int symlinkat(char *path1, int fd, char *path2); }
    	SYS_UNLINKAT                 = 503 // { int unlinkat(int fd, char *path, int flag); }
    	SYS_POSIX_OPENPT             = 504 // { int posix_openpt(int flags); }
    	SYS_GSSD_SYSCALL             = 505 // { int gssd_syscall(char *path); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    }
    
    func Rmdir(path string) error {
    	return Unlinkat(AT_FDCWD, path, AT_REMOVEDIR)
    }
    
    //sys	Symlinkat(oldpath string, newdirfd int, newpath string) (err error)
    
    func Symlink(oldpath string, newpath string) (err error) {
    	return Symlinkat(oldpath, AT_FDCWD, newpath)
    }
    
    func Unlink(path string) error {
    	return Unlinkat(AT_FDCWD, path, 0)
    }
    
    //sys	Unlinkat(dirfd int, path string, flags int) (err error)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_amd64.go

    	SYS_SYMLINKAT                = 502 // { int symlinkat(char *path1, int fd, char *path2); }
    	SYS_UNLINKAT                 = 503 // { int unlinkat(int fd, char *path, int flag); }
    	SYS_POSIX_OPENPT             = 504 // { int posix_openpt(int flags); }
    	SYS_GSSD_SYSCALL             = 505 // { int gssd_syscall(char *path); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm.go

    	SYS_SYMLINKAT                = 502 // { int symlinkat(char *path1, int fd, char *path2); }
    	SYS_UNLINKAT                 = 503 // { int unlinkat(int fd, char *path, int flag); }
    	SYS_POSIX_OPENPT             = 504 // { int posix_openpt(int flags); }
    	SYS_GSSD_SYSCALL             = 505 // { int gssd_syscall(char *path); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_dragonfly_amd64.go

    	SYS_FCHOWNAT               = 507 // { int fchownat(int fd, char *path, int uid, int gid, int flags); }
    	SYS_UNLINKAT               = 508 // { int unlinkat(int fd, char *path, int flags); }
    	SYS_FACCESSAT              = 509 // { int faccessat(int fd, char *path, int amode, int flags); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 27.6K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_netbsd_386.go

    	SYS_SYMLINKAT            = 470 // { int|sys||symlinkat(const char *path1, int fd, const char *path2); }
    	SYS_UNLINKAT             = 471 // { int|sys||unlinkat(int fd, const char *path, int flag); }
    	SYS_FUTIMENS             = 472 // { int|sys||futimens(int fd, const struct timespec *tptr); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  9. src/syscall/zsysnum_netbsd_arm64.go

    	SYS_SYMLINKAT            = 470 // { int|sys||symlinkat(const char *path1, int fd, const char *path2); }
    	SYS_UNLINKAT             = 471 // { int|sys||unlinkat(int fd, const char *path, int flag); }
    	SYS_FUTIMENS             = 472 // { int|sys||futimens(int fd, const struct timespec *tptr); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 25.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/syscall_darwin.go

    //sys	Sync() (err error)
    //sys	Truncate(path string, length int64) (err error)
    //sys	Umask(newmask int) (oldmask int)
    //sys	Undelete(path string) (err error)
    //sys	Unlink(path string) (err error)
    //sys	Unlinkat(dirfd int, path string, flags int) (err error)
    //sys	Unmount(path string, flags int) (err error)
    //sys	write(fd int, p []byte) (n int, err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 20.7K bytes
    - Viewed (0)
Back to top