Searched refs:error (Results 76 - 100 of 894) sorted by relevance

1234567891011>>

/openjdk7/hotspot/src/share/vm/services/
H A DheapDumper.hpp56 // string representation of error
57 char* error() const { return _error; } function in class:HeapDumper
58 void set_error(char* error);
77 // returns error message (resource allocated), or NULL if no error
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dalloc.h50 #error Multiple definitions of TRY
54 #error Multiple definitions of TRY_NO_VERIFY
58 #error Multiple definitions of CATCH_BAD_ALLOC
62 #error Multiple defintions of CATCH_BAD_ALLOC_RET
66 #error Multiple definitions of TRY_NO_JNI
70 #error Multiple definitions of TRY_NO_VERIFY_NO_JNI
74 #error Multiple definitions of CATCH_BAD_ALLOC_NO_JNI
78 #error Multiple defintions of CATCH_BAD_ALLOC_RET_NO_JNI
/openjdk7/jdk/test/java/beans/XMLDecoder/
H A DTest4864117.java57 Exception error = null;
62 error = exception;
65 error = exception.getException();
66 if (error == null) {
67 error = exception;
71 error = exception;
73 if (error != null) {
74 throw new Error("unexpected error", error);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wscompile/
H A DDefaultAuthenticator.java67 error(new SAXParseException(WscompileMessages.WSIMPORT_AUTH_FILE_NOT_FOUND(authFile.getCanonicalPath(), defaultAuthfile), null));
69 error(new SAXParseException(WscompileMessages.WSIMPORT_FAILED_TO_PARSE(authFile,e.getMessage()), null));
75 error(new SAXParseException("Authorization file: "+authFile + " does not have read permission!", null));
102 error(new SAXParseException(e.getMessage(), null));
105 error(new SAXParseException(WscompileMessages.WSIMPORT_AUTH_FILE_NOT_FOUND(authFile, defaultAuthfile), null, e));
129 error(new SAXParseException(WscompileMessages.WSIMPORT_ILLEGAL_AUTH_INFO(url), locator));
132 error(new SAXParseException(WscompileMessages.WSIMPORT_ILLEGAL_AUTH_INFO(url), locator));
136 error(new SAXParseException(WscompileMessages.WSIMPORT_ILLEGAL_AUTH_INFO(text), locator));
141 error(new SAXParseException(WscompileMessages.WSIMPORT_FAILED_TO_PARSE(authFile,e.getMessage()), locator));
146 * When user provides authfile explicitly using -Xauthfile we throw error otherwis
148 private void error(SAXParseException e){ method in class:DefaultAuthenticator
[all...]
/openjdk7/jdk/src/share/back/
H A DdebugInit.c127 jvmtiError error; local
128 error = JVMTI_FUNC_PTR(gdata->jvmti,SetEventNotificationMode)
130 if (error != JVMTI_ERROR_NONE) {
132 eventText(ei), jvmtiErrorText(error), error));
134 return error;
199 jvmtiError error; local
234 error = JVM_FUNC_PTR(vm,GetEnv)
236 if (error != JNI_OK) {
240 JVMTI_VERSION_1, error));
466 jvmtiError error; local
499 jvmtiError error; local
574 jdwpError error; member in struct:EnumerateArg
649 jniFatalError(JNIEnv *env, const char *msg, jvmtiError error, int exit_code) argument
686 jvmtiError error; local
1302 debugInit_exit(jvmtiError error, const char *msg) argument
[all...]
H A DoutStream.c47 stream->error = JDWP_ERROR(NONE);
51 stream->error = JDWP_ERROR(OUT_OF_MEMORY);
103 if (stream->error) {
104 return stream->error;
115 stream->error = JDWP_ERROR(OUT_OF_MEMORY);
116 return stream->error;
204 if (stream->error) {
205 return stream->error;
214 stream->error = JDWP_ERROR(OUT_OF_MEMORY);
215 return stream->error;
300 jdwpError error; local
398 outStream_setError(PacketOutputStream *stream, jdwpError error) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/javac/
H A DMain.java58 * The stream where error message are printed.
80 public static final int EXIT_SYSERR = 3; // System error or resource exhaustion.
108 * Top level error message. This method is called when the
111 private void error(String msg) { method in class:Main
116 private void error(String msg, String arg1) { method in class:Main
121 private void error(String msg, String arg1, String arg2) { method in class:Main
127 * Print usage message and make exit status an error.
129 * be an error.
132 error("main.usage", program);
230 error("java
[all...]
/openjdk7/jdk/src/share/demo/jvmti/minst/
H A Dminst.c36 * input validation and proper error handling, might not be present in
100 jvmtiError error; local
102 error = (*jvmti)->RawMonitorEnter(jvmti, gdata->lock);
103 check_jvmti_error(jvmti, error, "Cannot enter with raw monitor");
110 jvmtiError error; local
112 error = (*jvmti)->RawMonitorExit(jvmti, gdata->lock);
113 check_jvmti_error(jvmti, error, "Cannot exit with raw monitor");
335 /* Check for token scan error */
337 fatal_error("ERROR: include option error\n");
359 /* Check for token scan error */
380 jvmtiError error; local
[all...]
/openjdk7/jdk/make/tools/src/build/tools/jdwpgen/
H A DArrayRegionTypeNode.java43 error("Not implemented");
H A DNameNode.java44 error("Valueless Name asked for value");
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/api/
H A DErrorListener.java40 * However, to make the error handling easy (and make it work
48 void error(SAXParseException exception); method in interface:ErrorListener
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/core/
H A DErrorHandler.java50 * Receives a notification for an error in the annotated code.
52 void error( IllegalAnnotationException e ); method in interface:ErrorHandler
/openjdk7/jdk/src/solaris/native/sun/nio/ch/
H A DSocketChannelImpl.c53 int error = 0; local
75 result = getsockopt(fd, SOL_SOCKET, SO_ERROR, &error, &n);
79 } else if (error) {
80 handleSocketError(env, error);
/openjdk7/jdk/test/com/sun/net/httpserver/bugs/
H A DB6526913.java67 if (error) {
72 public static boolean error = false; field in class:B6526913
85 error = true;
100 error = true;
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_error.h36 * input validation and proper error handling, might not be present in
44 /* Macros over assert and error functions so we can capture the source loc. */
51 #define HPROF_JVMTI_ERROR(error,msg) \
52 error_handler(HPROF_BOOL(error!=JVMTI_ERROR_NONE), \
53 error, msg, __FILE__, __LINE__)
88 void error_handler(jboolean fatal, jvmtiError error,
/openjdk7/jdk/test/javax/management/mxbean/
H A DMBeanOperationInfoTest.java53 int error = 0;
81 error++;
86 if (error > 0) {
88 throw new Exception("TEST FAILED: " + error + " wrong return types");
/openjdk7/jdk/test/javax/management/remote/mandatory/connection/
H A DCloseableTest.java64 int error = 0;
70 error++;
74 if (error > 0) {
75 final String msg = "\nTest FAILED! Got " + error + " error(s)";
/openjdk7/jdk/src/share/classes/sun/net/www/http/
H A DChunkedInputStream.java117 * Indicates if an error was encountered when processing the chunked
120 private boolean error; field in class:ChunkedInputStream
211 * stream can be completely read without error.
218 if (!error && state == STATE_DONE) {
246 error = true;
256 error = true;
299 error = true;
318 error = true;
404 error = true;
408 error
[all...]
/openjdk7/langtools/test/tools/javac/boxing/
H A DT6614974.java34 public void error() { method in class:T6614974
/openjdk7/langtools/test/tools/javah/
H A DTestHelpOpts.java66 error("Unexpected exit: rc=" + rc);
70 error("expected text not found");
72 error("key not found in resource bundle: " + flat.replaceAll(".*(main.opt.[^ ]*).*", "$1"));
75 void error(String msg) { method in class:TestHelpOpts
/openjdk7/langtools/test/tools/javap/
H A DT6866657.java57 error("Can't find " + className);
66 error("Exception: " + e);
72 error("bad value found: " + found + " expected: " + expected);
75 void error(String msg) { method in class:T6866657
/openjdk7/jdk/src/windows/native/sun/nio/ch/
H A DWindowsAsynchronousFileChannelImpl.c55 int error = GetLastError(); local
56 if (error == ERROR_IO_PENDING)
58 if (error == ERROR_HANDLE_EOF)
85 int error = GetLastError(); local
86 if (error == ERROR_IO_PENDING)
114 int error = GetLastError(); local
115 if (error == ERROR_IO_PENDING) {
/openjdk7/jdk/test/javax/management/query/
H A DQueryMatchTest.java469 int error = 0;
490 error++;
494 return error;
499 int error = 0;
506 error += query(mbs, (String) tests[i][0], (String[][]) tests[i][1]);
509 if (error > 0) {
510 System.out.println("\nTest failed! " + error + " errors.\n");
/openjdk7/langtools/test/tools/javac/processing/6499119/
H A DClassProcessor.java64 error("did not find @foo.A");
85 error("Couldn't read package info file: " + ioe);
91 error("InputStream closing failed: " + e);
104 error("Couldn't create package info file: " + ioe);
110 error("OutputStream closing failed: " + e);
118 error("Unexpected value for " + label + "; actual=" + actual + ", expected=" + expect);
122 private void error(String msg) { method in class:ClassProcessor
/openjdk7/jdk/test/sun/security/krb5/auto/
H A DW83.java81 StringBuffer error = new StringBuffer();
86 error.append("Krb5LoginModule password login error\n");
92 error.append("Krb5LoginModule keytab login error\n");
109 error.append("kinit password login error\n");
118 error.append("kinit keytab login error\n");
124 if (error
[all...]

Completed in 100 milliseconds

1234567891011>>