Lines Matching defs:code

6  * This code is free software; you can redistribute it and/or modify it
10 * by Oracle in the LICENSE file that accompanied this code.
12 * This code is distributed in the hope that it will be useful, but WITHOUT
16 * accompanied this code).
46 * <code>Runtime</code> that allows the application to interface with
48 * runtime can be obtained from the <code>getRuntime</code> method.
81 private static native void nativeExit(int code);
85 * Most of the methods of class <code>Runtime</code> are instance
88 * @return the <code>Runtime</code> object associated with the current
101 * serves as a status code; by convention, a nonzero status code indicates
116 * with the given status code if the status is nonzero; otherwise, it
123 * Termination status. By convention, a nonzero status code
340 * Termination status. By convention, a nonzero status code
344 * status code will override the status code passed to that method.
367 * its <code>checkExit</code> method is first called
378 * if a security manager exists and its <code>checkExit</code>
412 * If <code>command</code> is <code>null</code>
415 * If <code>command</code> is empty
452 * If <code>command</code> is <code>null</code>,
453 * or one of the elements of <code>envp</code> is <code>null</code>
456 * If <code>command</code> is empty
473 * where <code>cmdarray</code> is an array of all the tokens in
474 * <code>command</code>.
476 * <p>More precisely, the <code>command</code> string is broken
478 * <code>new {@link StringTokenizer}(command)</code> with no
481 * array <code>cmdarray</code>, in the same order.
506 * If <code>command</code> is <code>null</code>,
507 * or one of the elements of <code>envp</code> is <code>null</code>
510 * If <code>command</code> is empty
549 * If <code>cmdarray</code> is <code>null</code>,
550 * or one of the elements of <code>cmdarray</code> is <code>null</code>
553 * If <code>cmdarray</code> is an empty array
554 * (has length <code>0</code>)
591 * If <code>cmdarray</code> is <code>null</code>,
592 * or one of the elements of <code>cmdarray</code> is <code>null</code>,
593 * or one of the elements of <code>envp</code> is <code>null</code>
596 * If <code>cmdarray</code> is an empty array
597 * (has length <code>0</code>)
610 * <p>Given an array of strings <code>cmdarray</code>, representing the
611 * tokens of a command line, and an array of strings <code>envp</code>,
615 * <p>This method checks that <code>cmdarray</code> is a valid operating
638 * <code>cmdarray</code> as its argument. This may result in a
678 * If <code>cmdarray</code> is <code>null</code>,
679 * or one of the elements of <code>cmdarray</code> is <code>null</code>,
680 * or one of the elements of <code>envp</code> is <code>null</code>
683 * If <code>cmdarray</code> is an empty array
684 * (has length <code>0</code>)
716 * <code>gc</code> method may result in increasing the value returned
717 * by <code>freeMemory.</code>
756 * The name <code>gc</code> stands for "garbage
759 * <code>gc</code> method is not invoked explicitly.
772 * effort toward running the <code>finalize</code> methods of objects
773 * that have been found to be discarded but whose <code>finalize</code>
780 * <code>runFinalization</code> method is not invoked explicitly.
793 * If the <code>boolean</code> argument is <code>true</code>, this
802 * If the <code>boolean</code> argument is <code>false</code>, this
806 * @param enable <code>true</code> to enable instruction tracing;
807 * <code>false</code> to disable this feature.
815 * If the <code>boolean</code> argument is <code>true</code>, this
826 * @param enable <code>true</code> to enable instruction tracing;
827 * <code>false</code> to disable this feature.
845 * <code>Runtime.getRuntime().load("/home/avh/lib/libX11.so");</code>).
847 * First, if there is a security manager, its <code>checkLink</code>
848 * method is called with the <code>filename</code> as its argument.
853 * name, allowing any file of native code to be loaded.
860 * <code>checkLink</code> method doesn't allow
863 * @exception NullPointerException if <code>filename</code> is
864 * <code>null</code>
903 * A file containing native code is loaded from the local file system
909 * First, if there is a security manager, its <code>checkLink</code>
910 * method is called with the <code>libname</code> as its argument.
916 * strategy is to put the native code in a library file (call it
917 * <code>LibFile</code>) and then to put a static initializer:
922 * initialized, the necessary native code implementation for the native
930 * <code>checkLink</code> method doesn't allow
933 * @exception NullPointerException if <code>libname</code> is
934 * <code>null</code>
1044 // beginning because multiple apks can run in the same process and third party code can
1070 * an <code>InputStream</code> and returns an <code>InputStream</code>
1086 * the <code>InputStreamReader</code> and <code>BufferedReader</code>
1096 * takes an <code>OutputStream</code> and returns an
1097 * <code>OutputStream</code> equivalent to the argument in all respects
1107 * the <code>OutputStreamWriter</code>, <code>BufferedWriter</code>, and
1108 * <code>PrintWriter</code> classes.