Os.listen
Code IndexAdd Codota to your IDE (free)

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
  • getSharedPreferences (Context)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • getSupportFragmentManager (FragmentActivity)
    Return the FragmentManager for interacting with fragments associated with this activity.
  • ObjectMapper (com.fasterxml.jackson.databind)
    ObjectMapper provides functionality for reading and writing JSON, either to and from basic POJOs (Pl
  • Color (java.awt)
    The Color class is used to encapsulate colors in the default sRGB color space or colors in arbitrary
  • Locale (java.util)
    Locale represents a language/country/variant combination. Locales are used to alter the presentatio
  • PriorityQueue (java.util)
    A PriorityQueue holds elements on a priority heap, which orders the elements according to their natu
  • Set (java.util)
    A Set is a data structure which does not allow duplicate elements.
  • Executor (java.util.concurrent)
    An object that executes submitted Runnable tasks. This interface provides a way of decoupling task s

For IntelliJ IDEA,
Android Studio or Eclipse

  • Search for JavaScript code betaCodota IntelliJ IDEA pluginCodota Android Studio pluginCode IndexSign in
  • EnterpriseFAQAboutBlogContact Us
  • Plugin user guideTerms of usePrivacy policyCodeboxFind Usages
Add Codota to your IDE (free)