Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for x509_CFArrayGetCount (0.35 sec)

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

    //go:build darwin
    
    #include "textflag.h"
    
    // The trampolines are ABIInternal as they are address-taken in
    // Go code.
    
    TEXT ·x509_CFArrayGetCount_trampoline(SB),NOSPLIT,$0-0
    	JMP	x509_CFArrayGetCount(SB)
    TEXT ·x509_CFArrayGetValueAtIndex_trampoline(SB),NOSPLIT,$0-0
    	JMP	x509_CFArrayGetValueAtIndex(SB)
    TEXT ·x509_CFDataGetBytePtr_trampoline(SB),NOSPLIT,$0-0
    	JMP	x509_CFDataGetBytePtr(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

    	ret := syscall(abi.FuncPCABI0(x509_CFDataGetBytePtr_trampoline), uintptr(data), 0, 0, 0, 0, 0)
    	return ret
    }
    func x509_CFDataGetBytePtr_trampoline()
    
    //go:cgo_import_dynamic x509_CFArrayGetCount CFArrayGetCount "/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation"
    
    func CFArrayGetCount(array CFRef) int {
    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