congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
IoBridge.setSocketOptionErrno
Code IndexAdd Tabnine to your IDE (free)

How to use
setSocketOptionErrno
method
in
libcore.io.IoBridge

Best Java code snippets using libcore.io.IoBridge.setSocketOptionErrno (Showing top 7 results out of 315)

origin: robovm/robovm

/**
 * java.net has its own socket options similar to the underlying Unix ones. We paper over the
 * differences here.
 */
public static void setSocketOption(FileDescriptor fd, int option, Object value) throws SocketException {
  try {
    setSocketOptionErrno(fd, option, value);
  } catch (ErrnoException errnoException) {
    throw errnoException.rethrowAsSocketException();
  }
}
origin: ibinti/bugvm

/**
 * java.net has its own socket options similar to the underlying Unix ones. We paper over the
 * differences here.
 */
public static void setSocketOption(FileDescriptor fd, int option, Object value) throws SocketException {
  try {
    setSocketOptionErrno(fd, option, value);
  } catch (ErrnoException errnoException) {
    throw errnoException.rethrowAsSocketException();
  }
}
origin: MobiVM/robovm

/**
 * java.net has its own socket options similar to the underlying Unix ones. We paper over the
 * differences here.
 */
public static void setSocketOption(FileDescriptor fd, int option, Object value) throws SocketException {
  try {
    setSocketOptionErrno(fd, option, value);
  } catch (ErrnoException errnoException) {
    throw errnoException.rethrowAsSocketException();
  }
}
origin: com.gluonhq/robovm-rt

/**
 * java.net has its own socket options similar to the underlying Unix ones. We paper over the
 * differences here.
 */
public static void setSocketOption(FileDescriptor fd, int option, Object value) throws SocketException {
  try {
    setSocketOptionErrno(fd, option, value);
  } catch (ErrnoException errnoException) {
    throw errnoException.rethrowAsSocketException();
  }
}
origin: com.mobidevelop.robovm/robovm-rt

/**
 * java.net has its own socket options similar to the underlying Unix ones. We paper over the
 * differences here.
 */
public static void setSocketOption(FileDescriptor fd, int option, Object value) throws SocketException {
  try {
    setSocketOptionErrno(fd, option, value);
  } catch (ErrnoException errnoException) {
    throw errnoException.rethrowAsSocketException();
  }
}
origin: com.bugvm/bugvm-rt

/**
 * java.net has its own socket options similar to the underlying Unix ones. We paper over the
 * differences here.
 */
public static void setSocketOption(FileDescriptor fd, int option, Object value) throws SocketException {
  try {
    setSocketOptionErrno(fd, option, value);
  } catch (ErrnoException errnoException) {
    throw errnoException.rethrowAsSocketException();
  }
}
origin: FlexoVM/flexovm

/**
 * java.net has its own socket options similar to the underlying Unix ones. We paper over the
 * differences here.
 */
public static void setSocketOption(FileDescriptor fd, int option, Object value) throws SocketException {
  try {
    setSocketOptionErrno(fd, option, value);
  } catch (ErrnoException errnoException) {
    throw errnoException.rethrowAsSocketException();
  }
}
libcore.ioIoBridgesetSocketOptionErrno

Popular methods of IoBridge

  • available
  • bind
  • booleanFromInt
  • booleanToInt
  • closeSocket
  • connect
    Connects socket 'fd' to 'inetAddress' on 'port', with a the given 'timeoutMs'. Use timeoutMs == 0 fo
  • connectDetail
  • connectErrno
  • getSocketLocalAddress
  • getSocketLocalPort
  • getSocketOption
    java.net has its own socket options similar to the underlying Unix ones. We paper over the differenc
  • getSocketOptionErrno
  • getSocketOption,
  • getSocketOptionErrno,
  • isConnected,
  • maybeThrowAfterRecvfrom,
  • maybeThrowAfterSendto,
  • open,
  • postRecvfrom,
  • read,
  • recvfrom,
  • sendto

Popular in Java

  • Making http post requests using okhttp
  • addToBackStack (FragmentTransaction)
  • startActivity (Activity)
  • getSupportFragmentManager (FragmentActivity)
  • Runnable (java.lang)
    Represents a command that can be executed. Often used to run code in a different Thread.
  • Permission (java.security)
    Legacy security code; do not use.
  • MessageFormat (java.text)
    Produces concatenated messages in language-neutral way. New code should probably use java.util.Forma
  • Dictionary (java.util)
    Note: Do not use this class since it is obsolete. Please use the Map interface for new implementatio
  • LinkedHashMap (java.util)
    LinkedHashMap is an implementation of Map that guarantees iteration order. All optional operations a
  • Properties (java.util)
    A Properties object is a Hashtable where the keys and values must be Strings. Each property can have
  • Best plugins for Eclipse
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