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

How to use
shutdown
method
in
libcore.io.Os

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

origin: robovm/robovm

public void shutdown(FileDescriptor fd, int how) throws ErrnoException { os.shutdown(fd, how); }
public FileDescriptor socket(int domain, int type, int protocol) throws ErrnoException { return os.socket(domain, type, protocol); }
origin: robovm/robovm

/**
 * Shutdown the output portion of the socket.
 */
@Override
protected void shutdownOutput() throws IOException {
  try {
    Libcore.os.shutdown(fd, SHUT_WR);
  } catch (ErrnoException errnoException) {
    throw errnoException.rethrowAsSocketException();
  }
}
origin: robovm/robovm

/**
 * Shutdown the input portion of the socket.
 */
@Override
protected void shutdownInput() throws IOException {
  shutdownInput = true;
  try {
    Libcore.os.shutdown(fd, SHUT_RD);
  } catch (ErrnoException errnoException) {
    throw errnoException.rethrowAsSocketException();
  }
}
origin: MobiVM/robovm

public void shutdown(FileDescriptor fd, int how) throws ErrnoException { os.shutdown(fd, how); }
public FileDescriptor socket(int domain, int type, int protocol) throws ErrnoException { return os.socket(domain, type, protocol); }
origin: com.bugvm/bugvm-rt

public void shutdown(FileDescriptor fd, int how) throws ErrnoException { os.shutdown(fd, how); }
public FileDescriptor socket(int domain, int type, int protocol) throws ErrnoException { return os.socket(domain, type, protocol); }
origin: FlexoVM/flexovm

public void shutdown(FileDescriptor fd, int how) throws ErrnoException { os.shutdown(fd, how); }
public FileDescriptor socket(int domain, int type, int protocol) throws ErrnoException { return os.socket(domain, type, protocol); }
origin: com.mobidevelop.robovm/robovm-rt

public void shutdown(FileDescriptor fd, int how) throws ErrnoException { os.shutdown(fd, how); }
public FileDescriptor socket(int domain, int type, int protocol) throws ErrnoException { return os.socket(domain, type, protocol); }
origin: ibinti/bugvm

public void shutdown(FileDescriptor fd, int how) throws ErrnoException { os.shutdown(fd, how); }
public FileDescriptor socket(int domain, int type, int protocol) throws ErrnoException { return os.socket(domain, type, protocol); }
origin: MobiVM/robovm

/**
 * Shutdown the input portion of the socket.
 */
@Override
protected void shutdownInput() throws IOException {
  shutdownInput = true;
  try {
    Libcore.os.shutdown(fd, SHUT_RD);
  } catch (ErrnoException errnoException) {
    throw errnoException.rethrowAsSocketException();
  }
}
origin: com.bugvm/bugvm-rt

/**
 * Shutdown the output portion of the socket.
 */
@Override
protected void shutdownOutput() throws IOException {
  try {
    Libcore.os.shutdown(fd, SHUT_WR);
  } catch (ErrnoException errnoException) {
    throw errnoException.rethrowAsSocketException();
  }
}
origin: MobiVM/robovm

/**
 * Shutdown the output portion of the socket.
 */
@Override
protected void shutdownOutput() throws IOException {
  try {
    Libcore.os.shutdown(fd, SHUT_WR);
  } catch (ErrnoException errnoException) {
    throw errnoException.rethrowAsSocketException();
  }
}
origin: FlexoVM/flexovm

/**
 * Shutdown the output portion of the socket.
 */
@Override
protected void shutdownOutput() throws IOException {
  try {
    Libcore.os.shutdown(fd, SHUT_WR);
  } catch (ErrnoException errnoException) {
    throw errnoException.rethrowAsSocketException();
  }
}
origin: FlexoVM/flexovm

/**
 * Shutdown the input portion of the socket.
 */
@Override
protected void shutdownInput() throws IOException {
  shutdownInput = true;
  try {
    Libcore.os.shutdown(fd, SHUT_RD);
  } catch (ErrnoException errnoException) {
    throw errnoException.rethrowAsSocketException();
  }
}
origin: com.bugvm/bugvm-rt

/**
 * Shutdown the input portion of the socket.
 */
@Override
protected void shutdownInput() throws IOException {
  shutdownInput = true;
  try {
    Libcore.os.shutdown(fd, SHUT_RD);
  } catch (ErrnoException errnoException) {
    throw errnoException.rethrowAsSocketException();
  }
}
origin: ibinti/bugvm

/**
 * Shutdown the input portion of the socket.
 */
@Override
protected void shutdownInput() throws IOException {
  shutdownInput = true;
  try {
    Libcore.os.shutdown(fd, SHUT_RD);
  } catch (ErrnoException errnoException) {
    throw errnoException.rethrowAsSocketException();
  }
}
origin: ibinti/bugvm

/**
 * Shutdown the output portion of the socket.
 */
@Override
protected void shutdownOutput() throws IOException {
  try {
    Libcore.os.shutdown(fd, SHUT_WR);
  } catch (ErrnoException errnoException) {
    throw errnoException.rethrowAsSocketException();
  }
}
origin: com.mobidevelop.robovm/robovm-rt

/**
 * Shutdown the input portion of the socket.
 */
@Override
protected void shutdownInput() throws IOException {
  shutdownInput = true;
  try {
    Libcore.os.shutdown(fd, SHUT_RD);
  } catch (ErrnoException errnoException) {
    throw errnoException.rethrowAsSocketException();
  }
}
origin: com.mobidevelop.robovm/robovm-rt

/**
 * Shutdown the output portion of the socket.
 */
@Override
protected void shutdownOutput() throws IOException {
  try {
    Libcore.os.shutdown(fd, SHUT_WR);
  } catch (ErrnoException errnoException) {
    throw errnoException.rethrowAsSocketException();
  }
}
origin: com.gluonhq/robovm-rt

/**
 * Shutdown the input portion of the socket.
 */
@Override
protected void shutdownInput() throws IOException {
  shutdownInput = true;
  try {
    Libcore.os.shutdown(fd, SHUT_RD);
  } catch (ErrnoException errnoException) {
    throw errnoException.rethrowAsSocketException();
  }
}
origin: com.gluonhq/robovm-rt

/**
 * Shutdown the output portion of the socket.
 */
@Override
protected void shutdownOutput() throws IOException {
  try {
    Libcore.os.shutdown(fd, SHUT_WR);
  } catch (ErrnoException errnoException) {
    throw errnoException.rethrowAsSocketException();
  }
}
libcore.ioOsshutdown

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

  • Finding current android device location
  • getResourceAsStream (ClassLoader)
  • notifyDataSetChanged (ArrayAdapter)
  • getContentResolver (Context)
  • FlowLayout (java.awt)
    A flow layout arranges components in a left-to-right flow, much like lines of text in a paragraph. F
  • File (java.io)
    An "abstract" representation of a file system entity identified by a pathname. The pathname may be a
  • Time (java.sql)
    Java representation of an SQL TIME value. Provides utilities to format and parse the time's represen
  • Timestamp (java.sql)
    A Java representation of the SQL TIMESTAMP type. It provides the capability of representing the SQL
  • List (java.util)
    An ordered collection (also known as a sequence). The user of this interface has precise control ove
  • TreeSet (java.util)
    TreeSet is an implementation of SortedSet. All optional operations (adding and removing) are support
  • 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