Tabnine Logo
Os.listen
Code IndexAdd Tabnine to your IDE (free)

How to use
listen
method
in
libcore.io.Os

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

origin: robovm/robovm

public void listen(FileDescriptor fd, int backlog) throws ErrnoException { os.listen(fd, backlog); }
public long lseek(FileDescriptor fd, long offset, int whence) throws ErrnoException { return os.lseek(fd, offset, whence); }
origin: robovm/robovm

@Override
protected void listen(int backlog) throws IOException {
  if (usingSocks()) {
    // Do nothing for a SOCKS connection. The listen occurs on the
    // server during the bind.
    return;
  }
  try {
    Libcore.os.listen(fd, backlog);
  } catch (ErrnoException errnoException) {
    throw errnoException.rethrowAsSocketException();
  }
}
origin: com.bugvm/bugvm-rt

public void listen(FileDescriptor fd, int backlog) throws ErrnoException { os.listen(fd, backlog); }
public long lseek(FileDescriptor fd, long offset, int whence) throws ErrnoException { return os.lseek(fd, offset, whence); }
origin: ibinti/bugvm

public void listen(FileDescriptor fd, int backlog) throws ErrnoException { os.listen(fd, backlog); }
public long lseek(FileDescriptor fd, long offset, int whence) throws ErrnoException { return os.lseek(fd, offset, whence); }
origin: MobiVM/robovm

public void listen(FileDescriptor fd, int backlog) throws ErrnoException { os.listen(fd, backlog); }
public long lseek(FileDescriptor fd, long offset, int whence) throws ErrnoException { return os.lseek(fd, offset, whence); }
origin: com.mobidevelop.robovm/robovm-rt

public void listen(FileDescriptor fd, int backlog) throws ErrnoException { os.listen(fd, backlog); }
public long lseek(FileDescriptor fd, long offset, int whence) throws ErrnoException { return os.lseek(fd, offset, whence); }
origin: FlexoVM/flexovm

public void listen(FileDescriptor fd, int backlog) throws ErrnoException { os.listen(fd, backlog); }
public long lseek(FileDescriptor fd, long offset, int whence) throws ErrnoException { return os.lseek(fd, offset, whence); }
origin: com.gluonhq/robovm-rt

public void listen(FileDescriptor fd, int backlog) throws ErrnoException { os.listen(fd, backlog); }
public long lseek(FileDescriptor fd, long offset, int whence) throws ErrnoException { return os.lseek(fd, offset, whence); }
origin: com.bugvm/bugvm-rt

@Override
protected void listen(int backlog) throws IOException {
  if (usingSocks()) {
    // Do nothing for a SOCKS connection. The listen occurs on the
    // server during the bind.
    return;
  }
  try {
    Libcore.os.listen(fd, backlog);
  } catch (ErrnoException errnoException) {
    throw errnoException.rethrowAsSocketException();
  }
}
origin: MobiVM/robovm

@Override
protected void listen(int backlog) throws IOException {
  if (usingSocks()) {
    // Do nothing for a SOCKS connection. The listen occurs on the
    // server during the bind.
    return;
  }
  try {
    Libcore.os.listen(fd, backlog);
  } catch (ErrnoException errnoException) {
    throw errnoException.rethrowAsSocketException();
  }
}
origin: com.gluonhq/robovm-rt

@Override
protected void listen(int backlog) throws IOException {
  if (usingSocks()) {
    // Do nothing for a SOCKS connection. The listen occurs on the
    // server during the bind.
    return;
  }
  try {
    Libcore.os.listen(fd, backlog);
  } catch (ErrnoException errnoException) {
    throw errnoException.rethrowAsSocketException();
  }
}
origin: ibinti/bugvm

@Override
protected void listen(int backlog) throws IOException {
  if (usingSocks()) {
    // Do nothing for a SOCKS connection. The listen occurs on the
    // server during the bind.
    return;
  }
  try {
    Libcore.os.listen(fd, backlog);
  } catch (ErrnoException errnoException) {
    throw errnoException.rethrowAsSocketException();
  }
}
origin: com.mobidevelop.robovm/robovm-rt

@Override
protected void listen(int backlog) throws IOException {
  if (usingSocks()) {
    // Do nothing for a SOCKS connection. The listen occurs on the
    // server during the bind.
    return;
  }
  try {
    Libcore.os.listen(fd, backlog);
  } catch (ErrnoException errnoException) {
    throw errnoException.rethrowAsSocketException();
  }
}
origin: FlexoVM/flexovm

@Override
protected void listen(int backlog) throws IOException {
  if (usingSocks()) {
    // Do nothing for a SOCKS connection. The listen occurs on the
    // server during the bind.
    return;
  }
  try {
    Libcore.os.listen(fd, backlog);
  } catch (ErrnoException errnoException) {
    throw errnoException.rethrowAsSocketException();
  }
}
libcore.ioOslisten

Popular methods of Os

  • accept
  • access
  • bind
  • chmod
  • chown
  • close
  • connect
  • dup
  • dup2
  • environ
  • execv
  • execve
  • execv,
  • execve,
  • fchmod,
  • fchown,
  • fcntlFlock,
  • fcntlLong,
  • fcntlVoid,
  • fdatasync,
  • fstat,
  • fstatvfs

Popular in Java

  • Making http requests using okhttp
  • onCreateOptionsMenu (Activity)
  • setScale (BigDecimal)
  • getContentResolver (Context)
  • OutputStream (java.io)
    A writable sink for bytes.Most clients will use output streams that write data to the file system (
  • Proxy (java.net)
    This class represents proxy server settings. A created instance of Proxy stores a type and an addres
  • UnknownHostException (java.net)
    Thrown when a hostname can not be resolved.
  • Manifest (java.util.jar)
    The Manifest class is used to obtain attribute information for a JarFile and its entries.
  • LogFactory (org.apache.commons.logging)
    Factory for creating Log instances, with discovery and configuration features similar to that employ
  • Reflections (org.reflections)
    Reflections one-stop-shop objectReflections scans your classpath, indexes the metadata, allows you t
  • Top Vim 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