Tabnine Logo
IoBridge.available
Code IndexAdd Tabnine to your IDE (free)

How to use
available
method
in
libcore.io.IoBridge

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

origin: robovm/robovm

@Override
public int available() throws IOException {
  return IoBridge.available(fd);
}
origin: robovm/robovm

@Override
protected synchronized int available() throws IOException {
  checkNotClosed();
  // we need to check if the input has been shutdown. If so
  // we should return that there is no data to be read
  if (shutdownInput) {
    return 0;
  }
  return IoBridge.available(fd);
}
origin: com.gluonhq/robovm-rt

@Override
public int available() throws IOException {
  return IoBridge.available(fd);
}
origin: FlexoVM/flexovm

@Override
public int available() throws IOException {
  return IoBridge.available(fd);
}
origin: MobiVM/robovm

@Override
public int available() throws IOException {
  return IoBridge.available(fd);
}
origin: ibinti/bugvm

@Override
public int available() throws IOException {
  return IoBridge.available(fd);
}
origin: com.mobidevelop.robovm/robovm-rt

@Override
public int available() throws IOException {
  return IoBridge.available(fd);
}
origin: com.bugvm/bugvm-rt

@Override
public int available() throws IOException {
  return IoBridge.available(fd);
}
origin: MobiVM/robovm

@Override
protected synchronized int available() throws IOException {
  checkNotClosed();
  // we need to check if the input has been shutdown. If so
  // we should return that there is no data to be read
  if (shutdownInput) {
    return 0;
  }
  return IoBridge.available(fd);
}
origin: ibinti/bugvm

@Override
protected synchronized int available() throws IOException {
  checkNotClosed();
  // we need to check if the input has been shutdown. If so
  // we should return that there is no data to be read
  if (shutdownInput) {
    return 0;
  }
  return IoBridge.available(fd);
}
origin: com.bugvm/bugvm-rt

@Override
protected synchronized int available() throws IOException {
  checkNotClosed();
  // we need to check if the input has been shutdown. If so
  // we should return that there is no data to be read
  if (shutdownInput) {
    return 0;
  }
  return IoBridge.available(fd);
}
origin: com.gluonhq/robovm-rt

@Override
protected synchronized int available() throws IOException {
  checkNotClosed();
  // we need to check if the input has been shutdown. If so
  // we should return that there is no data to be read
  if (shutdownInput) {
    return 0;
  }
  return IoBridge.available(fd);
}
origin: FlexoVM/flexovm

@Override
protected synchronized int available() throws IOException {
  checkNotClosed();
  // we need to check if the input has been shutdown. If so
  // we should return that there is no data to be read
  if (shutdownInput) {
    return 0;
  }
  return IoBridge.available(fd);
}
origin: com.mobidevelop.robovm/robovm-rt

@Override
protected synchronized int available() throws IOException {
  checkNotClosed();
  // we need to check if the input has been shutdown. If so
  // we should return that there is no data to be read
  if (shutdownInput) {
    return 0;
  }
  return IoBridge.available(fd);
}
libcore.ioIoBridgeavailable

Popular methods of IoBridge

  • 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
  • isConnected
  • getSocketOptionErrno,
  • isConnected,
  • maybeThrowAfterRecvfrom,
  • maybeThrowAfterSendto,
  • open,
  • postRecvfrom,
  • read,
  • recvfrom,
  • sendto

Popular in Java

  • Running tasks concurrently on multiple threads
  • findViewById (Activity)
  • setContentView (Activity)
  • scheduleAtFixedRate (Timer)
  • SocketException (java.net)
    This SocketException may be thrown during socket creation or setting options, and is the superclass
  • ResultSet (java.sql)
    An interface for an object which represents a database table entry, returned as the result of the qu
  • Properties (java.util)
    A Properties object is a Hashtable where the keys and values must be Strings. Each property can have
  • Vector (java.util)
    Vector is an implementation of List, backed by an array and synchronized. All optional operations in
  • Cipher (javax.crypto)
    This class provides access to implementations of cryptographic ciphers for encryption and decryption
  • Join (org.hibernate.mapping)
  • Top plugins for WebStorm
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