Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 55 of 55 for libc_open (0.16 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.go

    	fd = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    var libc_open_trampoline_addr uintptr
    
    //go:cgo_import_dynamic libc_open open "/usr/lib/libSystem.B.dylib"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Openat(dirfd int, path string, mode int, perm uint32) (fd int, err error) {
    	var _p0 *byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 66.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64_gc.go

    //go:linkname libc_mkfifo libc_mkfifo
    //go:linkname libc_mknod libc_mknod
    //go:linkname libc_mknodat libc_mknodat
    //go:linkname libc_nanosleep libc_nanosleep
    //go:linkname libc_open64 libc_open64
    //go:linkname libc_openat libc_openat
    //go:linkname libc_read libc_read
    //go:linkname libc_readlink libc_readlink
    //go:linkname libc_renameat libc_renameat
    //go:linkname libc_setdomainname libc_setdomainname
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 42.4K bytes
    - Viewed (0)
  3. src/internal/syscall/unix/at_solaris.go

    func rawSyscall6(trap, nargs, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err syscall.Errno)
    
    //go:cgo_import_dynamic libc_fstatat fstatat "libc.so"
    //go:cgo_import_dynamic libc_openat openat "libc.so"
    //go:cgo_import_dynamic libc_unlinkat unlinkat "libc.so"
    //go:cgo_import_dynamic libc_uname uname "libc.so"
    
    const (
    	AT_REMOVEDIR        = 0x1
    	AT_SYMLINK_NOFOLLOW = 0x1000
    
    	UTIME_OMIT = -0x2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:17:25 UTC 2024
    - 814 bytes
    - Viewed (0)
  4. src/internal/syscall/unix/at_aix.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package unix
    
    //go:cgo_import_dynamic libc_fstatat fstatat "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_openat openat "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_unlinkat unlinkat "libc.a/shr_64.o"
    
    const (
    	AT_REMOVEDIR        = 0x1
    	AT_SYMLINK_NOFOLLOW = 0x1
    	UTIME_OMIT          = -0x3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 11 18:19:17 UTC 2023
    - 456 bytes
    - Viewed (0)
  5. src/internal/syscall/unix/at_libc.go

    // license that can be found in the LICENSE file.
    
    //go:build aix || solaris
    
    package unix
    
    import (
    	"syscall"
    	"unsafe"
    )
    
    //go:linkname procFstatat libc_fstatat
    //go:linkname procOpenat libc_openat
    //go:linkname procUnlinkat libc_unlinkat
    
    var (
    	procFstatat,
    	procOpenat,
    	procUnlinkat uintptr
    )
    
    func Unlinkat(dirfd int, path string, flags int) error {
    	p, err := syscall.BytePtrFromString(path)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 1.4K bytes
    - Viewed (0)
Back to top