Codota Logo
Os.shutdown
Code IndexAdd Codota 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)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
DateTime d =
  • Codota Iconnew DateTime()
  • Codota IconDateTimeFormatter formatter;String text;formatter.parseDateTime(text)
  • Codota IconObject instant;new DateTime(instant)
  • Smart code suggestions by Codota
}
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

  • Start an intent from android
  • runOnUiThread (Activity)
  • 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.
  • FlowLayout (java.awt)
    A flow layout arranges components in a left-to-right flow, much like lines of text in a paragraph. F
  • InputStream (java.io)
    A readable source of bytes.Most clients will use input streams that read data from the file system (
  • TimerTask (java.util)
    A task that can be scheduled for one-time or repeated execution by a Timer.
  • Annotation (javassist.bytecode.annotation)
    The annotation structure.An instance of this class is returned bygetAnnotations() in AnnotationsAttr
  • HttpServlet (javax.servlet.http)
    Provides an abstract class to be subclassed to create an HTTP servlet suitable for a Web site. A sub
  • JList (javax.swing)
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now