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

/libcore/support/src/test/java/tests/support/
H A DSupport_DeleteOnExitTest.java17 Runtime.getRuntime().exit(0);
/libcore/tzdata/tools/src/main/libcore/tzdata/update/tools/
H A DCreateTzDataBundle.java43 System.exit(1);
49 System.exit(2);
70 System.exit(5);
80 System.exit(6);
99 System.exit(4);
109 System.exit(3);
/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.java100 * currently running the runnable and then waits for it to exit.
309 // If we have no handler, log and exit.
311 System.exit(2);
/libcore/luni/src/main/java/java/lang/
H A DRuntime.java251 * Causes the VM to stop running and the program to exit.
258 public void exit(int code) { method in class:Runtime
285 // Ensure finalization on exit, if requested
454 * runtime is about to exit. Note that all finalization which occurs
459 * {@code true} to enable finalization on exit, {@code false} to
533 * terminates normally (typically when the {@link #exit(int)} method is called).
610 * Causes the VM to stop running, and the program to exit with the given return code.
H A DSystem.java658 * Causes the VM to stop running and the program to exit with the given exit status.
663 public static void exit(int code) { method in class:System
664 Runtime.getRuntime().exit(code);
1143 * Ensures that, when the VM is about to exit, all objects are
1148 * the flag determines if finalization on exit is enabled.

Completed in 741 milliseconds