Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 95 for SYSCALL (0.13 sec)

  1. src/syscall/zsyscall_openbsd_ppc64.go

    func Close(fd int) (err error) {
    	_, _, e1 := syscall(abi.FuncPCABI0(libc_close_trampoline), uintptr(fd), 0, 0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func libc_close_trampoline()
    
    //go:cgo_import_dynamic libc_close close "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Dup(fd int) (nfd int, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 47.4K bytes
    - Viewed (0)
  2. src/runtime/sys_darwin.go

    // (in addition to standard package syscall).
    // Do not remove or change the type signature.
    //
    // syscall.syscall6 is meant for package syscall (and x/sys),
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/tetratelabs/wazero
    //
    // See go.dev/issue/67401.
    //
    //go:linkname syscall_syscall6 syscall.syscall6
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  3. src/net/tcpsock.go

    // This implements the [syscall.Conn] interface.
    func (c *TCPConn) SyscallConn() (syscall.RawConn, error) {
    	if !c.ok() {
    		return nil, syscall.EINVAL
    	}
    	return newRawConn(c.fd), nil
    }
    
    // ReadFrom implements the [io.ReaderFrom] ReadFrom method.
    func (c *TCPConn) ReadFrom(r io.Reader) (int64, error) {
    	if !c.ok() {
    		return 0, syscall.EINVAL
    	}
    	n, err := c.readFrom(r)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 03:10:07 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  4. src/os/os_windows_test.go

    	header windows.REPARSE_DATA_BUFFER_HEADER
    	detail [syscall.MAXIMUM_REPARSE_DATA_BUFFER_SIZE]byte
    }
    
    func createDirLink(link string, rdb *_REPARSE_DATA_BUFFER) error {
    	err := os.Mkdir(link, 0777)
    	if err != nil {
    		return err
    	}
    
    	linkp := syscall.StringToUTF16(link)
    	fd, err := syscall.CreateFile(&linkp[0], syscall.GENERIC_WRITE, 0, nil, syscall.OPEN_EXISTING,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  5. src/net/cgo_unix.go

    	for r := res; r != nil; r = *_C_ai_next(r) {
    		switch *_C_ai_family(r) {
    		case _C_AF_INET:
    			sa := (*syscall.RawSockaddrInet4)(unsafe.Pointer(*_C_ai_addr(r)))
    			p := (*[2]byte)(unsafe.Pointer(&sa.Port))
    			return int(p[0])<<8 | int(p[1]), nil
    		case _C_AF_INET6:
    			sa := (*syscall.RawSockaddrInet6)(unsafe.Pointer(*_C_ai_addr(r)))
    			p := (*[2]byte)(unsafe.Pointer(&sa.Port))
    			return int(p[0])<<8 | int(p[1]), nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  6. src/runtime/syscall_windows.go

    // Do not remove or change the type signature.
    //
    //go:linkname syscall_loadlibrary syscall.loadlibrary
    func syscall_loadlibrary(filename *uint16) (handle, err uintptr) {
    	handle, _, err = syscall_SyscallN(uintptr(unsafe.Pointer(_LoadLibraryW)), uintptr(unsafe.Pointer(filename)))
    	KeepAlive(filename)
    	if handle != 0 {
    		err = 0
    	}
    	return
    }
    
    // golang.org/x/sys linknames syscall.getprocaddress
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  7. src/go/build/deps_test.go

    	< io;
    
    	RUNTIME
    	< arena;
    
    	syscall !< io;
    	reflect !< sort;
    
    	RUNTIME, unicode/utf8
    	< path;
    
    	unicode !< path;
    
    	# SYSCALL is RUNTIME plus the packages necessary for basic system calls.
    	RUNTIME, unicode/utf8, unicode/utf16
    	< internal/syscall/windows/sysdll, syscall/js
    	< syscall
    	< internal/syscall/unix, internal/syscall/windows, internal/syscall/windows/registry
    	< internal/syscall/execenv
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  8. src/os/file.go

    	O_RDONLY int = syscall.O_RDONLY // open the file read-only.
    	O_WRONLY int = syscall.O_WRONLY // open the file write-only.
    	O_RDWR   int = syscall.O_RDWR   // open the file read-write.
    	// The remaining values may be or'ed in to control behavior.
    	O_APPEND int = syscall.O_APPEND // append data to the file when writing.
    	O_CREATE int = syscall.O_CREAT  // create a new file if none exists.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:37 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  9. src/os/exec.go

    // type, such as [syscall.WaitStatus] on Unix, to access its contents.
    func (p *ProcessState) Sys() any {
    	return p.sys()
    }
    
    // SysUsage returns system-dependent resource usage information about
    // the exited process. Convert it to the appropriate underlying
    // type, such as [*syscall.Rusage] on Unix, to access its contents.
    // (On Unix, *syscall.Rusage matches struct rusage as defined in the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  10. src/unsafe/unsafe.go

    //
    //	// INVALID: conversion of nil pointer
    //	u := unsafe.Pointer(nil)
    //	p := unsafe.Pointer(uintptr(u) + offset)
    //
    // (4) Conversion of a Pointer to a uintptr when calling [syscall.Syscall].
    //
    // The Syscall functions in package syscall pass their uintptr arguments directly
    // to the operating system, which then may, depending on the details of the call,
    // reinterpret some of them as pointers.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 19:45:20 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top