Searched refs:rc (Results 26 - 50 of 242) sorted by relevance

12345678910

/openjdk7/langtools/test/tools/javah/
H A DMissingParamClassTest.sh89 rc=1
93 rc=1
112 rc=1
116 rc=1
119 if [ "$rc" = "" ]; then
H A DVersionTest.java50 int rc = com.sun.tools.javah.Main.run(args, pw);
52 if (rc != 0)
53 throw new Error("javah failed: rc=" + rc);
/openjdk7/jdk/src/share/transport/shmem/
H A DshmemBack.c170 jint rc; local
176 rc = shmemBase_listen(address, &transport);
182 if (rc == SYS_OK) {
185 rc = shmemBase_name(transport, &name);
186 if (rc == SYS_OK) {
204 jint rc; local
213 rc = shmemBase_accept(transport, (long)acceptTimeout, &connection);
214 if (rc != SYS_OK) {
215 if (rc == SYS_TIMEOUT) {
222 rc
243 jint rc; local
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/jstat/
H A DOptionOutputFormatter.java65 RowClosure rc = new RowClosure(vm);
66 format.apply(rc);
67 return rc.getRow();
/openjdk7/langtools/test/tools/javadoc/
H A DT6968833.java42 int rc = com.sun.tools.javadoc.Main.execute(args);
43 if (rc == 0)
44 throw new Error("Unexpected exit from javadoc: " + rc);
/openjdk7/langtools/test/tools/javap/
H A DT4501660.java55 int rc = com.sun.tools.javap.Main.run(args, out);
56 if (rc != 0)
57 throw new Error("javap failed. rc=" + rc);
H A DT4876942.java50 int rc = com.sun.tools.javap.Main.run(args, out);
51 if (rc != (args.length == 0 ? 2 : 0))
52 throw new Error("javap failed. rc=" + rc);
H A DT6980017.java47 int rc = com.sun.tools.javap.Main.run(args, pw);
49 if (rc != 0)
50 error("Unexpected exit code: " + rc);
H A DT4459541.java82 int rc = com.sun.tools.javac.Main.compile(new String[] { f.getPath() });
83 if (rc != 0)
84 throw new Error("compilation failed. rc=" + rc);
92 int rc = com.sun.tools.javap.Main.run(new String[] { "-l", f.getPath() }, out);
93 if (rc != 0)
94 throw new Error("javap failed. rc=" + rc);
H A DT6474890.java62 int rc = com.sun.tools.javac.Main.compile(
64 if (rc != 0)
65 throw new Error("compilation failed. rc=" + rc);
89 int rc = com.sun.tools.javap.Main.run(args, out);
90 if (rc != 0)
91 throw new Error("javap failed. rc=" + rc);
H A DT6622232.java66 int rc = com.sun.tools.javac.Main.compile(new String[] { "-g", f.getPath() });
67 if (rc != 0)
68 throw new Error("compilation failed. rc=" + rc);
76 int rc = com.sun.tools.javap.Main.run(new String[] { "-v", f.getPath() }, out);
77 if (rc != 0)
78 throw new Error("javap failed. rc=" + rc);
H A DT7004698.java77 int rc = com.sun.tools.javac.Main.compile(args, pw);
82 if (rc != 0)
83 throw new Exception("javac failed unexpectedly; rc=" + rc);
89 int rc = com.sun.tools.javap.Main.run(args, pw);
94 if (rc != 0)
95 throw new Exception("javap failed unexpectedly; rc=" + rc);
H A DT4501661.java88 int rc = com.sun.tools.javac.Main.compile(new String[] { "-g", f.getPath() });
89 if (rc != 0)
90 throw new Error("compilation failed. rc=" + rc);
98 int rc = com.sun.tools.javap.Main.run(args.toArray(new String[args.size()]), pw);
102 if (rc == 0)
105 error("javap failed unexpectedly; rc=" + rc + "\n" + sw);
107 if (rc == 0)
/openjdk7/langtools/test/tools/javap/4111861/
H A DT4111861.java54 int rc = com.sun.tools.javac.Main.compile(args, pw);
55 if (rc != 0)
56 throw new Exception("javac failed, rc=" + rc);
63 int rc = com.sun.tools.javap.Main.run(args, pw);
64 if (rc != 0)
65 throw new Exception("javap failed, rc=" + rc);
/openjdk7/langtools/test/tools/javac/
H A DT6405099.java57 int rc = com.sun.tools.javac.Main.compile(args, pw);
58 if (rc != 0)
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DFieldImpl.java59 int rc = declaringType.compareTo(field.declaringType());
60 if (rc == 0) {
61 rc = declaringType.indexOf(this) -
64 return rc;
/openjdk7/jdk/src/share/native/com/sun/tools/jdi/
H A DSharedMemoryConnection.c253 jint rc; local
255 rc = shmemBase_receiveByte(connection, &b);
256 if (rc != SYS_OK) {
257 throwShmemException(env, "shmemBase_receiveByte failed", rc);
273 jint rc; local
275 rc = shmemBase_receivePacket(connection, &packet);
276 if (rc != SYS_OK) {
277 throwShmemException(env, "shmemBase_receivePacket failed", rc);
297 jint rc; local
299 rc
315 jint rc; local
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/native2ascii/
H A DA2NFilter.java112 char rc = 0;
115 rc = (char)Integer.parseInt(new String(cBuf, i, 4), 16);
119 if (isUE && Main.canConvert(rc)) {
121 buf[retChars++] = rc;
/openjdk7/jdk/test/sun/security/mscapi/
H A DPublicKeyInterop.sh67 rc=$?
77 exit $rc
H A DSignUsingNONEwithRSA.sh66 rc=$?
76 exit $rc
H A DSignUsingSHA2withRSA.sh66 rc=$?
76 exit $rc
/openjdk7/langtools/test/tools/javac/6917288/
H A DGraphicalInstallerTest.java43 int rc = compile(opts, new File(testSrc, "GraphicalInstaller.java"));
44 if (rc != 0) {
45 error("compilation failed: rc=" + rc);
71 int rc = com.sun.tools.javac.Main.compile(args.toArray(new String[args.size()]), pw);
76 return rc;
/openjdk7/langtools/test/tools/javah/T7126832/
H A DT7126832.java62 + " rc:" + expectRC
67 int rc = 0;
70 rc = com.sun.tools.javah.Main.run(args.toArray(new String[args.size()]), pw);
73 rc = 1;
80 if (rc != expectRC) {
81 error("Unexpected exit code: " + rc + "; expected: " + expectRC);
/openjdk7/jdk/src/share/classes/java/awt/image/renderable/
H A DRenderableImageProducer.java68 RenderContext rc; field in class:RenderableImageProducer
78 * @param rc the RenderContext to use for producing the pixels.
81 RenderContext rc) {
83 this.rc = rc;
89 * @param rc the new RenderContext.
91 public synchronized void setRenderContext(RenderContext rc) { argument
92 this.rc = rc;
160 if (rc !
80 RenderableImageProducer(RenderableImage rdblImage, RenderContext rc) argument
[all...]
/openjdk7/langtools/test/tools/javac/6394683/
H A DT6394683.java70 int rc = javac.run(null, null, null,
73 if (rc != 0)
74 throw new AssertionError("compilation failed, rc=" + rc + " creating B.class");
127 int rc = javac.run(null, null, null,
133 if (rc != 0) {
134 error("compilation failed, rc=" + rc + ", option: " + opt + ", older:" + older + ", newer" + newer);

Completed in 98 milliseconds

12345678910