Tabnine Logo
PlatformNativeLibrarySupport
Code IndexAdd Tabnine to your IDE (free)

How to use
PlatformNativeLibrarySupport
in
com.oracle.svm.core.jdk

Best Java code snippets using com.oracle.svm.core.jdk.PlatformNativeLibrarySupport (Showing top 4 results out of 315)

origin: com.oracle.substratevm/library-support

@Override
public boolean isBuiltinLibrary(String libName) {
  if (PlatformNativeLibrarySupport.singleton().isBuiltinLibrary(libName)) {
    return true;
  }
  String onLoadName = getOnLoadName(libName, true);
  PointerBase onLoad = PlatformNativeLibrarySupport.singleton().findBuiltinSymbol(onLoadName);
  return onLoad.isNonNull();
}
origin: com.oracle.substratevm/svm

@SubstrateForeignCallTarget
private static int initializeIsolate() {
  int result = CEntryPointErrors.NO_ERROR;
  boolean success = PlatformNativeLibrarySupport.singleton().initializeBuiltinLibraries();
  if (!success) {
    return CEntryPointErrors.ISOLATE_INITIALIZATION_FAILED;
  }
  return result;
}
origin: com.oracle.substratevm/library-support

public boolean isBuiltInFunction() {
  return (PlatformNativeLibrarySupport.singleton().isBuiltinPkgNative(this.getShortName()));
}
origin: com.oracle.substratevm/svm

NativeLibrary lib = PlatformNativeLibrarySupport.singleton().createLibrary(canonical, asBuiltin);
currentLoadContext.push(lib);
try {
com.oracle.svm.core.jdkPlatformNativeLibrarySupport

Most used methods

  • singleton
  • createLibrary
  • findBuiltinSymbol
  • initializeBuiltinLibraries
  • isBuiltinLibrary
  • isBuiltinPkgNative

Popular in Java

  • Making http requests using okhttp
  • onCreateOptionsMenu (Activity)
  • setRequestProperty (URLConnection)
  • compareTo (BigDecimal)
  • Point (java.awt)
    A point representing a location in (x,y) coordinate space, specified in integer precision.
  • HttpURLConnection (java.net)
    An URLConnection for HTTP (RFC 2616 [http://tools.ietf.org/html/rfc2616]) used to send and receive d
  • HashSet (java.util)
    HashSet is an implementation of a Set. All optional operations (adding and removing) are supported.
  • NoSuchElementException (java.util)
    Thrown when trying to retrieve an element past the end of an Enumeration or Iterator.
  • JFileChooser (javax.swing)
  • JTextField (javax.swing)
  • Top PhpStorm plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now