Searched refs:rc (Results 101 - 125 of 242) sorted by relevance

12345678910

/openjdk7/langtools/test/tools/javac/processing/6350124/
H A DT6350124.java94 int rc = t.run(System.in, System.out, System.err, args);
97 if (rc != 0)
/openjdk7/langtools/test/tools/javadoc/6964914/
H A DTest.java57 int rc = com.sun.tools.javadoc.Main.execute(
66 System.err.println("javadoc exit: rc=" + rc);
/openjdk7/jdk/make/bridge/Jabswitch/
H A DMakefile37 VERSIONINFO_RESOURCE = $(CLOSED_PLATFORM_SRC)/native/sun/bridge/AccessBridgeStatusWindow.rc
63 vpath %.rc $(CLOSED_PLATFORM_SRC)/native/sun/bridge
/openjdk7/jdk/make/bridge/WindowsAccessBridge/
H A DMakefile56 VERSIONINFO_RESOURCE = $(CLOSED_PLATFORM_SRC)/native/sun/bridge/AccessBridgeStatusWindow.rc
71 vpath %.rc $(CLOSED_PLATFORM_SRC)/native/sun/bridge
/openjdk7/jdk/src/windows/native/sun/net/dns/
H A DResolverConfigurationImpl.c275 DWORD rc, xfer; local
278 rc = NotifyAddrChange(&h, &ol);
279 if (rc == ERROR_IO_PENDING) {
280 rc = GetOverlappedResult(h, &ol, &xfer, TRUE);
281 if (rc != 0) {
/openjdk7/langtools/test/tools/javac/6917288/
H A DT6917288.java65 int rc = compile(opts, f);
66 if (rc != 0) {
67 error("compilation failed: rc=" + rc);
85 int rc = com.sun.tools.javac.Main.compile(args.toArray(new String[args.size()]), pw);
90 return rc;
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DMap.java130 RegionContainment rc = areas.elementAt(counter);
131 if (rc != null && rc.contains(x, y, width, height)) {
152 RegionContainment rc = null;
156 rc = new RectangleRegionContainment(attributes);
159 rc = new CircleRegionContainment(attributes);
162 rc = new PolygonRegionContainment(attributes);
165 rc = DefaultRegionContainment.sharedInstance();
169 rc = null;
171 return rc;
[all...]
/openjdk7/langtools/test/tools/javac/Paths/
H A DDiagnostics.sh49 output=`"$@" 2>&1`; rc="$?"
51 test $rc -eq 0 || Fail "Command \"$*\" failed with exitValue $rc";
64 output=`"$@" 2>&1`; rc="$?"
69 test "$rc" -ne 0 && \
70 Fail "Command \"$*\" failed with return code $rc"
74 test "$rc" -eq 0 && \
/openjdk7/langtools/test/tools/javac/api/
H A DT6430241.java84 int rc = com.sun.tools.javac.Main.compile(args, pw);
87 checkCompilationOK(rc);
111 int rc = tool.run(null, null, ps, args);
115 checkCompilationOK(rc);
204 void checkCompilationOK(int rc) { argument
205 if (rc != 0)
206 error("compilation failed, rc: " + rc);
/openjdk7/langtools/test/tools/javac/
H A DT6558476.java87 int rc = Main.compile(new String[]{"-d", outputDir.getPath(),
91 if (rc != 0) {
92 throw new Error("Couldn't compile the file (exit code=" + rc + ")");
H A DT6999210.java84 int rc = com.sun.tools.javac.Main.compile(args, pw);
89 if (rc != 0)
90 throw new Exception("compilation failed, rc=" + rc);
/openjdk7/langtools/test/tools/javac/file/
H A DT7018098.java83 int rc = com.sun.tools.javac.Main.compile(args, pw);
88 if (rc != 0)
89 throw new Exception("compilation failed unexpectedly: rc=" + rc);
/openjdk7/langtools/test/tools/javac/processing/options/
H A DTestImplicitNone.java78 int rc = com.sun.tools.javac.Main.compile(args.toArray(new String[args.size()]), pw);
82 if (rc != 0)
83 throw new Exception("compilation failed: rc=" + rc);
/openjdk7/langtools/test/tools/javadoc/6942366/
H A DT6942366.java90 int rc = com.sun.tools.javadoc.Main.execute(args.toArray(new String[args.size()]));
91 if (rc != 0)
92 throw new Exception("unexpected exit from javadoc, rc=" + rc);
/openjdk7/langtools/test/tools/javap/
H A DT4777949.java77 int rc = com.sun.tools.javac.Main.compile(new String[] { "-d", ".", f.getPath() });
78 if (rc != 0)
79 throw new Error("compilation failed. rc=" + rc);
H A DT6716452.java100 int rc = com.sun.tools.javac.Main.compile(new String[] { "-g", f.getPath() });
101 if (rc != 0)
102 throw new Error("compilation failed. rc=" + rc);
/openjdk7/jdk/src/macosx/native/sun/awt/splashscreen/
H A Dsplashscreen_sys.m80 size_t rc;
112 rc = iconv(cd, (void*)&in, &inSize, &out, &outSize);
115 if (rc == (size_t)-1) {
190 int rc;
193 rc = pthread_create(&thr, &attr, SplashScreenThread, (void *) splash);
276 int rc;
291 rc = poll(pfd, 1, timeout);
298 if (rc <= 0) {
/openjdk7/jdk/src/share/back/
H A DdebugLoop.c224 jint rc; local
226 rc = transport_receivePacket(&packet);
229 if (rc != 0 || (rc == 0 && packet.type.cmd.len == 0)) {
H A DoutStream.c409 jint rc; local
421 rc = transport_sendPacket(&stream->packet);
422 return rc;
450 rc = transport_sendPacket(&stream->packet);
454 return rc;
460 jint rc; local
468 rc = outStream_send(stream);
469 if (rc == 0) {
477 jint rc; local
479 rc
[all...]
/openjdk7/hotspot/src/share/vm/services/
H A DmemRecorder.cpp164 MemPointerRecord* rc = (MemPointerRecord*)itr.current(); local
165 while (rc != NULL) {
166 assert(rc->seq() != seq, "dup seq");
167 rc = (MemPointerRecord*)itr.next();
/openjdk7/jdk/src/share/demo/jvmti/gctest/
H A Dgctest.c153 jint rc; local
159 rc = (*vm)->GetEnv(vm, (void **)&jvmti, JVMTI_VERSION);
160 if (rc != JNI_OK) {
161 fatal_error("ERROR: Unable to create jvmtiEnv, rc=%d\n", rc);
/openjdk7/jdk/test/java/util/zip/
H A DFlaterTest.java66 int rc = 0;
71 rc = deflater.deflate(out);
73 if (debug) System.out.println("deflatedLength is " + rc);
74 return rc;
/openjdk7/jdk/test/sun/net/idn/
H A DNFS4StringPrep.java123 int left, middle, right,rc;
130 rc= sortedArr[middle].compareTo(target);
132 if(rc<0){
134 }else if(rc >0){
/openjdk7/jdk/src/share/bin/
H A Dparse_manifest.c486 int rc; local
501 if (rc = find_file(fd, &entry, manifest_name) != 0) {
511 while ((rc = parse_nv_pair(&lp, &name, &value)) > 0) {
526 if (rc == 0)
585 int rc; local
595 if (rc = find_file(fd, &entry, manifest_name) != 0) {
607 while ((rc = parse_nv_pair(&lp, &name, &value)) > 0) {
612 return (rc == 0) ? 0 : -2;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/client/
H A DAsyncResponseImpl.java90 public void setResponseContext(ResponseContext rc) { argument
91 responseContext = rc;

Completed in 101 milliseconds

12345678910