Interface EntitlementChecker


public interface EntitlementChecker
EntitlementChecker relies on preview features of the Java platform:
Programs can only use EntitlementChecker when preview features are enabled.
Preview features may be removed in a future release, or upgraded to permanent features of the Java platform.
Contains one "check" method for each distinct JDK method we want to instrument.

Methods starting with check$ (with the dollar sign) follow a strict naming convention that allows them to be matched up directly against the corresponding target method or constructor by InstrumentationService. The naming convention uses dollar signs as separators, which works nicely because JCL methods don't use dollar signs.

Methods not starting with check$ (for example, checkPathToRealPath(java.lang.Class<?>, java.nio.file.Path, java.nio.file.LinkOption...)) are processed by DynamicInstrumentation and follow a different convention. They are matched up with the appropriate implementation classes at runtime once we know what they are.

Some of these methods have a throws clause. The rule is that the check method should not throw a checked exception unless that exception is also thrown by the instrumented method under the same circumstances.

  • Method Details

    • check$java_lang_Runtime$exit

      void check$java_lang_Runtime$exit(Class<?> callerClass, Runtime runtime, int status)
    • check$java_lang_Runtime$halt

      void check$java_lang_Runtime$halt(Class<?> callerClass, Runtime runtime, int status)
    • check$java_lang_System$$exit

      void check$java_lang_System$$exit(Class<?> callerClass, int status)
    • check$java_lang_ClassLoader$

      void check$java_lang_ClassLoader$(Class<?> callerClass)
    • check$java_lang_ClassLoader$

      void check$java_lang_ClassLoader$(Class<?> callerClass, ClassLoader parent)
    • check$java_lang_ClassLoader$

      void check$java_lang_ClassLoader$(Class<?> callerClass, String name, ClassLoader parent)
    • check$java_net_URLClassLoader$

      void check$java_net_URLClassLoader$(Class<?> callerClass, URL[] urls)
    • check$java_net_URLClassLoader$

      void check$java_net_URLClassLoader$(Class<?> callerClass, URL[] urls, ClassLoader parent)
    • check$java_net_URLClassLoader$

      void check$java_net_URLClassLoader$(Class<?> callerClass, URL[] urls, ClassLoader parent, URLStreamHandlerFactory factory)
    • check$java_net_URLClassLoader$

      void check$java_net_URLClassLoader$(Class<?> callerClass, String name, URL[] urls, ClassLoader parent)
    • check$java_net_URLClassLoader$

      void check$java_net_URLClassLoader$(Class<?> callerClass, String name, URL[] urls, ClassLoader parent, URLStreamHandlerFactory factory)
    • check$java_net_URLClassLoader$$newInstance

      void check$java_net_URLClassLoader$$newInstance(Class<?> callerClass, URL[] urls, ClassLoader parent)
    • check$java_net_URLClassLoader$$newInstance

      void check$java_net_URLClassLoader$$newInstance(Class<?> callerClass, URL[] urls)
    • check$java_security_SecureClassLoader$

      void check$java_security_SecureClassLoader$(Class<?> callerClass)
    • check$java_security_SecureClassLoader$

      void check$java_security_SecureClassLoader$(Class<?> callerClass, ClassLoader parent)
    • check$java_security_SecureClassLoader$

      void check$java_security_SecureClassLoader$(Class<?> callerClass, String name, ClassLoader parent)
    • check$javax_net_ssl_HttpsURLConnection$setSSLSocketFactory

      void check$javax_net_ssl_HttpsURLConnection$setSSLSocketFactory(Class<?> callerClass, HttpsURLConnection conn, SSLSocketFactory sf)
    • check$javax_net_ssl_HttpsURLConnection$$setDefaultSSLSocketFactory

      void check$javax_net_ssl_HttpsURLConnection$$setDefaultSSLSocketFactory(Class<?> callerClass, SSLSocketFactory sf)
    • check$javax_net_ssl_HttpsURLConnection$$setDefaultHostnameVerifier

      void check$javax_net_ssl_HttpsURLConnection$$setDefaultHostnameVerifier(Class<?> callerClass, HostnameVerifier hv)
    • check$javax_net_ssl_SSLContext$$setDefault

      void check$javax_net_ssl_SSLContext$$setDefault(Class<?> callerClass, SSLContext context)
    • check$java_lang_ProcessBuilder$start

      void check$java_lang_ProcessBuilder$start(Class<?> callerClass, ProcessBuilder that)
    • check$java_lang_ProcessBuilder$$startPipeline

      void check$java_lang_ProcessBuilder$$startPipeline(Class<?> callerClass, List<ProcessBuilder> builders)
    • check$java_lang_System$$setProperties

      void check$java_lang_System$$setProperties(Class<?> callerClass, Properties props)
    • check$java_lang_System$$setProperty

      void check$java_lang_System$$setProperty(Class<?> callerClass, String key, String value)
    • check$java_lang_System$$clearProperty

      void check$java_lang_System$$clearProperty(Class<?> callerClass, String key)
    • check$com_sun_tools_jdi_VirtualMachineManagerImpl$$virtualMachineManager

      void check$com_sun_tools_jdi_VirtualMachineManagerImpl$$virtualMachineManager(Class<?> callerClass)
    • check$java_lang_System$$setErr

      void check$java_lang_System$$setErr(Class<?> callerClass, PrintStream err)
    • check$java_lang_System$$setIn

      void check$java_lang_System$$setIn(Class<?> callerClass, InputStream in)
    • check$java_lang_System$$setOut

      void check$java_lang_System$$setOut(Class<?> callerClass, PrintStream out)
    • check$java_lang_Runtime$addShutdownHook

      void check$java_lang_Runtime$addShutdownHook(Class<?> callerClass, Runtime runtime, Thread hook)
    • check$java_lang_Runtime$removeShutdownHook

      void check$java_lang_Runtime$removeShutdownHook(Class<?> callerClass, Runtime runtime, Thread hook)
    • check$java_lang_Thread$$setDefaultUncaughtExceptionHandler

      void check$java_lang_Thread$$setDefaultUncaughtExceptionHandler(Class<?> callerClass, Thread.UncaughtExceptionHandler ueh)
    • check$java_net_DatagramSocket$$setDatagramSocketImplFactory

      void check$java_net_DatagramSocket$$setDatagramSocketImplFactory(Class<?> callerClass, DatagramSocketImplFactory fac)
    • check$java_net_HttpURLConnection$$setFollowRedirects

      void check$java_net_HttpURLConnection$$setFollowRedirects(Class<?> callerClass, boolean set)
    • check$java_net_ServerSocket$$setSocketFactory

      void check$java_net_ServerSocket$$setSocketFactory(Class<?> callerClass, SocketImplFactory fac)
    • check$java_net_Socket$$setSocketImplFactory

      void check$java_net_Socket$$setSocketImplFactory(Class<?> callerClass, SocketImplFactory fac)
    • check$java_net_URL$$setURLStreamHandlerFactory

      void check$java_net_URL$$setURLStreamHandlerFactory(Class<?> callerClass, URLStreamHandlerFactory fac)
    • check$java_net_URLConnection$$setFileNameMap

      void check$java_net_URLConnection$$setFileNameMap(Class<?> callerClass, FileNameMap map)
    • check$java_net_URLConnection$$setContentHandlerFactory

      void check$java_net_URLConnection$$setContentHandlerFactory(Class<?> callerClass, ContentHandlerFactory fac)
    • check$java_text_spi_BreakIteratorProvider$

      void check$java_text_spi_BreakIteratorProvider$(Class<?> callerClass)
    • check$java_text_spi_CollatorProvider$

      void check$java_text_spi_CollatorProvider$(Class<?> callerClass)
    • check$java_text_spi_DateFormatProvider$

      void check$java_text_spi_DateFormatProvider$(Class<?> callerClass)
    • check$java_text_spi_DateFormatSymbolsProvider$

      void check$java_text_spi_DateFormatSymbolsProvider$(Class<?> callerClass)
    • check$java_text_spi_DecimalFormatSymbolsProvider$

      void check$java_text_spi_DecimalFormatSymbolsProvider$(Class<?> callerClass)
    • check$java_text_spi_NumberFormatProvider$

      void check$java_text_spi_NumberFormatProvider$(Class<?> callerClass)
    • check$java_util_spi_CalendarDataProvider$

      void check$java_util_spi_CalendarDataProvider$(Class<?> callerClass)
    • check$java_util_spi_CalendarNameProvider$

      void check$java_util_spi_CalendarNameProvider$(Class<?> callerClass)
    • check$java_util_spi_CurrencyNameProvider$

      void check$java_util_spi_CurrencyNameProvider$(Class<?> callerClass)
    • check$java_util_spi_LocaleNameProvider$

      void check$java_util_spi_LocaleNameProvider$(Class<?> callerClass)
    • check$java_util_spi_LocaleServiceProvider$

      void check$java_util_spi_LocaleServiceProvider$(Class<?> callerClass)
    • check$java_util_spi_TimeZoneNameProvider$

      void check$java_util_spi_TimeZoneNameProvider$(Class<?> callerClass)
    • check$java_util_logging_LogManager$

      void check$java_util_logging_LogManager$(Class<?> callerClass)
    • check$java_util_Locale$$setDefault

      void check$java_util_Locale$$setDefault(Class<?> callerClass, Locale locale)
    • check$java_util_Locale$$setDefault

      void check$java_util_Locale$$setDefault(Class<?> callerClass, Locale.Category category, Locale locale)
    • check$java_util_TimeZone$$setDefault

      void check$java_util_TimeZone$$setDefault(Class<?> callerClass, TimeZone zone)
    • check$jdk_vm_ci_services_JVMCIServiceLocator$$getProviders

      void check$jdk_vm_ci_services_JVMCIServiceLocator$$getProviders(Class<?> callerClass, Class<?> service)
    • check$jdk_vm_ci_services_Services$$load

      void check$jdk_vm_ci_services_Services$$load(Class<?> callerClass, Class<?> service)
    • check$jdk_vm_ci_services_Services$$loadSingle

      void check$jdk_vm_ci_services_Services$$loadSingle(Class<?> callerClass, Class<?> service, boolean required)
    • check$java_nio_charset_spi_CharsetProvider$

      void check$java_nio_charset_spi_CharsetProvider$(Class<?> callerClass)
    • check$java_net_ProxySelector$$setDefault

      void check$java_net_ProxySelector$$setDefault(Class<?> callerClass, ProxySelector ps)
    • check$java_net_ResponseCache$$setDefault

      void check$java_net_ResponseCache$$setDefault(Class<?> callerClass, ResponseCache rc)
    • check$java_net_URL$

      void check$java_net_URL$(Class<?> callerClass, String protocol, String host, int port, String file, URLStreamHandler handler)
    • check$java_net_URL$

      void check$java_net_URL$(Class<?> callerClass, URL context, String spec, URLStreamHandler handler)
    • check$java_net_DatagramSocket$bind

      void check$java_net_DatagramSocket$bind(Class<?> callerClass, DatagramSocket that, SocketAddress addr)
    • check$java_net_DatagramSocket$connect

      void check$java_net_DatagramSocket$connect(Class<?> callerClass, DatagramSocket that, InetAddress addr, int port)
    • check$java_net_DatagramSocket$connect

      void check$java_net_DatagramSocket$connect(Class<?> callerClass, DatagramSocket that, SocketAddress addr)
    • check$java_net_DatagramSocket$joinGroup

      void check$java_net_DatagramSocket$joinGroup(Class<?> callerClass, DatagramSocket that, SocketAddress addr, NetworkInterface ni)
    • check$java_net_DatagramSocket$leaveGroup

      void check$java_net_DatagramSocket$leaveGroup(Class<?> callerClass, DatagramSocket that, SocketAddress addr, NetworkInterface ni)
    • check$java_net_DatagramSocket$receive

      void check$java_net_DatagramSocket$receive(Class<?> callerClass, DatagramSocket that, DatagramPacket p)
    • check$java_net_DatagramSocket$send

      void check$java_net_DatagramSocket$send(Class<?> callerClass, DatagramSocket that, DatagramPacket p)
    • check$java_net_MulticastSocket$joinGroup

      void check$java_net_MulticastSocket$joinGroup(Class<?> callerClass, MulticastSocket that, InetAddress addr)
    • check$java_net_MulticastSocket$joinGroup

      void check$java_net_MulticastSocket$joinGroup(Class<?> callerClass, MulticastSocket that, SocketAddress addr, NetworkInterface ni)
    • check$java_net_MulticastSocket$leaveGroup

      void check$java_net_MulticastSocket$leaveGroup(Class<?> callerClass, MulticastSocket that, InetAddress addr)
    • check$java_net_MulticastSocket$leaveGroup

      void check$java_net_MulticastSocket$leaveGroup(Class<?> callerClass, MulticastSocket that, SocketAddress addr, NetworkInterface ni)
    • check$java_net_MulticastSocket$send

      void check$java_net_MulticastSocket$send(Class<?> callerClass, MulticastSocket that, DatagramPacket p, byte ttl)
    • check$java_net_spi_InetAddressResolverProvider$

      void check$java_net_spi_InetAddressResolverProvider$(Class<?> callerClass)
    • check$java_net_spi_URLStreamHandlerProvider$

      void check$java_net_spi_URLStreamHandlerProvider$(Class<?> callerClass)
    • check$java_net_ServerSocket$

      void check$java_net_ServerSocket$(Class<?> callerClass, int port)
    • check$java_net_ServerSocket$

      void check$java_net_ServerSocket$(Class<?> callerClass, int port, int backlog)
    • check$java_net_ServerSocket$

      void check$java_net_ServerSocket$(Class<?> callerClass, int port, int backlog, InetAddress bindAddr)
    • check$java_net_ServerSocket$accept

      void check$java_net_ServerSocket$accept(Class<?> callerClass, ServerSocket that)
    • check$java_net_ServerSocket$implAccept

      void check$java_net_ServerSocket$implAccept(Class<?> callerClass, ServerSocket that, Socket s)
    • check$java_net_ServerSocket$bind

      void check$java_net_ServerSocket$bind(Class<?> callerClass, ServerSocket that, SocketAddress endpoint)
    • check$java_net_ServerSocket$bind

      void check$java_net_ServerSocket$bind(Class<?> callerClass, ServerSocket that, SocketAddress endpoint, int backlog)
    • check$java_net_Socket$

      void check$java_net_Socket$(Class<?> callerClass, Proxy proxy)
    • check$java_net_Socket$

      void check$java_net_Socket$(Class<?> callerClass, String host, int port)
    • check$java_net_Socket$

      void check$java_net_Socket$(Class<?> callerClass, InetAddress address, int port)
    • check$java_net_Socket$

      void check$java_net_Socket$(Class<?> callerClass, String host, int port, InetAddress localAddr, int localPort)
    • check$java_net_Socket$

      void check$java_net_Socket$(Class<?> callerClass, InetAddress address, int port, InetAddress localAddr, int localPort)
    • check$java_net_Socket$

      void check$java_net_Socket$(Class<?> callerClass, String host, int port, boolean stream)
    • check$java_net_Socket$

      void check$java_net_Socket$(Class<?> callerClass, InetAddress host, int port, boolean stream)
    • check$java_net_Socket$bind

      void check$java_net_Socket$bind(Class<?> callerClass, Socket that, SocketAddress endpoint)
    • check$java_net_Socket$connect

      void check$java_net_Socket$connect(Class<?> callerClass, Socket that, SocketAddress endpoint)
    • check$java_net_Socket$connect

      void check$java_net_Socket$connect(Class<?> callerClass, Socket that, SocketAddress endpoint, int backlog)
    • check$java_net_URL$openConnection

      void check$java_net_URL$openConnection(Class<?> callerClass, URL that)
    • check$java_net_URL$openConnection

      void check$java_net_URL$openConnection(Class<?> callerClass, URL that, Proxy proxy)
    • check$java_net_URL$openStream

      void check$java_net_URL$openStream(Class<?> callerClass, URL that)
    • check$java_net_URL$getContent

      void check$java_net_URL$getContent(Class<?> callerClass, URL that)
    • check$java_net_URL$getContent

      void check$java_net_URL$getContent(Class<?> callerClass, URL that, Class<?>[] classes)
    • check$java_net_URLConnection$getContentLength

      void check$java_net_URLConnection$getContentLength(Class<?> callerClass, URLConnection that)
    • check$java_net_URLConnection$getContentLengthLong

      void check$java_net_URLConnection$getContentLengthLong(Class<?> callerClass, URLConnection that)
    • check$java_net_URLConnection$getContentType

      void check$java_net_URLConnection$getContentType(Class<?> callerClass, URLConnection that)
    • check$java_net_URLConnection$getContentEncoding

      void check$java_net_URLConnection$getContentEncoding(Class<?> callerClass, URLConnection that)
    • check$java_net_URLConnection$getExpiration

      void check$java_net_URLConnection$getExpiration(Class<?> callerClass, URLConnection that)
    • check$java_net_URLConnection$getDate

      void check$java_net_URLConnection$getDate(Class<?> callerClass, URLConnection that)
    • check$java_net_URLConnection$getLastModified

      void check$java_net_URLConnection$getLastModified(Class<?> callerClass, URLConnection that)
    • check$java_net_URLConnection$getHeaderFieldInt

      void check$java_net_URLConnection$getHeaderFieldInt(Class<?> callerClass, URLConnection that, String name, int defaultValue)
    • check$java_net_URLConnection$getHeaderFieldLong

      void check$java_net_URLConnection$getHeaderFieldLong(Class<?> callerClass, URLConnection that, String name, long defaultValue)
    • check$java_net_URLConnection$getHeaderFieldDate

      void check$java_net_URLConnection$getHeaderFieldDate(Class<?> callerClass, URLConnection that, String name, long defaultValue)
    • check$java_net_URLConnection$getContent

      void check$java_net_URLConnection$getContent(Class<?> callerClass, URLConnection that)
    • check$java_net_URLConnection$getContent

      void check$java_net_URLConnection$getContent(Class<?> callerClass, URLConnection that, Class<?>[] classes)
    • check$java_net_HttpURLConnection$getResponseCode

      void check$java_net_HttpURLConnection$getResponseCode(Class<?> callerClass, HttpURLConnection that)
    • check$java_net_HttpURLConnection$getResponseMessage

      void check$java_net_HttpURLConnection$getResponseMessage(Class<?> callerClass, HttpURLConnection that)
    • check$java_net_HttpURLConnection$getHeaderFieldDate

      void check$java_net_HttpURLConnection$getHeaderFieldDate(Class<?> callerClass, HttpURLConnection that, String name, long defaultValue)
    • check$sun_net_www_URLConnection$getHeaderField

      void check$sun_net_www_URLConnection$getHeaderField(Class<?> callerClass, URLConnection that, String name)
    • check$sun_net_www_URLConnection$getHeaderFields

      void check$sun_net_www_URLConnection$getHeaderFields(Class<?> callerClass, URLConnection that)
    • check$sun_net_www_URLConnection$getHeaderFieldKey

      void check$sun_net_www_URLConnection$getHeaderFieldKey(Class<?> callerClass, URLConnection that, int n)
    • check$sun_net_www_URLConnection$getHeaderField

      void check$sun_net_www_URLConnection$getHeaderField(Class<?> callerClass, URLConnection that, int n)
    • check$sun_net_www_URLConnection$getContentType

      void check$sun_net_www_URLConnection$getContentType(Class<?> callerClass, URLConnection that)
    • check$sun_net_www_URLConnection$getContentLength

      void check$sun_net_www_URLConnection$getContentLength(Class<?> callerClass, URLConnection that)
    • check$sun_net_www_protocol_ftp_FtpURLConnection$connect

      void check$sun_net_www_protocol_ftp_FtpURLConnection$connect(Class<?> callerClass, URLConnection that)
    • check$sun_net_www_protocol_ftp_FtpURLConnection$getInputStream

      void check$sun_net_www_protocol_ftp_FtpURLConnection$getInputStream(Class<?> callerClass, URLConnection that)
    • check$sun_net_www_protocol_ftp_FtpURLConnection$getOutputStream

      void check$sun_net_www_protocol_ftp_FtpURLConnection$getOutputStream(Class<?> callerClass, URLConnection that)
    • check$sun_net_www_protocol_http_HttpURLConnection$$openConnectionCheckRedirects

      void check$sun_net_www_protocol_http_HttpURLConnection$$openConnectionCheckRedirects(Class<?> callerClass, URLConnection c)
    • check$sun_net_www_protocol_http_HttpURLConnection$connect

      void check$sun_net_www_protocol_http_HttpURLConnection$connect(Class<?> callerClass, HttpURLConnection that)
    • check$sun_net_www_protocol_http_HttpURLConnection$getOutputStream

      void check$sun_net_www_protocol_http_HttpURLConnection$getOutputStream(Class<?> callerClass, HttpURLConnection that)
    • check$sun_net_www_protocol_http_HttpURLConnection$getInputStream

      void check$sun_net_www_protocol_http_HttpURLConnection$getInputStream(Class<?> callerClass, HttpURLConnection that)
    • check$sun_net_www_protocol_http_HttpURLConnection$getErrorStream

      void check$sun_net_www_protocol_http_HttpURLConnection$getErrorStream(Class<?> callerClass, HttpURLConnection that)
    • check$sun_net_www_protocol_http_HttpURLConnection$getHeaderField

      void check$sun_net_www_protocol_http_HttpURLConnection$getHeaderField(Class<?> callerClass, HttpURLConnection that, String name)
    • check$sun_net_www_protocol_http_HttpURLConnection$getHeaderFields

      void check$sun_net_www_protocol_http_HttpURLConnection$getHeaderFields(Class<?> callerClass, HttpURLConnection that)
    • check$sun_net_www_protocol_http_HttpURLConnection$getHeaderField

      void check$sun_net_www_protocol_http_HttpURLConnection$getHeaderField(Class<?> callerClass, HttpURLConnection that, int n)
    • check$sun_net_www_protocol_http_HttpURLConnection$getHeaderFieldKey

      void check$sun_net_www_protocol_http_HttpURLConnection$getHeaderFieldKey(Class<?> callerClass, HttpURLConnection that, int n)
    • check$sun_net_www_protocol_https_HttpsURLConnectionImpl$connect

      void check$sun_net_www_protocol_https_HttpsURLConnectionImpl$connect(Class<?> callerClass, HttpsURLConnection that)
    • check$sun_net_www_protocol_https_HttpsURLConnectionImpl$getOutputStream

      void check$sun_net_www_protocol_https_HttpsURLConnectionImpl$getOutputStream(Class<?> callerClass, HttpsURLConnection that)
    • check$sun_net_www_protocol_https_HttpsURLConnectionImpl$getInputStream

      void check$sun_net_www_protocol_https_HttpsURLConnectionImpl$getInputStream(Class<?> callerClass, HttpsURLConnection that)
    • check$sun_net_www_protocol_https_HttpsURLConnectionImpl$getErrorStream

      void check$sun_net_www_protocol_https_HttpsURLConnectionImpl$getErrorStream(Class<?> callerClass, HttpsURLConnection that)
    • check$sun_net_www_protocol_https_HttpsURLConnectionImpl$getHeaderField

      void check$sun_net_www_protocol_https_HttpsURLConnectionImpl$getHeaderField(Class<?> callerClass, HttpsURLConnection that, String name)
    • check$sun_net_www_protocol_https_HttpsURLConnectionImpl$getHeaderFields

      void check$sun_net_www_protocol_https_HttpsURLConnectionImpl$getHeaderFields(Class<?> callerClass, HttpsURLConnection that)
    • check$sun_net_www_protocol_https_HttpsURLConnectionImpl$getHeaderField

      void check$sun_net_www_protocol_https_HttpsURLConnectionImpl$getHeaderField(Class<?> callerClass, HttpsURLConnection that, int n)
    • check$sun_net_www_protocol_https_HttpsURLConnectionImpl$getHeaderFieldKey

      void check$sun_net_www_protocol_https_HttpsURLConnectionImpl$getHeaderFieldKey(Class<?> callerClass, HttpsURLConnection that, int n)
    • check$sun_net_www_protocol_https_HttpsURLConnectionImpl$getResponseCode

      void check$sun_net_www_protocol_https_HttpsURLConnectionImpl$getResponseCode(Class<?> callerClass, HttpsURLConnection that)
    • check$sun_net_www_protocol_https_HttpsURLConnectionImpl$getResponseMessage

      void check$sun_net_www_protocol_https_HttpsURLConnectionImpl$getResponseMessage(Class<?> callerClass, HttpsURLConnection that)
    • check$sun_net_www_protocol_https_HttpsURLConnectionImpl$getContentLength

      void check$sun_net_www_protocol_https_HttpsURLConnectionImpl$getContentLength(Class<?> callerClass, HttpsURLConnection that)
    • check$sun_net_www_protocol_https_HttpsURLConnectionImpl$getContentLengthLong

      void check$sun_net_www_protocol_https_HttpsURLConnectionImpl$getContentLengthLong(Class<?> callerClass, HttpsURLConnection that)
    • check$sun_net_www_protocol_https_HttpsURLConnectionImpl$getContentType

      void check$sun_net_www_protocol_https_HttpsURLConnectionImpl$getContentType(Class<?> callerClass, HttpsURLConnection that)
    • check$sun_net_www_protocol_https_HttpsURLConnectionImpl$getContentEncoding

      void check$sun_net_www_protocol_https_HttpsURLConnectionImpl$getContentEncoding(Class<?> callerClass, HttpsURLConnection that)
    • check$sun_net_www_protocol_https_HttpsURLConnectionImpl$getExpiration

      void check$sun_net_www_protocol_https_HttpsURLConnectionImpl$getExpiration(Class<?> callerClass, HttpsURLConnection that)
    • check$sun_net_www_protocol_https_HttpsURLConnectionImpl$getDate

      void check$sun_net_www_protocol_https_HttpsURLConnectionImpl$getDate(Class<?> callerClass, HttpsURLConnection that)
    • check$sun_net_www_protocol_https_HttpsURLConnectionImpl$getLastModified

      void check$sun_net_www_protocol_https_HttpsURLConnectionImpl$getLastModified(Class<?> callerClass, HttpsURLConnection that)
    • check$sun_net_www_protocol_https_HttpsURLConnectionImpl$getHeaderFieldInt

      void check$sun_net_www_protocol_https_HttpsURLConnectionImpl$getHeaderFieldInt(Class<?> callerClass, HttpsURLConnection that, String name, int defaultValue)
    • check$sun_net_www_protocol_https_HttpsURLConnectionImpl$getHeaderFieldLong

      void check$sun_net_www_protocol_https_HttpsURLConnectionImpl$getHeaderFieldLong(Class<?> callerClass, HttpsURLConnection that, String name, long defaultValue)
    • check$sun_net_www_protocol_https_HttpsURLConnectionImpl$getHeaderFieldDate

      void check$sun_net_www_protocol_https_HttpsURLConnectionImpl$getHeaderFieldDate(Class<?> callerClass, HttpsURLConnection that, String name, long defaultValue)
    • check$sun_net_www_protocol_https_HttpsURLConnectionImpl$getContent

      void check$sun_net_www_protocol_https_HttpsURLConnectionImpl$getContent(Class<?> callerClass, HttpsURLConnection that)
    • check$sun_net_www_protocol_https_HttpsURLConnectionImpl$getContent

      void check$sun_net_www_protocol_https_HttpsURLConnectionImpl$getContent(Class<?> callerClass, HttpsURLConnection that, Class<?>[] classes)
    • check$sun_net_www_protocol_https_AbstractDelegateHttpsURLConnection$connect

      void check$sun_net_www_protocol_https_AbstractDelegateHttpsURLConnection$connect(Class<?> callerClass, HttpURLConnection that)
    • check$sun_net_www_protocol_mailto_MailToURLConnection$connect

      void check$sun_net_www_protocol_mailto_MailToURLConnection$connect(Class<?> callerClass, URLConnection that)
    • check$sun_net_www_protocol_mailto_MailToURLConnection$getOutputStream

      void check$sun_net_www_protocol_mailto_MailToURLConnection$getOutputStream(Class<?> callerClass, URLConnection that)
    • check$jdk_internal_net_http_HttpClientImpl$send

      void check$jdk_internal_net_http_HttpClientImpl$send(Class<?> callerClass, HttpClient that, HttpRequest request, HttpResponse.BodyHandler<?> responseBodyHandler)
    • check$jdk_internal_net_http_HttpClientImpl$sendAsync

      void check$jdk_internal_net_http_HttpClientImpl$sendAsync(Class<?> callerClass, HttpClient that, HttpRequest userRequest, HttpResponse.BodyHandler<?> responseHandler)
    • check$jdk_internal_net_http_HttpClientImpl$sendAsync

      void check$jdk_internal_net_http_HttpClientImpl$sendAsync(Class<?> callerClass, HttpClient that, HttpRequest userRequest, HttpResponse.BodyHandler<?> responseHandler, HttpResponse.PushPromiseHandler<?> pushPromiseHandler)
    • check$jdk_internal_net_http_HttpClientFacade$send

      void check$jdk_internal_net_http_HttpClientFacade$send(Class<?> callerClass, HttpClient that, HttpRequest request, HttpResponse.BodyHandler<?> responseBodyHandler)
    • check$jdk_internal_net_http_HttpClientFacade$sendAsync

      void check$jdk_internal_net_http_HttpClientFacade$sendAsync(Class<?> callerClass, HttpClient that, HttpRequest userRequest, HttpResponse.BodyHandler<?> responseHandler)
    • check$jdk_internal_net_http_HttpClientFacade$sendAsync

      void check$jdk_internal_net_http_HttpClientFacade$sendAsync(Class<?> callerClass, HttpClient that, HttpRequest userRequest, HttpResponse.BodyHandler<?> responseHandler, HttpResponse.PushPromiseHandler<?> pushPromiseHandler)
    • check$java_security_cert_CertStore$$getInstance

      void check$java_security_cert_CertStore$$getInstance(Class<?> callerClass, String type, CertStoreParameters params)
    • check$java_nio_channels_spi_AbstractSelectableChannel$register

      void check$java_nio_channels_spi_AbstractSelectableChannel$register(Class<?> callerClass, SelectableChannel that, Selector sel, int ops, Object att)
    • check$java_nio_channels_SelectableChannel$register

      void check$java_nio_channels_SelectableChannel$register(Class<?> callerClass, SelectableChannel that, Selector sel, int ops)
    • check$java_nio_channels_AsynchronousServerSocketChannel$bind

      void check$java_nio_channels_AsynchronousServerSocketChannel$bind(Class<?> callerClass, AsynchronousServerSocketChannel that, SocketAddress local)
    • check$sun_nio_ch_AsynchronousServerSocketChannelImpl$bind

      void check$sun_nio_ch_AsynchronousServerSocketChannelImpl$bind(Class<?> callerClass, AsynchronousServerSocketChannel that, SocketAddress local, int backlog)
    • check$sun_nio_ch_AsynchronousSocketChannelImpl$bind

      void check$sun_nio_ch_AsynchronousSocketChannelImpl$bind(Class<?> callerClass, AsynchronousSocketChannel that, SocketAddress local)
    • check$sun_nio_ch_DatagramChannelImpl$bind

      void check$sun_nio_ch_DatagramChannelImpl$bind(Class<?> callerClass, DatagramChannel that, SocketAddress local)
    • check$java_nio_channels_ServerSocketChannel$bind

      void check$java_nio_channels_ServerSocketChannel$bind(Class<?> callerClass, ServerSocketChannel that, SocketAddress local)
    • check$sun_nio_ch_ServerSocketChannelImpl$bind

      void check$sun_nio_ch_ServerSocketChannelImpl$bind(Class<?> callerClass, ServerSocketChannel that, SocketAddress local, int backlog)
    • check$java_nio_channels_SocketChannel$$open

      void check$java_nio_channels_SocketChannel$$open(Class<?> callerClass)
    • check$java_nio_channels_SocketChannel$$open

      void check$java_nio_channels_SocketChannel$$open(Class<?> callerClass, ProtocolFamily family)
    • check$java_nio_channels_SocketChannel$$open

      void check$java_nio_channels_SocketChannel$$open(Class<?> callerClass, SocketAddress remote)
    • check$sun_nio_ch_SocketChannelImpl$bind

      void check$sun_nio_ch_SocketChannelImpl$bind(Class<?> callerClass, SocketChannel that, SocketAddress local)
    • check$sun_nio_ch_SocketChannelImpl$connect

      void check$sun_nio_ch_SocketChannelImpl$connect(Class<?> callerClass, SocketChannel that, SocketAddress remote)
    • check$sun_nio_ch_AsynchronousSocketChannelImpl$connect

      void check$sun_nio_ch_AsynchronousSocketChannelImpl$connect(Class<?> callerClass, AsynchronousSocketChannel that, SocketAddress remote)
    • check$sun_nio_ch_AsynchronousSocketChannelImpl$connect

      void check$sun_nio_ch_AsynchronousSocketChannelImpl$connect(Class<?> callerClass, AsynchronousSocketChannel that, SocketAddress remote, Object attachment, CompletionHandler<Void,Object> handler)
    • check$sun_nio_ch_DatagramChannelImpl$connect

      void check$sun_nio_ch_DatagramChannelImpl$connect(Class<?> callerClass, DatagramChannel that, SocketAddress remote)
    • check$sun_nio_ch_ServerSocketChannelImpl$accept

      void check$sun_nio_ch_ServerSocketChannelImpl$accept(Class<?> callerClass, ServerSocketChannel that)
    • check$sun_nio_ch_AsynchronousServerSocketChannelImpl$accept

      void check$sun_nio_ch_AsynchronousServerSocketChannelImpl$accept(Class<?> callerClass, AsynchronousServerSocketChannel that)
    • check$sun_nio_ch_AsynchronousServerSocketChannelImpl$accept

      void check$sun_nio_ch_AsynchronousServerSocketChannelImpl$accept(Class<?> callerClass, AsynchronousServerSocketChannel that, Object attachment, CompletionHandler<AsynchronousSocketChannel,Object> handler)
    • check$sun_nio_ch_DatagramChannelImpl$send

      void check$sun_nio_ch_DatagramChannelImpl$send(Class<?> callerClass, DatagramChannel that, ByteBuffer src, SocketAddress target)
    • check$sun_nio_ch_DatagramChannelImpl$receive

      void check$sun_nio_ch_DatagramChannelImpl$receive(Class<?> callerClass, DatagramChannel that, ByteBuffer dst)
    • check$java_nio_channels_spi_SelectorProvider$

      void check$java_nio_channels_spi_SelectorProvider$(Class<?> callerClass)
    • check$java_nio_channels_spi_AsynchronousChannelProvider$

      void check$java_nio_channels_spi_AsynchronousChannelProvider$(Class<?> callerClass)
    • checkSelectorProviderInheritedChannel

      void checkSelectorProviderInheritedChannel(Class<?> callerClass, SelectorProvider that)
    • checkSelectorProviderOpenDatagramChannel

      void checkSelectorProviderOpenDatagramChannel(Class<?> callerClass, SelectorProvider that)
    • checkSelectorProviderOpenDatagramChannel

      void checkSelectorProviderOpenDatagramChannel(Class<?> callerClass, SelectorProvider that, ProtocolFamily family)
    • checkSelectorProviderOpenServerSocketChannel

      void checkSelectorProviderOpenServerSocketChannel(Class<?> callerClass, SelectorProvider that)
    • checkSelectorProviderOpenServerSocketChannel

      void checkSelectorProviderOpenServerSocketChannel(Class<?> callerClass, SelectorProvider that, ProtocolFamily family)
    • checkSelectorProviderOpenSocketChannel

      void checkSelectorProviderOpenSocketChannel(Class<?> callerClass, SelectorProvider that)
    • checkSelectorProviderOpenSocketChannel

      void checkSelectorProviderOpenSocketChannel(Class<?> callerClass, SelectorProvider that, ProtocolFamily family)
    • check$java_lang_Runtime$load

      void check$java_lang_Runtime$load(Class<?> callerClass, Runtime that, String filename)
    • check$java_lang_Runtime$loadLibrary

      void check$java_lang_Runtime$loadLibrary(Class<?> callerClass, Runtime that, String libname)
    • check$java_lang_System$$load

      void check$java_lang_System$$load(Class<?> callerClass, String filename)
    • check$java_lang_System$$loadLibrary

      void check$java_lang_System$$loadLibrary(Class<?> callerClass, String libname)
    • check$jdk_internal_foreign_layout_ValueLayouts$OfAddressImpl$withTargetLayout

      void check$jdk_internal_foreign_layout_ValueLayouts$OfAddressImpl$withTargetLayout(Class<?> callerClass, AddressLayoutPREVIEW that, MemoryLayoutPREVIEW memoryLayout)
    • check$jdk_internal_foreign_abi_AbstractLinker$downcallHandle

      void check$jdk_internal_foreign_abi_AbstractLinker$downcallHandle(Class<?> callerClass, LinkerPREVIEW that, FunctionDescriptorPREVIEW function, Linker.OptionPREVIEW... options)
    • check$jdk_internal_foreign_abi_AbstractLinker$downcallHandle

      void check$jdk_internal_foreign_abi_AbstractLinker$downcallHandle(Class<?> callerClass, LinkerPREVIEW that, MemorySegmentPREVIEW address, FunctionDescriptorPREVIEW function, Linker.OptionPREVIEW... options)
    • check$jdk_internal_foreign_abi_AbstractLinker$upcallStub

      void check$jdk_internal_foreign_abi_AbstractLinker$upcallStub(Class<?> callerClass, LinkerPREVIEW that, MethodHandle target, FunctionDescriptorPREVIEW function, ArenaPREVIEW arena, Linker.OptionPREVIEW... options)
    • check$jdk_internal_foreign_AbstractMemorySegmentImpl$reinterpret

      void check$jdk_internal_foreign_AbstractMemorySegmentImpl$reinterpret(Class<?> callerClass, MemorySegmentPREVIEW that, long newSize)
    • check$jdk_internal_foreign_AbstractMemorySegmentImpl$reinterpret

      void check$jdk_internal_foreign_AbstractMemorySegmentImpl$reinterpret(Class<?> callerClass, MemorySegmentPREVIEW that, long newSize, ArenaPREVIEW arena, Consumer<MemorySegmentPREVIEW> cleanup)
    • check$jdk_internal_foreign_AbstractMemorySegmentImpl$reinterpret

      void check$jdk_internal_foreign_AbstractMemorySegmentImpl$reinterpret(Class<?> callerClass, MemorySegmentPREVIEW that, ArenaPREVIEW arena, Consumer<MemorySegmentPREVIEW> cleanup)
    • check$java_lang_foreign_SymbolLookup$$libraryLookup

      void check$java_lang_foreign_SymbolLookup$$libraryLookup(Class<?> callerClass, String name, ArenaPREVIEW arena)
    • check$java_lang_foreign_SymbolLookup$$libraryLookup

      void check$java_lang_foreign_SymbolLookup$$libraryLookup(Class<?> callerClass, Path path, ArenaPREVIEW arena)
    • check$java_lang_ModuleLayer$Controller$enableNativeAccess

      void check$java_lang_ModuleLayer$Controller$enableNativeAccess(Class<?> callerClass, ModuleLayer.Controller that, Module target)
    • check$java_io_File$canExecute

      void check$java_io_File$canExecute(Class<?> callerClass, File file)
    • check$java_io_File$canRead

      void check$java_io_File$canRead(Class<?> callerClass, File file)
    • check$java_io_File$canWrite

      void check$java_io_File$canWrite(Class<?> callerClass, File file)
    • check$java_io_File$createNewFile

      void check$java_io_File$createNewFile(Class<?> callerClass, File file)
    • check$java_io_File$$createTempFile

      void check$java_io_File$$createTempFile(Class<?> callerClass, String prefix, String suffix)
    • check$java_io_File$$createTempFile

      void check$java_io_File$$createTempFile(Class<?> callerClass, String prefix, String suffix, File directory)
    • check$java_io_File$delete

      void check$java_io_File$delete(Class<?> callerClass, File file)
    • check$java_io_File$deleteOnExit

      void check$java_io_File$deleteOnExit(Class<?> callerClass, File file)
    • check$java_io_File$exists

      void check$java_io_File$exists(Class<?> callerClass, File file)
    • check$java_io_File$isDirectory

      void check$java_io_File$isDirectory(Class<?> callerClass, File file)
    • check$java_io_File$isFile

      void check$java_io_File$isFile(Class<?> callerClass, File file)
    • check$java_io_File$isHidden

      void check$java_io_File$isHidden(Class<?> callerClass, File file)
    • check$java_io_File$lastModified

      void check$java_io_File$lastModified(Class<?> callerClass, File file)
    • check$java_io_File$length

      void check$java_io_File$length(Class<?> callerClass, File file)
    • check$java_io_File$list

      void check$java_io_File$list(Class<?> callerClass, File file)
    • check$java_io_File$list

      void check$java_io_File$list(Class<?> callerClass, File file, FilenameFilter filter)
    • check$java_io_File$listFiles

      void check$java_io_File$listFiles(Class<?> callerClass, File file)
    • check$java_io_File$listFiles

      void check$java_io_File$listFiles(Class<?> callerClass, File file, FileFilter filter)
    • check$java_io_File$listFiles

      void check$java_io_File$listFiles(Class<?> callerClass, File file, FilenameFilter filter)
    • check$java_io_File$mkdir

      void check$java_io_File$mkdir(Class<?> callerClass, File file)
    • check$java_io_File$mkdirs

      void check$java_io_File$mkdirs(Class<?> callerClass, File file)
    • check$java_io_File$renameTo

      void check$java_io_File$renameTo(Class<?> callerClass, File file, File dest)
    • check$java_io_File$setExecutable

      void check$java_io_File$setExecutable(Class<?> callerClass, File file, boolean executable)
    • check$java_io_File$setExecutable

      void check$java_io_File$setExecutable(Class<?> callerClass, File file, boolean executable, boolean ownerOnly)
    • check$java_io_File$setLastModified

      void check$java_io_File$setLastModified(Class<?> callerClass, File file, long time)
    • check$java_io_File$setReadable

      void check$java_io_File$setReadable(Class<?> callerClass, File file, boolean readable)
    • check$java_io_File$setReadable

      void check$java_io_File$setReadable(Class<?> callerClass, File file, boolean readable, boolean ownerOnly)
    • check$java_io_File$setReadOnly

      void check$java_io_File$setReadOnly(Class<?> callerClass, File file)
    • check$java_io_File$setWritable

      void check$java_io_File$setWritable(Class<?> callerClass, File file, boolean writable)
    • check$java_io_File$setWritable

      void check$java_io_File$setWritable(Class<?> callerClass, File file, boolean writable, boolean ownerOnly)
    • check$java_io_FileInputStream$

      void check$java_io_FileInputStream$(Class<?> callerClass, File file)
    • check$java_io_FileInputStream$

      void check$java_io_FileInputStream$(Class<?> callerClass, FileDescriptor fd)
    • check$java_io_FileInputStream$

      void check$java_io_FileInputStream$(Class<?> callerClass, String name)
    • check$java_io_FileOutputStream$

      void check$java_io_FileOutputStream$(Class<?> callerClass, File file)
    • check$java_io_FileOutputStream$

      void check$java_io_FileOutputStream$(Class<?> callerClass, File file, boolean append)
    • check$java_io_FileOutputStream$

      void check$java_io_FileOutputStream$(Class<?> callerClass, FileDescriptor fd)
    • check$java_io_FileOutputStream$

      void check$java_io_FileOutputStream$(Class<?> callerClass, String name)
    • check$java_io_FileOutputStream$

      void check$java_io_FileOutputStream$(Class<?> callerClass, String name, boolean append)
    • check$java_io_FileReader$

      void check$java_io_FileReader$(Class<?> callerClass, File file)
    • check$java_io_FileReader$

      void check$java_io_FileReader$(Class<?> callerClass, File file, Charset charset)
    • check$java_io_FileReader$

      void check$java_io_FileReader$(Class<?> callerClass, FileDescriptor fd)
    • check$java_io_FileReader$

      void check$java_io_FileReader$(Class<?> callerClass, String name)
    • check$java_io_FileReader$

      void check$java_io_FileReader$(Class<?> callerClass, String name, Charset charset)
    • check$java_io_FileWriter$

      void check$java_io_FileWriter$(Class<?> callerClass, File file)
    • check$java_io_FileWriter$

      void check$java_io_FileWriter$(Class<?> callerClass, File file, boolean append)
    • check$java_io_FileWriter$

      void check$java_io_FileWriter$(Class<?> callerClass, File file, Charset charset)
    • check$java_io_FileWriter$

      void check$java_io_FileWriter$(Class<?> callerClass, File file, Charset charset, boolean append)
    • check$java_io_FileWriter$

      void check$java_io_FileWriter$(Class<?> callerClass, FileDescriptor fd)
    • check$java_io_FileWriter$

      void check$java_io_FileWriter$(Class<?> callerClass, String name)
    • check$java_io_FileWriter$

      void check$java_io_FileWriter$(Class<?> callerClass, String name, boolean append)
    • check$java_io_FileWriter$

      void check$java_io_FileWriter$(Class<?> callerClass, String name, Charset charset)
    • check$java_io_FileWriter$

      void check$java_io_FileWriter$(Class<?> callerClass, String name, Charset charset, boolean append)
    • check$java_io_RandomAccessFile$

      void check$java_io_RandomAccessFile$(Class<?> callerClass, String name, String mode)
    • check$java_io_RandomAccessFile$

      void check$java_io_RandomAccessFile$(Class<?> callerClass, File file, String mode)
    • check$java_security_KeyStore$$getInstance

      void check$java_security_KeyStore$$getInstance(Class<?> callerClass, File file, char[] password)
    • check$java_security_KeyStore$$getInstance

      void check$java_security_KeyStore$$getInstance(Class<?> callerClass, File file, KeyStore.LoadStoreParameter param)
    • check$java_security_KeyStore$Builder$$newInstance

      void check$java_security_KeyStore$Builder$$newInstance(Class<?> callerClass, File file, KeyStore.ProtectionParameter protection)
    • check$java_security_KeyStore$Builder$$newInstance

      void check$java_security_KeyStore$Builder$$newInstance(Class<?> callerClass, String type, Provider provider, File file, KeyStore.ProtectionParameter protection)
    • check$java_util_Scanner$

      void check$java_util_Scanner$(Class<?> callerClass, File source)
    • check$java_util_Scanner$

      void check$java_util_Scanner$(Class<?> callerClass, File source, String charsetName)
    • check$java_util_Scanner$

      void check$java_util_Scanner$(Class<?> callerClass, File source, Charset charset)
    • check$java_util_jar_JarFile$

      void check$java_util_jar_JarFile$(Class<?> callerClass, String name)
    • check$java_util_jar_JarFile$

      void check$java_util_jar_JarFile$(Class<?> callerClass, String name, boolean verify)
    • check$java_util_jar_JarFile$

      void check$java_util_jar_JarFile$(Class<?> callerClass, File file)
    • check$java_util_jar_JarFile$

      void check$java_util_jar_JarFile$(Class<?> callerClass, File file, boolean verify)
    • check$java_util_jar_JarFile$

      void check$java_util_jar_JarFile$(Class<?> callerClass, File file, boolean verify, int mode)
    • check$java_util_jar_JarFile$

      void check$java_util_jar_JarFile$(Class<?> callerClass, File file, boolean verify, int mode, Runtime.Version version)
    • check$java_util_zip_ZipFile$

      void check$java_util_zip_ZipFile$(Class<?> callerClass, String name)
    • check$java_util_zip_ZipFile$

      void check$java_util_zip_ZipFile$(Class<?> callerClass, String name, Charset charset)
    • check$java_util_zip_ZipFile$

      void check$java_util_zip_ZipFile$(Class<?> callerClass, File file)
    • check$java_util_zip_ZipFile$

      void check$java_util_zip_ZipFile$(Class<?> callerClass, File file, int mode)
    • check$java_util_zip_ZipFile$

      void check$java_util_zip_ZipFile$(Class<?> callerClass, File file, Charset charset)
    • check$java_util_zip_ZipFile$

      void check$java_util_zip_ZipFile$(Class<?> callerClass, File file, int mode, Charset charset)
    • check$java_nio_channels_FileChannel$

      void check$java_nio_channels_FileChannel$(Class<?> callerClass)
    • check$java_nio_channels_FileChannel$$open

      void check$java_nio_channels_FileChannel$$open(Class<?> callerClass, Path path, Set<? extends OpenOption> options, FileAttribute<?>... attrs)
    • check$java_nio_channels_FileChannel$$open

      void check$java_nio_channels_FileChannel$$open(Class<?> callerClass, Path path, OpenOption... options)
    • check$java_nio_channels_AsynchronousFileChannel$

      void check$java_nio_channels_AsynchronousFileChannel$(Class<?> callerClass)
    • check$java_nio_channels_AsynchronousFileChannel$$open

      void check$java_nio_channels_AsynchronousFileChannel$$open(Class<?> callerClass, Path path, Set<? extends OpenOption> options, ExecutorService executor, FileAttribute<?>... attrs)
    • check$java_nio_channels_AsynchronousFileChannel$$open

      void check$java_nio_channels_AsynchronousFileChannel$$open(Class<?> callerClass, Path path, OpenOption... options)
    • check$jdk_nio_Channels$$readWriteSelectableChannel

      void check$jdk_nio_Channels$$readWriteSelectableChannel(Class<?> callerClass, FileDescriptor fd, Channels.SelectableChannelCloser closer)
    • check$java_nio_file_Files$$getOwner

      void check$java_nio_file_Files$$getOwner(Class<?> callerClass, Path path, LinkOption... options)
    • check$java_nio_file_Files$$probeContentType

      void check$java_nio_file_Files$$probeContentType(Class<?> callerClass, Path path)
    • check$java_nio_file_Files$$setOwner

      void check$java_nio_file_Files$$setOwner(Class<?> callerClass, Path path, UserPrincipal principal)
    • check$java_nio_file_Files$$newInputStream

      void check$java_nio_file_Files$$newInputStream(Class<?> callerClass, Path path, OpenOption... options)
    • check$java_nio_file_Files$$newOutputStream

      void check$java_nio_file_Files$$newOutputStream(Class<?> callerClass, Path path, OpenOption... options)
    • check$java_nio_file_Files$$newByteChannel

      void check$java_nio_file_Files$$newByteChannel(Class<?> callerClass, Path path, Set<? extends OpenOption> options, FileAttribute<?>... attrs)
    • check$java_nio_file_Files$$newByteChannel

      void check$java_nio_file_Files$$newByteChannel(Class<?> callerClass, Path path, OpenOption... options)
    • check$java_nio_file_Files$$newDirectoryStream

      void check$java_nio_file_Files$$newDirectoryStream(Class<?> callerClass, Path dir)
    • check$java_nio_file_Files$$newDirectoryStream

      void check$java_nio_file_Files$$newDirectoryStream(Class<?> callerClass, Path dir, String glob)
    • check$java_nio_file_Files$$newDirectoryStream

      void check$java_nio_file_Files$$newDirectoryStream(Class<?> callerClass, Path dir, DirectoryStream.Filter<? super Path> filter)
    • check$java_nio_file_Files$$createFile

      void check$java_nio_file_Files$$createFile(Class<?> callerClass, Path path, FileAttribute<?>... attrs)
    • check$java_nio_file_Files$$createDirectory

      void check$java_nio_file_Files$$createDirectory(Class<?> callerClass, Path dir, FileAttribute<?>... attrs)
    • check$java_nio_file_Files$$createDirectories

      void check$java_nio_file_Files$$createDirectories(Class<?> callerClass, Path dir, FileAttribute<?>... attrs)
    • check$java_nio_file_Files$$createTempFile

      void check$java_nio_file_Files$$createTempFile(Class<?> callerClass, Path dir, String prefix, String suffix, FileAttribute<?>... attrs)
    • check$java_nio_file_Files$$createTempFile

      void check$java_nio_file_Files$$createTempFile(Class<?> callerClass, String prefix, String suffix, FileAttribute<?>... attrs)
    • check$java_nio_file_Files$$createTempDirectory

      void check$java_nio_file_Files$$createTempDirectory(Class<?> callerClass, Path dir, String prefix, FileAttribute<?>... attrs)
    • check$java_nio_file_Files$$createTempDirectory

      void check$java_nio_file_Files$$createTempDirectory(Class<?> callerClass, String prefix, FileAttribute<?>... attrs)
    • check$java_nio_file_Files$$createSymbolicLink

      void check$java_nio_file_Files$$createSymbolicLink(Class<?> callerClass, Path link, Path target, FileAttribute<?>... attrs)
    • check$java_nio_file_Files$$createLink

      void check$java_nio_file_Files$$createLink(Class<?> callerClass, Path link, Path existing)
    • check$java_nio_file_Files$$delete

      void check$java_nio_file_Files$$delete(Class<?> callerClass, Path path)
    • check$java_nio_file_Files$$deleteIfExists

      void check$java_nio_file_Files$$deleteIfExists(Class<?> callerClass, Path path)
    • check$java_nio_file_Files$$copy

      void check$java_nio_file_Files$$copy(Class<?> callerClass, Path source, Path target, CopyOption... options)
    • check$java_nio_file_Files$$move

      void check$java_nio_file_Files$$move(Class<?> callerClass, Path source, Path target, CopyOption... options)
    • check$java_nio_file_Files$$readSymbolicLink

      void check$java_nio_file_Files$$readSymbolicLink(Class<?> callerClass, Path link)
    • check$java_nio_file_Files$$getFileStore

      void check$java_nio_file_Files$$getFileStore(Class<?> callerClass, Path path)
    • check$java_nio_file_Files$$isSameFile

      void check$java_nio_file_Files$$isSameFile(Class<?> callerClass, Path path, Path path2)
    • check$java_nio_file_Files$$mismatch

      void check$java_nio_file_Files$$mismatch(Class<?> callerClass, Path path, Path path2)
    • check$java_nio_file_Files$$isHidden

      void check$java_nio_file_Files$$isHidden(Class<?> callerClass, Path path)
    • check$java_nio_file_Files$$getFileAttributeView

      void check$java_nio_file_Files$$getFileAttributeView(Class<?> callerClass, Path path, Class<? extends FileAttributeView> type, LinkOption... options)
    • check$java_nio_file_Files$$readAttributes

      void check$java_nio_file_Files$$readAttributes(Class<?> callerClass, Path path, Class<? extends BasicFileAttributes> type, LinkOption... options)
    • check$java_nio_file_Files$$setAttribute

      void check$java_nio_file_Files$$setAttribute(Class<?> callerClass, Path path, String attribute, Object value, LinkOption... options)
    • check$java_nio_file_Files$$getAttribute

      void check$java_nio_file_Files$$getAttribute(Class<?> callerClass, Path path, String attribute, LinkOption... options)
    • check$java_nio_file_Files$$readAttributes

      void check$java_nio_file_Files$$readAttributes(Class<?> callerClass, Path path, String attributes, LinkOption... options)
    • check$java_nio_file_Files$$getPosixFilePermissions

      void check$java_nio_file_Files$$getPosixFilePermissions(Class<?> callerClass, Path path, LinkOption... options)
    • check$java_nio_file_Files$$setPosixFilePermissions

      void check$java_nio_file_Files$$setPosixFilePermissions(Class<?> callerClass, Path path, Set<PosixFilePermission> perms)
    • check$java_nio_file_Files$$isSymbolicLink

      void check$java_nio_file_Files$$isSymbolicLink(Class<?> callerClass, Path path)
    • check$java_nio_file_Files$$isDirectory

      void check$java_nio_file_Files$$isDirectory(Class<?> callerClass, Path path, LinkOption... options)
    • check$java_nio_file_Files$$isRegularFile

      void check$java_nio_file_Files$$isRegularFile(Class<?> callerClass, Path path, LinkOption... options)
    • check$java_nio_file_Files$$getLastModifiedTime

      void check$java_nio_file_Files$$getLastModifiedTime(Class<?> callerClass, Path path, LinkOption... options)
    • check$java_nio_file_Files$$setLastModifiedTime

      void check$java_nio_file_Files$$setLastModifiedTime(Class<?> callerClass, Path path, FileTime time)
    • check$java_nio_file_Files$$size

      void check$java_nio_file_Files$$size(Class<?> callerClass, Path path)
    • check$java_nio_file_Files$$exists

      void check$java_nio_file_Files$$exists(Class<?> callerClass, Path path, LinkOption... options)
    • check$java_nio_file_Files$$notExists

      void check$java_nio_file_Files$$notExists(Class<?> callerClass, Path path, LinkOption... options)
    • check$java_nio_file_Files$$isReadable

      void check$java_nio_file_Files$$isReadable(Class<?> callerClass, Path path)
    • check$java_nio_file_Files$$isWritable

      void check$java_nio_file_Files$$isWritable(Class<?> callerClass, Path path)
    • check$java_nio_file_Files$$isExecutable

      void check$java_nio_file_Files$$isExecutable(Class<?> callerClass, Path path)
    • check$java_nio_file_Files$$walkFileTree

      void check$java_nio_file_Files$$walkFileTree(Class<?> callerClass, Path start, Set<FileVisitOption> options, int maxDepth, FileVisitor<? super Path> visitor)
    • check$java_nio_file_Files$$walkFileTree

      void check$java_nio_file_Files$$walkFileTree(Class<?> callerClass, Path start, FileVisitor<? super Path> visitor)
    • check$java_nio_file_Files$$newBufferedReader

      void check$java_nio_file_Files$$newBufferedReader(Class<?> callerClass, Path path, Charset cs)
    • check$java_nio_file_Files$$newBufferedReader

      void check$java_nio_file_Files$$newBufferedReader(Class<?> callerClass, Path path)
    • check$java_nio_file_Files$$newBufferedWriter

      void check$java_nio_file_Files$$newBufferedWriter(Class<?> callerClass, Path path, Charset cs, OpenOption... options)
    • check$java_nio_file_Files$$newBufferedWriter

      void check$java_nio_file_Files$$newBufferedWriter(Class<?> callerClass, Path path, OpenOption... options)
    • check$java_nio_file_Files$$copy

      void check$java_nio_file_Files$$copy(Class<?> callerClass, InputStream in, Path target, CopyOption... options)
    • check$java_nio_file_Files$$copy

      void check$java_nio_file_Files$$copy(Class<?> callerClass, Path source, OutputStream out)
    • check$java_nio_file_Files$$readAllBytes

      void check$java_nio_file_Files$$readAllBytes(Class<?> callerClass, Path path)
    • check$java_nio_file_Files$$readString

      void check$java_nio_file_Files$$readString(Class<?> callerClass, Path path)
    • check$java_nio_file_Files$$readString

      void check$java_nio_file_Files$$readString(Class<?> callerClass, Path path, Charset cs)
    • check$java_nio_file_Files$$readAllLines

      void check$java_nio_file_Files$$readAllLines(Class<?> callerClass, Path path, Charset cs)
    • check$java_nio_file_Files$$readAllLines

      void check$java_nio_file_Files$$readAllLines(Class<?> callerClass, Path path)
    • check$java_nio_file_Files$$write

      void check$java_nio_file_Files$$write(Class<?> callerClass, Path path, byte[] bytes, OpenOption... options)
    • check$java_nio_file_Files$$write

      void check$java_nio_file_Files$$write(Class<?> callerClass, Path path, Iterable<? extends CharSequence> lines, Charset cs, OpenOption... options)
    • check$java_nio_file_Files$$write

      void check$java_nio_file_Files$$write(Class<?> callerClass, Path path, Iterable<? extends CharSequence> lines, OpenOption... options)
    • check$java_nio_file_Files$$writeString

      void check$java_nio_file_Files$$writeString(Class<?> callerClass, Path path, CharSequence csq, OpenOption... options)
    • check$java_nio_file_Files$$writeString

      void check$java_nio_file_Files$$writeString(Class<?> callerClass, Path path, CharSequence csq, Charset cs, OpenOption... options)
    • check$java_nio_file_Files$$list

      void check$java_nio_file_Files$$list(Class<?> callerClass, Path dir)
    • check$java_nio_file_Files$$walk

      void check$java_nio_file_Files$$walk(Class<?> callerClass, Path start, int maxDepth, FileVisitOption... options)
    • check$java_nio_file_Files$$walk

      void check$java_nio_file_Files$$walk(Class<?> callerClass, Path start, FileVisitOption... options)
    • check$java_nio_file_Files$$find

      void check$java_nio_file_Files$$find(Class<?> callerClass, Path start, int maxDepth, BiPredicate<Path,BasicFileAttributes> matcher, FileVisitOption... options)
    • check$java_nio_file_Files$$lines

      void check$java_nio_file_Files$$lines(Class<?> callerClass, Path path, Charset cs)
    • check$java_nio_file_Files$$lines

      void check$java_nio_file_Files$$lines(Class<?> callerClass, Path path)
    • check$java_nio_file_spi_FileSystemProvider$

      void check$java_nio_file_spi_FileSystemProvider$(Class<?> callerClass)
    • check$java_util_logging_FileHandler$

      void check$java_util_logging_FileHandler$(Class<?> callerClass)
    • check$java_util_logging_FileHandler$

      void check$java_util_logging_FileHandler$(Class<?> callerClass, String pattern)
    • check$java_util_logging_FileHandler$

      void check$java_util_logging_FileHandler$(Class<?> callerClass, String pattern, boolean append)
    • check$java_util_logging_FileHandler$

      void check$java_util_logging_FileHandler$(Class<?> callerClass, String pattern, int limit, int count)
    • check$java_util_logging_FileHandler$

      void check$java_util_logging_FileHandler$(Class<?> callerClass, String pattern, int limit, int count, boolean append)
    • check$java_util_logging_FileHandler$

      void check$java_util_logging_FileHandler$(Class<?> callerClass, String pattern, long limit, int count, boolean append)
    • check$java_util_logging_FileHandler$close

      void check$java_util_logging_FileHandler$close(Class<?> callerClass, FileHandler that)
    • check$java_net_http_HttpRequest$BodyPublishers$$ofFile

      void check$java_net_http_HttpRequest$BodyPublishers$$ofFile(Class<?> callerClass, Path path)
    • check$java_net_http_HttpResponse$BodyHandlers$$ofFile

      void check$java_net_http_HttpResponse$BodyHandlers$$ofFile(Class<?> callerClass, Path path)
    • check$java_net_http_HttpResponse$BodyHandlers$$ofFile

      void check$java_net_http_HttpResponse$BodyHandlers$$ofFile(Class<?> callerClass, Path path, OpenOption... options)
    • check$java_net_http_HttpResponse$BodyHandlers$$ofFileDownload

      void check$java_net_http_HttpResponse$BodyHandlers$$ofFileDownload(Class<?> callerClass, Path directory, OpenOption... openOptions)
    • check$java_net_http_HttpResponse$BodySubscribers$$ofFile

      void check$java_net_http_HttpResponse$BodySubscribers$$ofFile(Class<?> callerClass, Path directory)
    • check$java_net_http_HttpResponse$BodySubscribers$$ofFile

      void check$java_net_http_HttpResponse$BodySubscribers$$ofFile(Class<?> callerClass, Path directory, OpenOption... openOptions)
    • checkNewFileSystem

      void checkNewFileSystem(Class<?> callerClass, FileSystemProvider that, URI uri, Map<String,?> env)
    • checkNewFileSystem

      void checkNewFileSystem(Class<?> callerClass, FileSystemProvider that, Path path, Map<String,?> env)
    • checkNewInputStream

      void checkNewInputStream(Class<?> callerClass, FileSystemProvider that, Path path, OpenOption... options)
    • checkNewOutputStream

      void checkNewOutputStream(Class<?> callerClass, FileSystemProvider that, Path path, OpenOption... options)
    • checkNewFileChannel

      void checkNewFileChannel(Class<?> callerClass, FileSystemProvider that, Path path, Set<? extends OpenOption> options, FileAttribute<?>... attrs)
    • checkNewAsynchronousFileChannel

      void checkNewAsynchronousFileChannel(Class<?> callerClass, FileSystemProvider that, Path path, Set<? extends OpenOption> options, ExecutorService executor, FileAttribute<?>... attrs)
    • checkNewByteChannel

      void checkNewByteChannel(Class<?> callerClass, FileSystemProvider that, Path path, Set<? extends OpenOption> options, FileAttribute<?>... attrs)
    • checkNewDirectoryStream

      void checkNewDirectoryStream(Class<?> callerClass, FileSystemProvider that, Path dir, DirectoryStream.Filter<? super Path> filter)
    • checkCreateDirectory

      void checkCreateDirectory(Class<?> callerClass, FileSystemProvider that, Path dir, FileAttribute<?>... attrs)
    • checkCreateSymbolicLink

      void checkCreateSymbolicLink(Class<?> callerClass, FileSystemProvider that, Path link, Path target, FileAttribute<?>... attrs)
    • checkCreateLink

      void checkCreateLink(Class<?> callerClass, FileSystemProvider that, Path link, Path existing)
    • checkDelete

      void checkDelete(Class<?> callerClass, FileSystemProvider that, Path path)
    • checkDeleteIfExists

      void checkDeleteIfExists(Class<?> callerClass, FileSystemProvider that, Path path)
    • checkReadSymbolicLink

      void checkReadSymbolicLink(Class<?> callerClass, FileSystemProvider that, Path link)
    • checkCopy

      void checkCopy(Class<?> callerClass, FileSystemProvider that, Path source, Path target, CopyOption... options)
    • checkMove

      void checkMove(Class<?> callerClass, FileSystemProvider that, Path source, Path target, CopyOption... options)
    • checkIsSameFile

      void checkIsSameFile(Class<?> callerClass, FileSystemProvider that, Path path, Path path2)
    • checkIsHidden

      void checkIsHidden(Class<?> callerClass, FileSystemProvider that, Path path)
    • checkGetFileStore

      void checkGetFileStore(Class<?> callerClass, FileSystemProvider that, Path path)
    • checkCheckAccess

      void checkCheckAccess(Class<?> callerClass, FileSystemProvider that, Path path, AccessMode... modes)
    • checkGetFileAttributeView

      void checkGetFileAttributeView(Class<?> callerClass, FileSystemProvider that, Path path, Class<?> type, LinkOption... options)
    • checkReadAttributes

      void checkReadAttributes(Class<?> callerClass, FileSystemProvider that, Path path, Class<?> type, LinkOption... options)
    • checkReadAttributes

      void checkReadAttributes(Class<?> callerClass, FileSystemProvider that, Path path, String attributes, LinkOption... options)
    • checkReadAttributesIfExists

      void checkReadAttributesIfExists(Class<?> callerClass, FileSystemProvider that, Path path, Class<?> type, LinkOption... options)
    • checkSetAttribute

      void checkSetAttribute(Class<?> callerClass, FileSystemProvider that, Path path, String attribute, Object value, LinkOption... options)
    • checkExists

      void checkExists(Class<?> callerClass, FileSystemProvider that, Path path, LinkOption... options)
    • checkGetFileStoreAttributeView

      void checkGetFileStoreAttributeView(Class<?> callerClass, FileStore that, Class<?> type)
    • checkGetAttribute

      void checkGetAttribute(Class<?> callerClass, FileStore that, String attribute)
    • checkGetBlockSize

      void checkGetBlockSize(Class<?> callerClass, FileStore that)
    • checkGetTotalSpace

      void checkGetTotalSpace(Class<?> callerClass, FileStore that)
    • checkGetUnallocatedSpace

      void checkGetUnallocatedSpace(Class<?> callerClass, FileStore that)
    • checkGetUsableSpace

      void checkGetUsableSpace(Class<?> callerClass, FileStore that)
    • checkIsReadOnly

      void checkIsReadOnly(Class<?> callerClass, FileStore that)
    • checkName

      void checkName(Class<?> callerClass, FileStore that)
    • checkType

      void checkType(Class<?> callerClass, FileStore that)
    • checkPathToRealPath

      void checkPathToRealPath(Class<?> callerClass, Path that, LinkOption... options) throws IOException
      Throws:
      IOException - if the file does not exist or an I/O error occurs
    • checkPathRegister

      void checkPathRegister(Class<?> callerClass, Path that, WatchService watcher, WatchEvent.Kind<?>... events)
    • checkPathRegister

      void checkPathRegister(Class<?> callerClass, Path that, WatchService watcher, WatchEvent.Kind<?>[] events, WatchEvent.Modifier... modifiers)
    • check$sun_net_www_protocol_file_FileURLConnection$connect

      void check$sun_net_www_protocol_file_FileURLConnection$connect(Class<?> callerClass, URLConnection that)
    • check$sun_net_www_protocol_file_FileURLConnection$getHeaderFields

      void check$sun_net_www_protocol_file_FileURLConnection$getHeaderFields(Class<?> callerClass, URLConnection that)
    • check$sun_net_www_protocol_file_FileURLConnection$getHeaderField

      void check$sun_net_www_protocol_file_FileURLConnection$getHeaderField(Class<?> callerClass, URLConnection that, String name)
    • check$sun_net_www_protocol_file_FileURLConnection$getHeaderField

      void check$sun_net_www_protocol_file_FileURLConnection$getHeaderField(Class<?> callerClass, URLConnection that, int n)
    • check$sun_net_www_protocol_file_FileURLConnection$getContentLength

      void check$sun_net_www_protocol_file_FileURLConnection$getContentLength(Class<?> callerClass, URLConnection that)
    • check$sun_net_www_protocol_file_FileURLConnection$getContentLengthLong

      void check$sun_net_www_protocol_file_FileURLConnection$getContentLengthLong(Class<?> callerClass, URLConnection that)
    • check$sun_net_www_protocol_file_FileURLConnection$getHeaderFieldKey

      void check$sun_net_www_protocol_file_FileURLConnection$getHeaderFieldKey(Class<?> callerClass, URLConnection that, int n)
    • check$sun_net_www_protocol_file_FileURLConnection$getLastModified

      void check$sun_net_www_protocol_file_FileURLConnection$getLastModified(Class<?> callerClass, URLConnection that)
    • check$sun_net_www_protocol_file_FileURLConnection$getInputStream

      void check$sun_net_www_protocol_file_FileURLConnection$getInputStream(Class<?> callerClass, URLConnection that)
    • check$java_net_JarURLConnection$getManifest

      void check$java_net_JarURLConnection$getManifest(Class<?> callerClass, JarURLConnection that)
    • check$java_net_JarURLConnection$getJarEntry

      void check$java_net_JarURLConnection$getJarEntry(Class<?> callerClass, JarURLConnection that)
    • check$java_net_JarURLConnection$getAttributes

      void check$java_net_JarURLConnection$getAttributes(Class<?> callerClass, JarURLConnection that)
    • check$java_net_JarURLConnection$getMainAttributes

      void check$java_net_JarURLConnection$getMainAttributes(Class<?> callerClass, JarURLConnection that)
    • check$java_net_JarURLConnection$getCertificates

      void check$java_net_JarURLConnection$getCertificates(Class<?> callerClass, JarURLConnection that)
    • check$sun_net_www_protocol_jar_JarURLConnection$getJarFile

      void check$sun_net_www_protocol_jar_JarURLConnection$getJarFile(Class<?> callerClass, JarURLConnection that)
    • check$sun_net_www_protocol_jar_JarURLConnection$getJarEntry

      void check$sun_net_www_protocol_jar_JarURLConnection$getJarEntry(Class<?> callerClass, JarURLConnection that)
    • check$sun_net_www_protocol_jar_JarURLConnection$connect

      void check$sun_net_www_protocol_jar_JarURLConnection$connect(Class<?> callerClass, JarURLConnection that)
    • check$sun_net_www_protocol_jar_JarURLConnection$getInputStream

      void check$sun_net_www_protocol_jar_JarURLConnection$getInputStream(Class<?> callerClass, JarURLConnection that)
    • check$sun_net_www_protocol_jar_JarURLConnection$getContentLength

      void check$sun_net_www_protocol_jar_JarURLConnection$getContentLength(Class<?> callerClass, JarURLConnection that)
    • check$sun_net_www_protocol_jar_JarURLConnection$getContentLengthLong

      void check$sun_net_www_protocol_jar_JarURLConnection$getContentLengthLong(Class<?> callerClass, JarURLConnection that)
    • check$sun_net_www_protocol_jar_JarURLConnection$getContent

      void check$sun_net_www_protocol_jar_JarURLConnection$getContent(Class<?> callerClass, JarURLConnection that)
    • check$sun_net_www_protocol_jar_JarURLConnection$getContentType

      void check$sun_net_www_protocol_jar_JarURLConnection$getContentType(Class<?> callerClass, JarURLConnection that)
    • check$sun_net_www_protocol_jar_JarURLConnection$getHeaderField

      void check$sun_net_www_protocol_jar_JarURLConnection$getHeaderField(Class<?> callerClass, JarURLConnection that, String name)
    • check$java_lang_Thread$start

      void check$java_lang_Thread$start(Class<?> callerClass, Thread thread)
    • check$java_lang_Thread$setDaemon

      void check$java_lang_Thread$setDaemon(Class<?> callerClass, Thread thread, boolean on)
    • check$java_lang_ThreadGroup$setDaemon

      void check$java_lang_ThreadGroup$setDaemon(Class<?> callerClass, ThreadGroup threadGroup, boolean daemon)
    • check$java_util_concurrent_ForkJoinPool$setParallelism

      void check$java_util_concurrent_ForkJoinPool$setParallelism(Class<?> callerClass, ForkJoinPool forkJoinPool, int size)
    • check$java_lang_Thread$setName

      void check$java_lang_Thread$setName(Class<?> callerClass, Thread thread, String name)
    • check$java_lang_Thread$setPriority

      void check$java_lang_Thread$setPriority(Class<?> callerClass, Thread thread, int newPriority)
    • check$java_lang_Thread$setUncaughtExceptionHandler

      void check$java_lang_Thread$setUncaughtExceptionHandler(Class<?> callerClass, Thread thread, Thread.UncaughtExceptionHandler ueh)
    • check$java_lang_ThreadGroup$setMaxPriority

      void check$java_lang_ThreadGroup$setMaxPriority(Class<?> callerClass, ThreadGroup threadGroup, int pri)