Searched refs:rc (Results 1 - 25 of 362) sorted by relevance

1234567891011>>

/openjdk10/jdk/src/java.base/aix/native/libjli/
H A Djava_md_aix.c54 int rc = 0; local
57 return rc;
61 return rc;
66 rc = dladdr_dont_reload(addr, info);
69 if (rc == 0) {
71 rc = dladdr_dont_reload(addr0, info);
76 if (rc == 0) {
78 return rc;
79 rc = dladdr_dont_reload(addr, info);
80 if (rc
[all...]
/openjdk10/jdk/test/java/util/zip/ZipFile/
H A Ddeletetempjar.sh34 rc=$?
35 if [ $rc != 0 ]; then
36 echo Unexpected failure with exit status $rc
37 exit $rc
/openjdk10/hotspot/test/compiler/stringopts/
H A DTestOptimizeStringConcat.java40 String rc = null;
45 rc = "internal error";
48 rc = "the value null is not allowed, it is missing";
50 rc = "the value must not be empty";
53 if (rc == null) {
54 rc = "the value length must be between +minchar+ and +maxchar";
63 if (rc == null) {
64 rc = "the value contains an illegal character: '" + _value[i] + "', only following characters are allowed: '+allowedchars+'";
66 rc += " / the value contains an illegal character: '" + _value[i] + "', only following characters are allowed: '+allowedchars+'";
69 if (rc
[all...]
/openjdk10/hotspot/src/os/aix/vm/
H A Dmisc_aix.cpp34 const int rc = pthread_mutex_init(cs, NULL); local
35 assert0(rc == 0);
39 const int rc = pthread_mutex_destroy(cs); local
40 assert0(rc == 0);
44 const int rc = pthread_mutex_lock(cs); local
45 assert0(rc == 0);
49 const int rc = pthread_mutex_unlock(cs); local
50 assert0(rc == 0);
/openjdk10/langtools/test/jdk/javadoc/tool/6176978/
H A DT6176978.java52 int rc = com.sun.tools.javac.Main.compile(javac_args);
53 if (rc != 0)
54 throw new Error("javac exit code: " + rc);
62 rc = jdk.javadoc.internal.tool.Main.execute(jdoc_args);
63 if (rc == 0)
74 rc = jdk.javadoc.internal.tool.Main.execute(jdoc_args);
75 if (rc != 0)
76 throw new Error("javadoc exit: " + rc);
/openjdk10/langtools/test/tools/javadoc/6176978/
H A DT6176978.java51 int rc = com.sun.tools.javac.Main.compile(javac_args);
52 if (rc != 0)
53 throw new Error("javac exit code: " + rc);
61 rc = com.sun.tools.javadoc.Main.execute(jdoc_args);
62 if (rc == 0)
73 rc = com.sun.tools.javadoc.Main.execute(jdoc_args);
74 if (rc != 0)
75 throw new Error("javadoc exit: " + rc);
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/client/
H A DResponseContextReceiver.java42 void setResponseContext(ResponseContext rc); argument
/openjdk10/langtools/test/tools/javah/
H A DT7185778.java48 int rc = com.sun.tools.javah.Main.run(args, null);
49 if ( rc != 0) {
50 throw new Error("javah returned non zero: " + rc);
/openjdk10/jdk/src/java.security.jgss/share/classes/sun/security/krb5/internal/rcache/
H A DMemoryCache.java57 AuthList rc = content.get(key);
61 if (rc == null) {
62 rc = new AuthList(lifespan);
63 rc.put(time, currTime);
64 if (!rc.isEmpty()) {
65 content.put(key, rc);
69 System.out.println("MemoryCache: Existing AuthList:\n" + rc);
71 rc.put(time, currTime);
72 if (rc.isEmpty()) {
80 for (AuthList rc
[all...]
/openjdk10/jdk/src/java.desktop/aix/native/libawt/
H A Dporting_aix.c34 int rc = loadquery(L_GETINFO,dladdr_buffer, sizeof(dladdr_buffer)); local
35 if (rc == -1) {
74 int rc = dladdr_dont_reload(addr, info); local
75 if (rc == 0) {
76 rc = dladdr_dont_reload(addr0, info);
77 if (rc == 0) { /* [sic] */
79 rc = dladdr_dont_reload(addr, info);
80 if (rc == 0) {
81 rc = dladdr_dont_reload(addr0, info);
85 return rc;
[all...]
/openjdk10/langtools/test/jdk/javadoc/tool/doclint/
H A DImplicitHeadersTest.java41 int rc = jdk.javadoc.internal.tool.Main.execute(javadocArgs);
42 if (rc != 0)
43 throw new Error("unexpected exit: rc=" + rc);
/openjdk10/jdk/src/jdk.jdi/share/native/libdt_shmem/
H A DSharedMemoryTransport.c84 jint rc; local
86 rc = shmemBase_accept(transport, (long)timeout, &connection);
87 if (rc != SYS_OK) {
88 if (rc == SYS_TIMEOUT) {
92 throwShmemException(env, "shmemBase_accept failed", rc);
108 jint rc; local
119 rc = shmemBase_attach(addrChars, (long)timeout, &connection);
120 if (rc != SYS_OK) {
121 throwShmemException(env, "shmemBase_attach failed", rc);
141 jint rc local
162 jint rc; local
187 jint rc; local
[all...]
/openjdk10/langtools/test/tools/javap/
H A DT6715251.java53 int rc = javap(args);
54 if (rc != expect)
55 error("bad result: expected: " + expect + ", found " + rc + "\n"
63 int rc = com.sun.tools.javap.Main.run(args, pw);
65 return rc;
H A DT6587786.java47 int rc = com.sun.tools.javap.Main.run(args, out);
48 if (rc != 0)
49 throw new Error("javap failed. rc=" + rc);
H A DT6715753.java42 int rc = com.sun.tools.javap.Main.run(args, pw);
44 if (rc == 0
47 System.err.println("rc: " + rc + ", log=\n" + log);
H A DT6715767.java42 int rc = com.sun.tools.javap.Main.run(args, pw);
43 if (rc != 0 ||
45 System.err.println("rc: " + rc);
H A DT4884240.java42 int rc = com.sun.tools.javap.Main.run(args, pw);
43 if (rc != 0)
44 throw new Exception("unexpected return code: " + rc);
H A DT6622216.java56 int rc = com.sun.tools.javac.Main.compile(new String[] { f.getPath() });
57 if (rc != 0)
58 throw new Error("compilation failed. rc=" + rc);
66 int rc = com.sun.tools.javap.Main.run(new String[] { "-v", f.getPath() }, out);
67 if (rc != 0)
68 throw new Error("javap failed. rc=" + rc);
H A DT4075403.java57 int rc = com.sun.tools.javac.Main.compile(new String[] { "-g", f.getPath() });
58 if (rc != 0)
59 throw new Error("compilation failed. rc=" + rc);
67 int rc = com.sun.tools.javap.Main.run(new String[] { "-classpath", ".", className }, out);
68 if (rc != 0)
69 throw new Error("javap failed. rc=" + rc);
/openjdk10/langtools/test/jdk/javadoc/tool/
H A DT6551367.java60 int rc = jdk.javadoc.internal.tool.Main.execute(array);
61 if (rc != 0)
62 throw new Error("unexpected exit from javadoc: " + rc);
/openjdk10/langtools/test/tools/javac/code/
H A DArrayClone.java45 int rc = com.sun.tools.javap.Main.run(args, pw);
46 if (rc != 0)
47 throw new Error("javap failed; exit " + rc);
/openjdk10/langtools/test/tools/javac/file/
H A DT8143268.java53 int rc = com.sun.tools.javac.Main.compile(args, pw);
54 if (rc != 0) {
55 throw new Error("compilation failed: " + rc);
/openjdk10/langtools/test/tools/javap/6937244/
H A DT6937244.java42 int rc = com.sun.tools.javap.Main.run(args, pw);
46 if (rc != 0)
47 throw new Exception("unexpected exit from javap: " + rc);
/openjdk10/jdk/src/jdk.jlink/share/classes/jdk/tools/jimage/
H A DMain.java34 int rc = t.run(args);
35 System.exit(rc);
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/javah/
H A DMain.java46 int rc = t.run(args);
47 System.exit(rc);

Completed in 130 milliseconds

1234567891011>>