{@snippet lang = c : int BIO_free(BIO a) }
(MemorySegment a)
| 1428 | * } |
| 1429 | */ |
| 1430 | public static int BIO_free(MemorySegment a) { |
| 1431 | var mh$ = BIO_free.HANDLE; |
| 1432 | try { |
| 1433 | if (TRACE_DOWNCALLS) { |
| 1434 | traceDowncall("BIO_free", a); |
| 1435 | } |
| 1436 | return (int) mh$.invokeExact(a); |
| 1437 | } catch (Throwable ex$) { |
| 1438 | throw new AssertionError("should not reach here", ex$); |
| 1439 | } |
| 1440 | } |
| 1441 | |
| 1442 | private static class BIO_read { |
| 1443 | public static final FunctionDescriptor DESC = |
no test coverage detected