Searched defs:error (Results 201 - 225 of 394) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/gui/
H A DEnvironment.java30 * input validation and proper error handling, might not be present in
114 public void error(String message) { method in class:Environment
/openjdk7/jdk/src/share/classes/com/sun/tools/extcheck/
H A DExtCheck.java100 error("Malformed URL ");
102 error("IO Exception ");
105 error("No manifest available in "+targetFile);
116 error("No attributes available in the manifest");
119 error("The target file does not have a specification title");
121 error("The target file does not have a specification version");
170 error("Malformed URL");
172 error("IO Exception");
310 * Throws a RuntimeException with a message describing the error.
312 static void error(Strin method in class:ExtCheck
[all...]
/openjdk7/jdk/src/share/back/
H A DEventRequestImpl.c282 jvmtiError error; local
283 error = eventHandler_installExternal(node);
284 serror = map2jdwpError(error);
308 jvmtiError error; local
329 error = eventHandler_freeByID(ei, handlerID);
330 if (error != JVMTI_ERROR_NONE) {
331 outStream_setError(out, map2jdwpError(error));
340 jvmtiError error; local
342 error = eventHandler_freeAll(EI_BREAKPOINT);
343 if (error !
[all...]
H A DObjectReferenceImpl.c74 jvmtiError error; local
124 error = JVMTI_ERROR_NONE;
126 error = AGENT_ERROR_JNI_EXCEPTION;
129 return error;
137 jvmtiError error; local
151 error = JVMTI_ERROR_NONE;
172 error = fieldSignature(clazz, field, NULL, &signature, NULL);
173 if (error != JVMTI_ERROR_NONE) {
177 error = readFieldValue(env, in, clazz, object, field, signature);
180 if (error !
210 jvmtiError error; local
246 jvmtiError error; local
264 jvmtiError error; local
332 jvmtiError error; local
[all...]
H A DThreadReferenceImpl.c55 jvmtiError error; local
59 error = JVMTI_FUNC_PTR(gdata->jvmti,GetThreadInfo)
62 if (error != JVMTI_ERROR_NONE) {
63 outStream_setError(out, map2jdwpError(error));
79 jvmtiError error; local
91 error = threadControl_suspendThread(thread, JNI_FALSE);
92 if (error != JVMTI_ERROR_NONE) {
93 outStream_setError(out, map2jdwpError(error));
101 jvmtiError error; local
115 error
127 jvmtiError error; local
172 jvmtiError error; local
196 jvmtiError error; local
216 jvmtiError error; local
317 jvmtiError error; local
370 jvmtiError error; local
420 jvmtiError error; local
440 jvmtiError error; local
470 jvmtiError error; local
493 jvmtiError error; local
541 jvmtiError error = JVMTI_ERROR_NONE; local
576 jvmtiError error; local
[all...]
H A DclassTrack.c178 jvmtiError error; local
181 error = allLoadedClasses(&classes, &classCount);
182 if ( error != JVMTI_ERROR_NONE ) {
184 EXIT_ERROR(error,"loaded classes");
216 jvmtiError error; local
232 error = classSignature(klass, &(node->signature), NULL);
233 if (error != JVMTI_ERROR_NONE) {
235 EXIT_ERROR(error,"signature");
258 jvmtiError error; local
261 error
[all...]
H A Derror_messages.c98 /* Generate error message */
124 /* Print assertion error message to stderr. */
141 jvmtiErrorText(jvmtiError error) argument
143 switch (error) {
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiEnvFill.java76 error("expected '" + functionPrefix + "'");
80 error("missing open paren");
85 error("missing close paren - must be on same line");
91 error("function declaration first line must end with open bracket '{', instead got '" +
97 line = ""; // so error does not look wierd
98 error("unexpected end of file");
108 error("function end is malformed - should be: " + expected);
181 void error(String msg) { method in class:SourceFile
182 System.err.println("Fatal error parsing file: " + fn);
196 error("unexpecte
[all...]
/openjdk7/hotspot/src/share/vm/services/
H A DdiagnosticCommand.cpp273 char* error = dumper.error_as_C_string(); local
274 if (error == NULL) {
277 output()->print_cr("%s", error);
/openjdk7/jaxp/src/org/xml/sax/
H A DHandlerBase.java348 * Receive notification of a recoverable parser error.
352 * for each error, such as inserting the message in a log file or
361 public void error (SAXParseException e) method in class:HandlerBase
369 * Report a fatal XML parsing error.
373 * they need to take specific actions for each fatal error (such as
379 * @param e The error information encoded as an exception.
/openjdk7/jaxp/src/org/xml/sax/helpers/
H A DDefaultHandler.java107 * @exception java.io.IOException If there is an error setting
446 * Receive notification of a recoverable parser error.
450 * for each error, such as inserting the message in a log file or
453 * @param e The error information encoded as an exception.
459 public void error (SAXParseException e) method in class:DefaultHandler
467 * Report a fatal XML parsing error.
471 * they need to take specific actions for each fatal error (such as
477 * @param e The error information encoded as an exception.
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/api/impl/s2j/
H A DSchemaCompilerImpl.java82 * User-specified error receiver.
92 * Set to true once an error is found.
144 // parsers are required to report an error to ErrorHandler,
145 // so we should never see this error.
246 return null; // error in the correctness check. abort now
264 if(hadError) return null; // if we have any error by now, abort
276 // no parser error is possible.
279 // the error should have already been reported.
298 public void error(SAXParseException exception) { method in class:SchemaCompilerImpl
301 errorListener.error(exceptio
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/
H A DAbstractExtensionBindingChecker.java69 * If false, any use of extensions is reported as an error.
77 * This error handler will receive detected errors.
94 * This method does all the error handling.
100 error( Messages.ERR_UNSUPPORTED_EXTENSION.format(uri,nearest) );
116 error( Messages.ERR_PLUGIN_NOT_ENABLED.format(owner.getOptionName(),uri));
119 error( Messages.ERR_UNSUPPORTED_EXTENSION.format(uri) );
123 // as an error recovery enable this namespace URI anyway.
142 error( Messages.ERR_ILLEGAL_CUSTOMIZATION_TAGNAME.format(qName) );
195 * Reports an error and returns the created SAXParseException
197 protected final SAXParseException error( Strin method in class:AbstractExtensionBindingChecker
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/relaxng/
H A DTypeUseBinder.java120 return error();
158 return error();
162 return error();
166 return error();
169 private TypeUse error() { method in class:TypeUseBinder
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/
H A DCoordinator.java172 * Gets the current location. Used for reporting the error source location.
176 public final void error(SAXParseException exception) throws SAXException { method in class:Coordinator
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dextutil.h147 int (*error)( member in struct:_XExtensionHooks
/openjdk7/jdk/src/solaris/native/sun/security/jgss/wrapper/
H A DNativeFunc.c69 char *error; local
76 error = NULL;
283 error = dlerror();
287 return error;
/openjdk7/jdk/src/windows/native/sun/nio/ch/
H A DIOUtil.c145 int error = WSAGetLastError(); local
146 handleSocketError(env, (jint)error);
175 int error = GetLastError(); local
176 if (error == ERROR_NO_DATA) {
H A DWindowsAsynchronousSocketChannelImpl.c112 int error = GetLastError(); local
113 if (error == ERROR_IO_PENDING) {
172 int error = WSAGetLastError(); local
173 if (error == WSA_IO_PENDING) {
176 if (error == WSAESHUTDOWN) {
204 int error = WSAGetLastError(); local
205 if (error == WSA_IO_PENDING) {
208 if (error == WSAESHUTDOWN) {
/openjdk7/jdk/test/java/net/Authenticator/
H A DB6870935.java49 static volatile boolean error = false; field in class:B6870935
108 error = true;
256 error = true;
258 if (error) {
/openjdk7/langtools/make/tools/CompileProperties/
H A DCompileProperties.java67 void error(String msg, Exception e); method in interface:CompileProperties.Log
84 public void error(String msg, Exception e) {
114 log.error("options parsed but no files to compile", null);
162 log.error("The -optionsfile file is empty", null);
168 log.error("Cannot read all of -optionsfile file", null);
173 log.error("cannot open " + filename, e);
181 log.error("cannot close " + filename, e);
196 log.error("argument error", null);
212 log.error("Canno
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/main/
H A DRecognizedOptions.java65 void error(String key, Object... args); method in interface:RecognizedOptions.OptionHelper
87 public void error(String key, Object... args) { method in class:RecognizedOptions.GrumpyHelper
348 helper.error("err.invalid.source", operand);
359 helper.error("err.invalid.target", operand);
423 helper.error("err.empty.A.argument");
429 helper.error("err.invalid.A.key", option);
490 // prompt after each error
494 // dump stack on error
522 helper.error("err.error
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/
H A DMessager.java41 * Handle Resources. Access to error and warning counts.
101 * @param programName Name of the program (for error messages).
109 * @param programName Name of the program (for error messages).
110 * @param errWriter Stream for error messages
225 * Print error message, increment error count.
235 * Print error message, increment error count.
238 * @param pos the position where the error occurs
244 errWriter.println(prefix + ": " + getText("javadoc.error")
307 public void error(SourcePosition pos, String key) { method in class:Messager
317 public void error(SourcePosition pos, String key, String a1) { method in class:Messager
328 public void error(SourcePosition pos, String key, String a1, String a2) { method in class:Messager
340 public void error(SourcePosition pos, String key, String a1, String a2, String a3) { method in class:Messager
[all...]
/openjdk7/langtools/test/tools/javac/6341866/
H A DT6341866.java126 error("compilation failed");
135 error("B implicitly compiled unexpectedly");
137 error("B not impliictly compiled");
157 error("no diagnostics expected");
162 error("unexpected diagnostics generated");
188 static void error(String msg) { method in class:T6341866
/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...]

Completed in 99 milliseconds

1234567891011>>