Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 77 for dylib (0.09 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/debug/macho/file_test.go

    			nil, // LC_SYMTAB
    			nil, // LC_DYSYMTAB
    			nil, // LC_LOAD_DYLINKER
    			nil, // LC_UUID
    			nil, // LC_UNIXTHREAD
    			&Dylib{nil, "/usr/lib/libgcc_s.1.dylib", 0x2, 0x10000, 0x10000},
    			&Dylib{nil, "/usr/lib/libSystem.B.dylib", 0x2, 0x6f0104, 0x10000},
    		},
    		[]*SectionHeader{
    			{"__text", "__TEXT", 0x1f68, 0x88, 0xf68, 0x2, 0x0, 0x0, 0x80000400},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 12.4K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/internal/xcodeproj/FileTypes.java

        /**
         * Apple UTI for executables.
         */
        MACH_O_EXECUTABLE("", "compiled.mach-o.executable"),
    
        /**
         * Apple UTI for dynamic libraries.
         */
        MACH_O_DYNAMIC_LIBRARY("dylib", "compiled.mach-o.dylib"),
    
        /**
         * Apple UTI for static libraries.
         */
        ARCHIVE_LIBRARY("a", "archive.ar"),
    
        C_SOURCE_CODE("c", "sourcecode.c.c"),
        CC_SOURCE_CODE("cc", "sourcecode.cpp.cpp"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/darwin_lto_library_ldflag.txt

    [!GOOS:darwin] skip
    [!cgo] skip
    
    ! go build
    stderr 'invalid flag in #cgo LDFLAGS: -lto_library'
    
    -- go.mod --
    module ldflag
    
    -- main.go --
    package main
    
    // #cgo CFLAGS: -flto
    // #cgo LDFLAGS: -lto_library bad.dylib
    import "C"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:41:16 UTC 2024
    - 241 bytes
    - Viewed (0)
Back to top