Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for x509_CFArrayGetValueAtIndex_trampoline (0.27 sec)

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

    #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)
    TEXT ·x509_CFDataGetLength_trampoline(SB),NOSPLIT,$0-0
    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 CFArrayGetValueAtIndex(array CFRef, index int) CFRef {
    	ret := syscall(abi.FuncPCABI0(x509_CFArrayGetValueAtIndex_trampoline), uintptr(array), uintptr(index), 0, 0, 0, 0)
    	return CFRef(ret)
    }
    func x509_CFArrayGetValueAtIndex_trampoline()
    
    //go:cgo_import_dynamic x509_CFEqual CFEqual "/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation"
    
    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