Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for dylib (0.18 sec)

  1. src/internal/syscall/unix/pty_darwin.go

    )
    
    //go:cgo_import_dynamic libc_grantpt grantpt "/usr/lib/libSystem.B.dylib"
    func libc_grantpt_trampoline()
    
    func Grantpt(fd int) error {
    	_, _, errno := syscall_syscall6(abi.FuncPCABI0(libc_grantpt_trampoline), uintptr(fd), 0, 0, 0, 0, 0)
    	if errno != 0 {
    		return errno
    	}
    	return nil
    }
    
    //go:cgo_import_dynamic libc_unlockpt unlockpt "/usr/lib/libSystem.B.dylib"
    func libc_unlockpt_trampoline()
    
    func Unlockpt(fd int) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 10 19:24:46 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/NativeComponentReportOutputNormalizer.groovy

                .replaceAll("platform '[\\w+\\-]+'","platform 'current'")
                .replaceAll("(build/libs/.+/shared/(\\w+))\\.so") { "${it[1]}.dylib" }
                .replaceAll("((build/libs/.+/shared/)(\\w+))\\.dll") { "${it[2]}lib${it[3]}.dylib" }
                .replaceAll("((build/libs/.+/static/)(\\w+))\\.lib") { "${it[2]}lib${it[3]}.a" }
                .replaceAll("(build/exe/.+/\\w+)\\.exe") { it[1] }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/PlatformNativeComponentReportIntegrationTest.groovy

            flavor: flavor 'default'
            target platform: platform '$currentNative'
            tool chain: Tool chain 'clang' (Clang)
            shared library file: build/libs/someLib/shared/libsomeLib.dylib
        Static library 'someLib:staticLibrary'
            build using task: :someLibStaticLibrary
            build type: build type 'debug'
            flavor: flavor 'default'
            target platform: platform '$currentNative'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  4. src/internal/syscall/unix/net_darwin.go

    }
    
    //go:cgo_import_dynamic libc_freeaddrinfo freeaddrinfo "/usr/lib/libSystem.B.dylib"
    func libc_freeaddrinfo_trampoline()
    
    func Freeaddrinfo(ai *Addrinfo) {
    	syscall_syscall6(abi.FuncPCABI0(libc_freeaddrinfo_trampoline),
    		uintptr(unsafe.Pointer(ai)),
    		0, 0, 0, 0, 0)
    }
    
    //go:cgo_import_dynamic libc_getnameinfo getnameinfo "/usr/lib/libSystem.B.dylib"
    func libc_getnameinfo_trampoline()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 28 13:41:21 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  5. src/internal/syscall/unix/user_darwin.go

    // license that can be found in the LICENSE file.
    
    package unix
    
    import (
    	"internal/abi"
    	"syscall"
    	"unsafe"
    )
    
    //go:cgo_import_dynamic libc_getgrouplist getgrouplist "/usr/lib/libSystem.B.dylib"
    func libc_getgrouplist_trampoline()
    
    func Getgrouplist(name *byte, gid uint32, gids *uint32, n *int32) error {
    	_, _, errno := syscall_syscall6(abi.FuncPCABI0(libc_getgrouplist_trampoline),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 07 16:09:09 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  6. src/internal/syscall/unix/eaccess_darwin.go

    package unix
    
    import (
    	"internal/abi"
    	"syscall"
    	"unsafe"
    )
    
    func libc_faccessat_trampoline()
    
    //go:cgo_import_dynamic libc_faccessat faccessat "/usr/lib/libSystem.B.dylib"
    
    func faccessat(dirfd int, path string, mode uint32, flags int) error {
    	p, err := syscall.BytePtrFromString(path)
    	if err != nil {
    		return err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 15:02:38 UTC 2024
    - 791 bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/testso/testdata/so/cgoso.go

    #cgo freebsd LDFLAGS: -L. -l cgosotest
    #cgo openbsd LDFLAGS: -L. -l cgosotest
    #cgo solaris LDFLAGS: -L. -lcgosotest
    #cgo netbsd LDFLAGS: -L. libcgosotest.so
    #cgo darwin LDFLAGS: -L. libcgosotest.dylib
    #cgo windows LDFLAGS: -L. libcgosotest.a
    #cgo aix LDFLAGS: -L. -l cgosotest
    
    void init(void);
    void sofunc(void);
    */
    import "C"
    
    func Test() {
    	C.init()
    	C.sofunc()
    }
    
    //export goCallback
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 01:37:41 UTC 2023
    - 761 bytes
    - Viewed (0)
  8. src/cmd/link/testdata/dynimportvar/asm/a.go

    // This is a separate package because we cannot have Go
    // assembly code and cgo code in the same package.
    
    //go:build darwin
    
    package asm
    
    //go:cgo_import_dynamic libc_mach_task_self_ mach_task_self_ "/usr/lib/libSystem.B.dylib"
    
    // load mach_task_self_ from assembly code
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 19:39:32 UTC 2023
    - 463 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/prebuilt/groovy/build.gradle

                                sharedLibraryLinkFile = file("${baseDir}/util.lib")
                            }
                        } else if (os.macOsX) {
                            sharedLibraryFile = file("${baseDir}/libutil.dylib")
                        } else {
                            sharedLibraryFile = file("${baseDir}/libutil.so")
                        }
                    }
                }
            }
        }
    
        components {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. src/internal/syscall/unix/arc4random_darwin.go

    // license that can be found in the LICENSE file.
    
    package unix
    
    import (
    	"internal/abi"
    	"unsafe"
    )
    
    //go:cgo_import_dynamic libc_arc4random_buf arc4random_buf "/usr/lib/libSystem.B.dylib"
    
    func libc_arc4random_buf_trampoline()
    
    // ARC4Random calls the macOS arc4random_buf(3) function.
    func ARC4Random(p []byte) {
    	// macOS 11 and 12 abort if length is 0.
    	if len(p) == 0 {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:02:21 UTC 2024
    - 633 bytes
    - Viewed (0)
Back to top