MCPcopy Create free account
hub / github.com/apache/tomcat / traceDowncall

Method traceDowncall

java/org/apache/tomcat/util/openssl/openssl_h.java:42–45  ·  view source on GitHub ↗
(String name, Object... args)

Source from the content-addressed store, hash-verified

40 static final boolean TRACE_DOWNCALLS = Boolean.getBoolean("jextract.trace.downcalls");
41
42 static void traceDowncall(String name, Object... args) {
43 String traceArgs = Arrays.stream(args).map(Object::toString).collect(Collectors.joining(", "));
44 System.out.printf("%s(%s)\n", name, traceArgs);
45 }
46
47 static MemorySegment findOrThrow(String symbol) {
48 return SYMBOL_LOOKUP.find(symbol).orElseThrow(() -> new UnsatisfiedLinkError("unresolved symbol: " + symbol));

Callers 15

OPENSSL_sk_numMethod · 0.95
OPENSSL_sk_valueMethod · 0.95
OpenSSL_version_numMethod · 0.95
OpenSSL_versionMethod · 0.95
CRYPTO_freeMethod · 0.95
BIO_ctrl_pendingMethod · 0.95
BIO_s_fileMethod · 0.95
BIO_new_fileMethod · 0.95
BIO_newMethod · 0.95
BIO_freeMethod · 0.95
BIO_readMethod · 0.95
BIO_writeMethod · 0.95

Calls 3

collectMethod · 0.80
printfMethod · 0.80
mapMethod · 0.45

Tested by

no test coverage detected