Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 207 for chdir (0.05 sec)

  1. src/syscall/syscall_aix.go

     */
    
    //sys	Acct(path string) (err error)
    //sys	Chdir(path string) (err error)
    //sys	Chmod(path string, mode uint32) (err error)
    //sys	Chown(path string, uid int, gid int) (err error)
    //sys	Chroot(path string) (err error)
    //sys	Close(fd int) (err error)
    //sys	Dup(fd int) (nfd int, err error)
    //sys	Faccessat(dirfd int, path string, mode uint32, flags int) (err error)
    //sys	Fchdir(fd int) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:50:55 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  2. src/syscall/exec_linux.go

    		}
    
    		for _, c = range sys.AmbientCaps {
    			_, _, err1 = RawSyscall6(SYS_PRCTL, PR_CAP_AMBIENT, uintptr(PR_CAP_AMBIENT_RAISE), c, 0, 0, 0)
    			if err1 != 0 {
    				goto childerror
    			}
    		}
    	}
    
    	// Chdir
    	if dir != nil {
    		_, _, err1 = RawSyscall(SYS_CHDIR, uintptr(unsafe.Pointer(dir)), 0, 0)
    		if err1 != 0 {
    			goto childerror
    		}
    	}
    
    	// Parent death signal
    	if sys.Pdeathsig != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/testshared/shared_test.go

    	// For now, run the tests in GOPATH mode only.
    	os.Setenv("GO111MODULE", "off")
    
    	// Some tests need to edit the source in GOPATH, so copy this directory to a
    	// temporary directory and chdir to that.
    	gopath := filepath.Join(workDir, "gopath")
    	modRoot, err := cloneTestdataModule(gopath)
    	if err != nil {
    		return 0, err
    	}
    	if testing.Verbose() {
    		fmt.Printf("+ export GOPATH=%s\n", gopath)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 26 01:54:41 UTC 2023
    - 36.3K bytes
    - Viewed (0)
  4. src/syscall/zsyscall_aix_ppc64.go

    //go:cgo_import_dynamic libc_Openat openat "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_ptrace64 ptrace64 "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_Acct acct "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_Chdir chdir "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_Chmod chmod "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_Chown chown "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_Chroot chroot "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)
  5. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm64.go

    	SYS_UNLINK               = 10  // { int|sys||unlink(const char *path); }
    	SYS_CHDIR                = 12  // { int|sys||chdir(const char *path); }
    	SYS_FCHDIR               = 13  // { int|sys||fchdir(int fd); }
    	SYS_CHMOD                = 15  // { int|sys||chmod(const char *path, mode_t mode); }
    	SYS_CHOWN                = 16  // { int|sys||chown(const char *path, uid_t uid, gid_t gid); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_dragonfly_amd64.go

    	SYS_LINK                   = 9   // { int link(char *path, char *link); }
    	SYS_UNLINK                 = 10  // { int unlink(char *path); }
    	SYS_CHDIR                  = 12  // { int chdir(char *path); }
    	SYS_FCHDIR                 = 13  // { int fchdir(int fd); }
    	SYS_MKNOD                  = 14  // { int mknod(char *path, int mode, int dev); }
    	SYS_CHMOD                  = 15  // { int chmod(char *path, int mode); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 27.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_netbsd_386.go

    	SYS_UNLINK               = 10  // { int|sys||unlink(const char *path); }
    	SYS_CHDIR                = 12  // { int|sys||chdir(const char *path); }
    	SYS_FCHDIR               = 13  // { int|sys||fchdir(int fd); }
    	SYS_CHMOD                = 15  // { int|sys||chmod(const char *path, mode_t mode); }
    	SYS_CHOWN                = 16  // { int|sys||chown(const char *path, uid_t uid, gid_t gid); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_netbsd_amd64.go

    	SYS_UNLINK               = 10  // { int|sys||unlink(const char *path); }
    	SYS_CHDIR                = 12  // { int|sys||chdir(const char *path); }
    	SYS_FCHDIR               = 13  // { int|sys||fchdir(int fd); }
    	SYS_CHMOD                = 15  // { int|sys||chmod(const char *path, mode_t mode); }
    	SYS_CHOWN                = 16  // { int|sys||chown(const char *path, uid_t uid, gid_t gid); }
    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/cmd/vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm.go

    	SYS_UNLINK               = 10  // { int|sys||unlink(const char *path); }
    	SYS_CHDIR                = 12  // { int|sys||chdir(const char *path); }
    	SYS_FCHDIR               = 13  // { int|sys||fchdir(int fd); }
    	SYS_CHMOD                = 15  // { int|sys||chmod(const char *path, mode_t mode); }
    	SYS_CHOWN                = 16  // { int|sys||chown(const char *path, uid_t uid, gid_t gid); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  10. src/syscall/zsyscall_openbsd_amd64.go

    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Fchdir(fd int) (err error) {
    	_, _, e1 := syscall(abi.FuncPCABI0(libc_fchdir_trampoline), uintptr(fd), 0, 0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func libc_fchdir_trampoline()
    
    //go:cgo_import_dynamic libc_fchdir fchdir "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 47.4K bytes
    - Viewed (0)
Back to top