Searched refs:exit (Results 1 - 5 of 5) sorted by relevance

/libcore/support/src/test/java/tests/support/
H A DSupport_DeleteOnExitTest.java17 Runtime.getRuntime().exit(0);
/libcore/dalvik/src/main/java/dalvik/system/profiler/
H A DHprofBinaryToAscii.java41 System.exit(convert(args) ? 0 : 1);
172 * Prints usage error but does not exit.
/libcore/libart/src/main/java/java/lang/
H A DDaemons.java91 * currently running the runnable and then waits for it to exit.
286 // If we have no handler, log and exit.
288 System.exit(2);
/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);
1055 * Ensures that, when the VM is about to exit, all objects are
1060 * the flag determines if finalization on exit is enabled.

Completed in 240 milliseconds