Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for x509_CFRelease (0.14 sec)

  1. src/crypto/x509/internal/macos/corefoundation.s

    	JMP	x509_CFDataGetLength(SB)
    TEXT ·x509_CFStringCreateWithBytes_trampoline(SB),NOSPLIT,$0-0
    	JMP	x509_CFStringCreateWithBytes(SB)
    TEXT ·x509_CFRelease_trampoline(SB),NOSPLIT,$0-0
    	JMP	x509_CFRelease(SB)
    TEXT ·x509_CFDictionaryGetValueIfPresent_trampoline(SB),NOSPLIT,$0-0
    	JMP	x509_CFDictionaryGetValueIfPresent(SB)
    TEXT ·x509_CFNumberGetValue_trampoline(SB),NOSPLIT,$0-0
    	JMP	x509_CFNumberGetValue(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 21 20:05:17 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  2. src/crypto/x509/internal/macos/corefoundation.go

    func CFEqual(a, b CFRef) bool {
    	ret := syscall(abi.FuncPCABI0(x509_CFEqual_trampoline), uintptr(a), uintptr(b), 0, 0, 0, 0)
    	return ret == 1
    }
    func x509_CFEqual_trampoline()
    
    //go:cgo_import_dynamic x509_CFRelease CFRelease "/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation"
    
    func CFRelease(ref CFRef) {
    	syscall(abi.FuncPCABI0(x509_CFRelease_trampoline), uintptr(ref), 0, 0, 0, 0, 0)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 21 20:05:17 UTC 2022
    - 8.4K bytes
    - Viewed (0)
Back to top