Searched refs:rc (Results 51 - 75 of 242) sorted by relevance

12345678910

/openjdk7/langtools/test/tools/javac/6627362/
H A DT6627362.java83 int rc = com.sun.tools.javac.Main.compile(args);
84 if (rc != 0)
85 throw new Error("javac failed: " + Arrays.asList(args) + ": " + rc);
89 int rc = com.sun.tools.javap.Main.run(args, out);
90 if (rc != 0)
91 throw new Error("javap failed: " + Arrays.asList(args) + ": " + rc);
/openjdk7/langtools/test/tools/javap/
H A DT6879371.java80 int rc = com.sun.tools.javac.Main.compile(
82 if (rc != 0)
83 throw new Error("compilation failed. rc=" + rc);
106 int rc = com.sun.tools.javap.Main.run(args, out);
107 if (rc != 0)
108 throw new Error("javap failed. rc=" + rc);
H A DT4880672.java68 int rc = com.sun.tools.javap.Main.run(args, out);
73 if (rc != 0)
74 throw new Error("javap failed. rc=" + rc);
H A DT4975569.java73 int rc = com.sun.tools.javap.Main.run(args, out);
74 if (rc != 0)
75 throw new Error("javap failed. rc=" + rc);
H A DT6824493.java79 int rc = com.sun.tools.javap.Main.run(args, pw);
80 if (rc != 0) {
81 error("unexpected return code from javap: " + rc);
H A DT6868539.java79 int rc = com.sun.tools.javap.Main.run(args, out);
80 if (rc != 0)
81 throw new Error("javap failed. rc=" + rc);
/openjdk7/langtools/test/tools/javac/6403424/
H A DT6403424.java60 int rc = javac.run(null, null, null, args);
61 if (rc != 0)
/openjdk7/langtools/test/tools/javac/
H A DT6942649.java47 int rc = com.sun.tools.javac.Main.compile(new String[] { opt }, pw);
50 System.err.println("javac rc=" + rc + "\n" + out);
H A DEarlyAssertWrapper.java79 int rc = p.waitFor();
80 if (rc != 0 || out.length() > 0)
81 throw new Error("failed: rc=" + rc + (out.length() > 0 ? ": " + out : ""));
H A DT6595666.java58 private static void compile(int rc, String... args) throws Exception { argument
65 if (rc != rc2)
66 throw new Exception("bad exit code; expected " + rc + ", found " + rc2);
H A DT6759996.java54 int rc = com.sun.tools.javac.Main.compile(args, out);
56 if (rc != 0)
57 throw new Error("javac failed: rc=" + rc);
/openjdk7/jdk/src/share/demo/jvmti/versionCheck/
H A DversionCheck.c94 jint rc; local
100 rc = (*vm)->GetEnv(vm, (void **)&jvmti, JVMTI_VERSION);
101 if (rc != JNI_OK) {
102 fatal_error("ERROR: Unable to create jvmtiEnv, GetEnv failed, error=%d\n", rc);
/openjdk7/jdk/src/share/sample/nio/server/
H A DReply.java74 Reply(Code rc, Content c) { argument
75 this(rc, c, null);
78 Reply(Code rc, Content c, Request.Action head) { argument
79 code = rc;
/openjdk7/jdk/test/sun/security/mscapi/
H A DShortRSAKey1024.sh85 rc=$?
96 exit $rc
/openjdk7/langtools/test/tools/javac/Paths/
H A DUtil.sh48 printf "%s\n" "$*"; "$@"; rc="$?";
49 test "$rc" -eq 0 || Die "Command \"$*\" failed with exitValue $rc";
57 test "$#" != 2 && Die "Usage: Report success|failure rc"
68 Die "Usage: Report success|failure rc"
/openjdk7/langtools/test/tools/javac/api/ToolProvider/
H A DHelloWorldTest.java69 int rc = p.waitFor();
70 if (rc != 0)
71 error("Unexpected exit code: " + rc);
H A DToolProviderTest1.java68 int rc = p.waitFor();
69 if (rc != 0)
70 error("Unexpected exit code: " + rc);
H A DToolProviderTest2.java70 int rc = p.waitFor();
71 if (rc != 0)
72 error("Unexpected exit code: " + rc);
/openjdk7/langtools/test/tools/javac/lib/
H A DCompileFail.java52 int rc = com.sun.tools.javac.Main.compile(
55 if (rc != expected_rc)
56 throw new Error("unexpected exit code: " + rc
/openjdk7/langtools/test/tools/javac/options/
H A DT7022337.java69 int rc = com.sun.tools.javac.Main.compile(args, pw);
74 if (rc != 0)
75 throw new Exception("compilation failed unexpectedly: rc=" + rc);
/openjdk7/langtools/test/tools/javadoc/6964914/
H A DTestStdDoclet.java81 int rc = p.waitFor();
82 if (rc != 0)
83 System.err.println("javadoc failed, rc:" + rc);
/openjdk7/langtools/test/tools/javadoc/parser/7091528/
H A DT7091528.java54 int rc = com.sun.tools.javadoc.Main.execute("javadoc", pw, pw, pw, doclet, args);
62 if (rc != 0)
63 System.err.println("javadoc failed: exit code = " + rc);
/openjdk7/langtools/test/tools/javah/
H A DTestHelpOpts.java60 int rc = com.sun.tools.javah.Main.run(args, pw);
65 if (rc != 0)
66 error("Unexpected exit: rc=" + rc);
/openjdk7/langtools/test/tools/javap/4870651/
H A DT4870651.java60 int rc = com.sun.tools.javap.Main.run(args, out);
61 if (rc != 0)
62 throw new Error("javap failed. rc=" + rc);
/openjdk7/langtools/test/tools/javap/6937244/
H A DT6937244A.java42 int rc = com.sun.tools.javap.Main.run(args, pw);
46 if (rc != 0)
47 throw new Exception("unexpected exit from javap: " + rc);

Completed in 145 milliseconds

12345678910