Searched defs:exit (Results 1 - 2 of 2) sorted by relevance

/libcore/luni/src/main/java/java/lang/
H A DRuntime.java250 * Causes the VM to stop running and the program to exit.
257 public void exit(int code) { method in class:Runtime
284 // Ensure finalization on exit, if requested
449 * VM is about to exit. Note that all finalization which occurs
454 * {@code true} to enable finalization on exit, {@code false} to
528 * terminates normally (typically when the {@link #exit(int)} method is called).
605 * Causes the VM to stop running, and the program to exit with the given return code.
H A DSystem.java628 * Causes the VM to stop running and the program to exit with the given exit status.
633 public static void exit(int code) { method in class:System
634 Runtime.getRuntime().exit(code);
1056 * Ensures that, when the VM is about to exit, all objects are
1061 * the flag determines if finalization on exit is enabled.

Completed in 454 milliseconds