Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 106 of 106 for errnoErr2 (0.11 sec)

  1. src/syscall/syscall_linux_s390x.go

    	mmap_args := [6]uintptr{addr, length, uintptr(prot), uintptr(flags), uintptr(fd), uintptr(offset)}
    	r0, _, e1 := Syscall(SYS_MMAP, uintptr(unsafe.Pointer(&mmap_args[0])), 0, 0)
    	xaddr = uintptr(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    // On s390x Linux, all the socket calls go through an extra indirection.
    // The arguments to the underlying system call are the number below
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 22:23:07 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/syscall_darwin.go

    func fdopendir(fd int) (dir uintptr, err error) {
    	r0, _, e1 := syscall_syscallPtr(libc_fdopendir_trampoline_addr, uintptr(fd), 0, 0)
    	dir = uintptr(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    var libc_fdopendir_trampoline_addr uintptr
    
    //go:cgo_import_dynamic libc_fdopendir fdopendir "/usr/lib/libSystem.B.dylib"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 20.7K bytes
    - Viewed (0)
  3. src/syscall/mksyscall.pl

    	if ($plan9 && $ret[2] eq "e1") {
    		$text .= "\tif int32(r0) == -1 {\n";
    		$text .= "\t\terr = e1\n";
    		$text .= "\t}\n";
    	} elsif ($do_errno) {
    		$text .= "\tif e1 != 0 {\n";
    		$text .= "\t\terr = errnoErr(e1)\n";
    		$text .= "\t}\n";
    	}
    	$text .= "\treturn\n";
    	$text .= "}\n\n";
    	if($libc) {
    		if (not exists $trampolines{$funcname}) {
    			$trampolines{$funcname} = 1;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:15:02 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. src/syscall/syscall_windows.go

    			_, _, e1 = Syscall6(procSetFilePointerEx.Addr(), 6, uintptr(handle), 0, uintptr(distToMove), uintptr(distToMove>>32), uintptr(unsafe.Pointer(newFilePointer)), uintptr(whence))
    		}
    	}
    	if e1 != 0 {
    		return errnoErr(e1)
    	}
    	return nil
    }
    
    func Seek(fd Handle, offset int64, whence int) (newoffset int64, err error) {
    	var w uint32
    	switch whence {
    	case 0:
    		w = FILE_BEGIN
    	case 1:
    		w = FILE_CURRENT
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    func GetProcAddressByOrdinal(module Handle, ordinal uintptr) (proc uintptr, err error) {
    	r0, _, e1 := syscall.Syscall(procGetProcAddress.Addr(), 2, uintptr(module), ordinal, 0)
    	proc = uintptr(r0)
    	if proc == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func Exit(code int) { ExitProcess(uint32(code)) }
    
    func makeInheritSa() *SecurityAttributes {
    	var sa SecurityAttributes
    	sa.Length = uint32(unsafe.Sizeof(sa))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    func Klogset(typ int, arg int) (err error) {
    	var p unsafe.Pointer
    	_, _, errno := Syscall(SYS_SYSLOG, uintptr(typ), uintptr(p), uintptr(arg))
    	if errno != 0 {
    		return errnoErr(errno)
    	}
    	return nil
    }
    
    // RemoteIovec is Iovec with the pointer replaced with an integer.
    // It is used for ProcessVMReadv and ProcessVMWritev, where the pointer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
Back to top