Searched refs:msg (Results 201 - 225 of 1838) sorted by relevance

1234567891011>>

/openjdk9/jdk/src/java.base/windows/classes/sun/nio/fs/
H A DWindowsException.java41 private String msg; field in class:WindowsException
45 this.msg = null;
48 WindowsException(String msg) { argument
50 this.msg = msg;
58 if (msg == null) {
59 msg = WindowsNativeDispatcher.FormatMessage(lastError);
60 if (msg == null) {
61 msg = "Unknown error: 0x" + Integer.toHexString(lastError);
64 return msg;
[all...]
/openjdk9/jdk/src/java.base/share/classes/jdk/internal/logger/
H A DAbstractLoggerWrapper.java72 public void log(Level level, String msg) { argument
73 wrapped().log(level, msg);
89 String msg, Throwable thrown) {
90 wrapped().log(level, msg, thrown);
134 public void log(PlatformLogger.Level level, String msg) { argument
137 wrapped().log(level.systemLevel(), msg);
139 platformProxy.log(level, msg);
144 public void log(PlatformLogger.Level level, String msg, Throwable thrown) { argument
147 wrapped().log(level.systemLevel(), msg, thrown);
149 platformProxy.log(level, msg, throw
88 log(Level level, String msg, Throwable thrown) argument
154 log(PlatformLogger.Level level, String msg, Object... params) argument
185 logp(PlatformLogger.Level level, String sourceClass, String sourceMethod, String msg) argument
230 logp(PlatformLogger.Level level, String sourceClass, String sourceMethod, String msg, Object... params) argument
253 logp(PlatformLogger.Level level, String sourceClass, String sourceMethod, String msg, Throwable thrown) argument
300 logrb(PlatformLogger.Level level, String sourceClass, String sourceMethod, ResourceBundle bundle, String msg, Object... params) argument
325 logrb(PlatformLogger.Level level, String sourceClass, String sourceMethod, ResourceBundle bundle, String msg, Throwable thrown) argument
350 logrb(PlatformLogger.Level level, ResourceBundle bundle, String msg, Throwable thrown) argument
361 logrb(PlatformLogger.Level level, ResourceBundle bundle, String msg, Object... params) argument
[all...]
/openjdk9/jdk/src/java.desktop/unix/classes/sun/awt/X11/
H A DXEmbedHelper.java101 XClientMessageEvent msg = new XClientMessageEvent();
102 msg.set_type(XConstants.ClientMessage);
103 msg.set_window(window);
104 msg.set_message_type(XEmbed.getAtom());
105 msg.set_format(32);
106 msg.set_data(0, XToolkit.getCurrentServerTime());
107 msg.set_data(1, message);
108 msg.set_data(2, detail);
109 msg.set_data(3, data1);
110 msg
184 XEmbedMessageToString(XClientMessageEvent msg) argument
[all...]
/openjdk9/jdk/src/java.base/share/classes/sun/util/logging/
H A DPlatformLogger.java207 public void log(Level level, String msg); argument
208 public void log(Level level, String msg, Throwable thrown); argument
209 public void log(Level level, String msg, Object... params); argument
212 public void logp(Level level, String sourceClass, String sourceMethod, String msg); argument
216 String msg, Object... params);
218 String msg, Throwable thrown);
222 ResourceBundle bundle, String msg, Object... params);
224 ResourceBundle bundle, String msg, Throwable thrown);
225 public void logrb(Level level, ResourceBundle bundle, String msg, argument
227 public void logrb(Level level, ResourceBundle bundle, String msg, argument
215 logp(Level level, String sourceClass, String sourceMethod, String msg, Object... params) argument
217 logp(Level level, String sourceClass, String sourceMethod, String msg, Throwable thrown) argument
221 logrb(Level level, String sourceClass, String sourceMethod, ResourceBundle bundle, String msg, Object... params) argument
223 logrb(Level level, String sourceClass, String sourceMethod, ResourceBundle bundle, String msg, Throwable thrown) argument
384 severe(String msg) argument
388 severe(String msg, Throwable t) argument
392 severe(String msg, Object... params) argument
400 warning(String msg) argument
404 warning(String msg, Throwable t) argument
408 warning(String msg, Object... params) argument
416 info(String msg) argument
420 info(String msg, Throwable t) argument
424 info(String msg, Object... params) argument
432 config(String msg) argument
436 config(String msg, Throwable t) argument
440 config(String msg, Object... params) argument
448 fine(String msg) argument
452 fine(String msg, Throwable t) argument
456 fine(String msg, Object... params) argument
464 finer(String msg) argument
468 finer(String msg, Throwable t) argument
472 finer(String msg, Object... params) argument
480 finest(String msg) argument
484 finest(String msg, Throwable t) argument
488 finest(String msg, Object... params) argument
[all...]
/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/xml/internal/res/
H A DXMLMessages.java112 String msg = null;
115 msg = fResourceBundle.getString(msgKey);
117 if (msg == null)
119 msg = fResourceBundle.getString(BAD_CODE);
139 fmsg = java.text.MessageFormat.format(msg, args);
144 fmsg += " " + msg;
148 fmsg = msg;
/openjdk9/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/objects/
H A DNativeEvalError.java66 private NativeEvalError(final Object msg, final ScriptObject proto, final PropertyMap map) { argument
68 if (msg != UNDEFINED) {
69 this.instMessage = JSType.toString(msg);
76 NativeEvalError(final Object msg, final Global global) { argument
77 this(msg, global.getEvalErrorPrototype(), $nasgenmap$);
80 private NativeEvalError(final Object msg) { argument
81 this(msg, Global.instance());
96 * @param msg error message
101 public static NativeEvalError constructor(final boolean newObj, final Object self, final Object msg) { argument
102 return new NativeEvalError(msg);
[all...]
H A DNativeReferenceError.java66 private NativeReferenceError(final Object msg, final ScriptObject proto, final PropertyMap map) { argument
68 if (msg != UNDEFINED) {
69 this.instMessage = JSType.toString(msg);
76 NativeReferenceError(final Object msg, final Global global) { argument
77 this(msg, global.getReferenceErrorPrototype(), $nasgenmap$);
80 private NativeReferenceError(final Object msg) { argument
81 this(msg, Global.instance());
96 * @param msg error message
101 public static NativeReferenceError constructor(final boolean newObj, final Object self, final Object msg) { argument
102 return new NativeReferenceError(msg);
[all...]
H A DNativeRangeError.java66 private NativeRangeError(final Object msg, final ScriptObject proto, final PropertyMap map) { argument
68 if (msg != UNDEFINED) {
69 this.instMessage = JSType.toString(msg);
76 NativeRangeError(final Object msg, final Global global) { argument
77 this(msg, global.getRangeErrorPrototype(), $nasgenmap$);
80 private NativeRangeError(final Object msg) { argument
81 this(msg, Global.instance());
96 * @param msg error message
101 public static NativeRangeError constructor(final boolean newObj, final Object self, final Object msg) { argument
102 return new NativeRangeError(msg);
[all...]
/openjdk9/jdk/test/javax/xml/soap/
H A DXmlTest.java54 SOAPMessage msg = createMessage(mf);
58 msg.writeTo(sentFile);
63 SOAPMessage newMsg = mf.createMessage(msg.getMimeHeaders(), fin);
81 SOAPMessage msg = mf.createMessage();
82 SOAPEnvelope envelope = msg.getSOAPPart().getEnvelope();
88 AttachmentPart ap = msg.createAttachmentPart(
92 msg.addAttachmentPart(ap);
93 msg.saveChanges();
95 return msg;
/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/dom/
H A DDOMMessageFormatter.java76 String msg;
78 msg = key + ": " + resourceBundle.getString(key);
81 msg = java.text.MessageFormat.format(msg, arguments);
84 msg = resourceBundle.getString("FormatFailed");
85 msg += " " + resourceBundle.getString(key);
90 msg = resourceBundle.getString("BadMessageKey");
91 throw new MissingResourceException(key, msg, key);
95 if (msg == null) {
96 msg
[all...]
/openjdk9/hotspot/test/runtime/verifier/popTopTests/
H A DPopDupTop.java35 public static void testClass(String class_name, String msg) throws Throwable { argument
38 throw new RuntimeException("Expected VerifyError exception not thrown for " + msg);
42 "Unexpected VerifyError message for " + msg + ": " + e.getMessage());
/openjdk9/hotspot/test/runtime/ErrorHandling/
H A DTestOnOutOfMemoryError.java47 String msg = "Test Succeeded";
49 "-XX:OnOutOfMemoryError=echo " + msg,
68 output.stdoutShouldMatch("^" + msg); // match start of line only
H A DTestOnError.java45 String msg = "Test Succeeded";
52 "-XX:OnError=echo " + msg,
66 output.stdoutShouldMatch("^" + msg); // match start of line only
/openjdk9/jdk/src/java.instrument/share/native/libinstrument/
H A DJPLISAssert.h59 #define jplis_assert_msg(x, msg) JPLISAssertConditionWithMessage((jboolean)(x), #x, msg, THIS_FILE, __LINE__)
62 #define jplis_assert_msg(x, msg)
/openjdk9/langtools/src/jdk.javadoc/share/classes/com/sun/tools/doclets/internal/toolkit/util/
H A DMessageRetriever.java133 * @param msg message to print
135 private void printError(SourcePosition pos, String msg) { argument
136 configuration.root.printError(pos, msg);
142 * @param msg message to print
144 private void printError(String msg) { argument
145 configuration.root.printError(msg);
152 * @param msg message to print
154 private void printWarning(SourcePosition pos, String msg) { argument
155 configuration.root.printWarning(pos, msg);
161 * @param msg messag
163 printWarning(String msg) argument
173 printNotice(SourcePosition pos, String msg) argument
182 printNotice(String msg) argument
[all...]
/openjdk9/hotspot/test/native/logging/
H A Dtest_logMessageTest.cpp70 LogMessageBuffer msg[message_count]; local
94 msg[lines[i].message_number].printname("msg[%d]: " #printname, lines[i].message_number); \
102 _log.write(msg[i]);
108 jio_snprintf(expected, sizeof(expected), "msg[%d]: %s",
123 LogMessageBuffer msg; local
124 msg.info("info line").error("error line").trace("trace line")
126 _log.write(msg);
136 LogMessageBuffer msg; local
149 msg
162 LogMessageBuffer msg; local
192 LogMessageBuffer msg; local
[all...]
/openjdk9/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/processing/
H A DJavacMessager.java61 public void printMessage(Diagnostic.Kind kind, CharSequence msg) { argument
62 printMessage(kind, msg, null, null, null);
66 public void printMessage(Diagnostic.Kind kind, CharSequence msg, argument
68 printMessage(kind, msg, e, null, null);
76 * @param msg the message, or an empty string if none
81 public void printMessage(Diagnostic.Kind kind, CharSequence msg, argument
83 printMessage(kind, msg, e, a, null);
92 * @param msg the message, or an empty string if none
98 public void printMessage(Diagnostic.Kind kind, CharSequence msg, argument
117 log.error(DiagnosticFlag.MULTIPLE, pos, "proc.messager", msg
146 printError(String msg) argument
155 printWarning(String msg) argument
163 printNotice(String msg) argument
[all...]
/openjdk9/langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/tool/
H A DMessager.java86 public void print(Kind kind, String msg) { argument
89 printError(msg);
93 printWarning(msg);
96 printNotice(msg);
102 public void print(Kind kind, DocTreePath path, String msg) { argument
105 printError(path, msg);
109 printWarning(path, msg);
112 printWarning(path, msg);
118 public void print(Kind kind, Element e, String msg) { argument
121 printError(e, msg);
220 printError(String msg) argument
224 printError(DocTreePath path, String msg) argument
233 printError(Element e, String msg) argument
247 printError(String prefix, String msg) argument
263 printWarning(String msg) argument
275 printWarning(DocTreePath path, String msg) argument
284 printWarning(Element e, String msg) argument
294 printWarning(String prefix, String msg) argument
309 printNotice(String msg) argument
313 printNotice(DocTreePath path, String msg) argument
329 printNotice(Element e, String msg) argument
382 report(DiagnosticType type, String pos, String msg) argument
[all...]
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.salver/src/org/graalvm/compiler/salver/handler/
H A DDumpHandler.java30 void dump(Object obj, String msg) throws IOException; argument
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/
H A DBailoutAndRestartBackendException.java49 public BailoutAndRestartBackendException(String msg) { argument
50 super(msg);
53 public BailoutAndRestartBackendException(Throwable cause, String msg) { argument
54 super(cause, msg);
/openjdk9/hotspot/test/runtime/testlibrary/
H A DClassUnloadCommon.java39 TestFailure(String msg) { argument
40 super(msg);
44 public static void failIf(boolean value, String msg) { argument
45 if (value) throw new TestFailure("Test failed: " + msg);
/openjdk9/jdk/src/java.desktop/windows/native/libawt/windows/
H A Dawt_ole.h78 #define SEP1(msg) CLogEntryPoint1 _ep1_(msg);
79 #define SEP0(msg) CLogEntryPoint0 _ep0_(msg);
81 #define SEP(msg) CLogEntryPoint1 _ep1_(msg);
83 #define SEP(msg) CLogEntryPoint0 _ep0_(msg);
89 #define OLE_TRACENOTIMPL(msg)\
90 STRACE(_T("Warning:%s"), msg);\
[all...]
/openjdk9/jdk/test/java/awt/Focus/ClearGlobalFocusOwnerTest/
H A DClearGlobalFocusOwnerTest.java84 TestFailedException(String msg) { argument
85 super("Test failed: " + msg);
93 TestErrorException(String msg) { argument
94 super("Unexpected error: " + msg);
/openjdk9/langtools/src/jdk.jdeps/share/classes/com/sun/tools/jdeprscan/
H A DMessages.java62 String msg = MessageFormat.format(bundle.getString(key), args);
64 msg = msg.replace("\n", System.lineSeparator());
66 return msg;
/openjdk9/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/
H A DParserException.java47 * @param msg exception message for this parser error.
49 public ParserException(final String msg) { argument
50 this(JSErrorType.SYNTAX_ERROR, msg, null, -1, -1, -1);
57 * @param msg exception message
64 public ParserException(final JSErrorType errorType, final String msg, final Source source, final int line, final int column, final long token) { argument
65 super(msg, source != null ? source.getName() : null, line, column);

Completed in 221 milliseconds

1234567891011>>