Searched refs:rc (Results 76 - 100 of 242) sorted by relevance

12345678910

/openjdk7/jdk/test/sun/rmi/rmic/manifestClassPath/
H A DUtil.sh50 printf "%s\n" "$*"; "$@"; rc="$?";
51 test "$rc" -eq 0 || Die "Command \"$*\" failed with exitValue $rc";
59 test "$#" != 2 && Die "Usage: Report success|failure rc"
70 Die "Usage: Report success|failure rc"
/openjdk7/jdk/test/java/lang/Thread/
H A DUncaughtExceptions.sh45 "$@"; rc="$?";
46 test "$rc" -eq 0 || Die "Command \"$*\" failed with exitValue $rc";
86 "$@" >TmpTest.Out 2>TmpTest.Err; rc="$?";
87 printf "==> %s (rc=%d)\n" "$*" "$rc"
/openjdk7/langtools/test/tools/javah/4942232/
H A DTest.java88 int rc = javah(args);
89 if (rc != expect)
90 error("Unexpected return code: " + rc + "; expected: " + expect);
96 int rc = com.sun.tools.javah.Main.run(args, pw);
101 return rc;
/openjdk7/langtools/test/tools/javap/
H A DT6622260.java54 int rc = com.sun.tools.javac.Main.compile(new String[] { f.getPath() });
55 if (rc != 0)
56 throw new Error("compilation failed. rc=" + rc);
183 int rc = com.sun.tools.javap.Main.run(new String[] { "-v", f.getPath() }, out);
184 if (rc != 0)
185 throw new Error("javap failed. rc=" + rc);
H A DT6729471.java108 int rc = com.sun.tools.javap.Main.run(args, out);
113 if (rc != 0)
114 throw new Error("javap failed. rc=" + rc);
H A DT6863746.java41 int rc = com.sun.tools.javap.Main.run(args, pw);
/openjdk7/jdk/src/share/instrument/
H A DJarFacade.c107 int rc; local
110 rc = JLI_ManifestIterate(jarfile, doAttribute, (void*)&context);
112 if (rc == 0) {
/openjdk7/jdk/test/java/util/prefs/
H A DPrefsSpi.sh50 printf "%s\n" "$*"; "$@"; rc="$?";
51 test "$rc" -eq 0 || Die "Command \"$*\" failed with exitValue $rc";
/openjdk7/langtools/test/tools/javac/synthesize/
H A DMain.java109 int rc = com.sun.tools.javac.Main.compile(args.toArray(new String[args.size()]),
112 System.out.println("result: " + rc);
115 if (rc != 0)
/openjdk7/langtools/test/tools/javac/util/
H A DT6597678.java65 int rc = com.sun.tools.javac.Main.compile(args, pw);
70 if (rc != 0)
71 throw new Exception("compilation failed unexpectedly: rc=" + rc);
/openjdk7/langtools/test/tools/javadoc/6964914/
H A DTestUserDoclet.java84 int rc = p.waitFor();
85 if (rc != 0)
86 System.err.println("javadoc failed, rc:" + rc);
/openjdk7/langtools/test/tools/javadoc/T4994049/
H A DT4994049.java62 int rc = execute("javadoc", "T4994049", T4994049.class.getClassLoader(),
64 if (rc != 0)
65 throw new Error("Unexpected return code from javadoc: " + rc);
/openjdk7/langtools/test/tools/javah/
H A DT6994608.java54 + " rc:" + expectRC
59 int rc = com.sun.tools.javah.Main.run(args.toArray(new String[args.size()]), pw);
65 if (rc != expectRC)
66 error("Unexpected exit code: " + rc + "; expected: " + expectRC);
H A DT6893943.java53 int rc = com.sun.tools.javah.Main.run(args, pw);
55 expect("testSimpleAPI", sw.toString(), rc, expect_rc);
79 int rc = p.waitFor();
80 expect("testCommand", sw.toString(), rc, expect_rc);
/openjdk7/jdk/test/sun/nio/cs/
H A DUkrainianIsNotRussian.java49 final char rc = r.charAt(0);
51 final UnicodeBlock rcb = UnicodeBlock.of(rc);
54 i, (int) rc, rcb, (int) uc, ucb);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DLocalVariableImpl.java72 int rc = method.compareTo(other.method);
73 if (rc == 0) {
74 rc = slot() - other.slot();
76 return rc;
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DLocalVariableImpl.java81 int rc = scopeStart.compareTo(other.scopeStart);
82 if (rc == 0) {
83 rc = slot() - other.slot();
85 return rc;
/openjdk7/langtools/test/tools/javadoc/6227454/
H A DTest.java78 int rc = com.sun.tools.javadoc.Main.execute(
87 System.err.println("javadoc exit: rc=" + rc);
90 if (rc != 0)
91 error("unexpected exit from javadoc; rc:" + rc);
/openjdk7/jdk/make/java/main/java/
H A DMakefile54 VERSIONINFO_RESOURCE = $(PLATFORM_SRC)/resource/java.rc
/openjdk7/jdk/make/java/main/javaw/
H A DMakefile57 VERSIONINFO_RESOURCE = $(PLATFORM_SRC)/resource/java.rc
/openjdk7/jdk/src/windows/transport/shmem/
H A Dshmem_md.c192 DWORD rc; local
195 rc = WaitForMultipleObjects(count, handles,
198 return (rc == WAIT_OBJECT_0) ? SYS_OK : SYS_ERR;
262 DWORD rc; local
277 rc = WaitForMultipleObjects(count, handles,
280 if (rc == WAIT_OBJECT_0) {
283 } else if (rc == WAIT_OBJECT_0 + 1) {
286 } else if (rc == WAIT_TIMEOUT) {
/openjdk7/jdk/test/java/io/PipedInputStream/
H A DCloseAndAvailableRC.java38 CloseAndAvailableRC rc = new CloseAndAvailableRC();
39 rc.go();
/openjdk7/langtools/test/tools/javac/
H A DT6668802.java69 int rc = com.sun.tools.javac.Main.compile(opts, out);
70 if (rc == 0)
H A DT6873849.java58 int rc = com.sun.tools.javac.Main.compile(args.toArray(new String[args.size()]), pw);
62 if (rc != 0)
/openjdk7/langtools/test/tools/javac/options/
H A DT6986895.java56 int rc = com.sun.tools.javac.Main.compile(args, pw);
58 System.err.println("compilation failed; rc=" + rc);

Completed in 66 milliseconds

12345678910