Coverage report: /home/ellis/comp/core/ffi/aws-lc/aws-lc.lisp

KindCoveredAll%
expression011 0.0
branch00nil
Key
Not instrumented
Conditionalized out
Executed
Not executed
 
Both branches taken
One branch taken
Neither branch taken
1
 ;;; aws-lc.lisp --- AWS-LC Alien Routines
2
 
3
 ;;
4
 
5
 ;;; Code:
6
 (in-package :aws-lc)
7
 
8
 (defar ("ASN1_STRING_data" asn1-string-data) (* unsigned-char)
9
   (str (* t)))
10
 
11
 (defar ("ASN1_STRING_length" asn1-string-length) int
12
   (str (* t)))
13
 
14
 (defar ("ASN1_STRING_type" asn1-string-type) int
15
   (str (* t)))
16
 
17
 (defar ("ASN1_STRING_free" asn1-string-free) void
18
   (str (* t)))
19
 
20
 (defar ("ASN1_TIME_check" asn1-time-check) int
21
   (time (* t)))
22
 
23
 (defar ("ASN1_UTCTIME_check" asn1-utctime-check) int
24
   (time (* t)))
25
 
26
 (defar ("d2i_X509" d2i-x509) (* x509)
27
   (out (* (* x509)))
28
   (inp (* (* unsigned-char)))
29
   (len long))
30
 
31
 (defar ("ERR_get_error" err-get-error) unsigned-int)
32
 
33
 (defar ("ERR_error_string" err-error-string) c-string
34
   (e unsigned-int)
35
   (buf (* char)))
36
 
37
 (defconstant +err-error-string-buf-len+ 120)