Searched refs:log (Results 351 - 375 of 563) sorted by relevance

<<11121314151617181920>>

/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DClassReader.java90 Utils.log.warning("skipping "+n+" bytes of "+what);
159 if (verbose > 0) Utils.log.warning("Erroneous data at input offset "+inPos+" of "+cls.file);
263 Utils.log.fine("CP fixups ["+fptr/4+"]");
272 Utils.log.fine(" cp["+cpi+"] = "+ConstantPool.tagName(tag)+"{"+ref+","+ref2+"}");
345 Utils.log.fine("readAttributes "+h+" ["+na+"]");
370 Utils.log.fine("pkg_attribute_lookup "+name+" = "+a);
374 Utils.log.fine("this "+name+" = "+a);
379 Utils.log.fine("null_attribute_lookup "+name+" = "+a);
449 Utils.log.fine("read "+a);
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/signature/
H A DReference.java133 static java.util.logging.Logger log = field in class:Reference
772 log.log(java.util.logging.Level.WARNING, "Verification failed for URI \"" + this.getURI() + "\"");
773 log.log(java.util.logging.Level.WARNING, "Expected Digest: " + Base64.encode(elemDig));
774 log.log(java.util.logging.Level.WARNING, "Actual Digest: " + Base64.encode(calcDig));
776 log.log(java.util.logging.Level.INFO, "Verification successful for URI \"" + this.getURI() + "\"");
/openjdk7/jdk/src/share/classes/sun/util/logging/
H A DPlatformLogger.java43 * Platform logger provides an API for the JRE components to log
51 * will output log messages per the default logging configuration
52 * (see below). In this implementation, it does not log the
53 * the stack frame information issuing the log message.
57 * logger and all log messages will be forwarded to the Logger
196 PlatformLogger log = null;
199 log = ref.get();
201 if (log == null) {
202 log = new PlatformLogger(name);
203 loggers.put(name, new WeakReference<>(log));
[all...]
/openjdk7/jdk/src/share/classes/java/util/logging/
H A DLogger.java42 * A Logger object is used to log messages for a specific
70 * The log level can be configured based on the properties from the
80 * effective log level of the logger. If the request level is
81 * lower than the log level, the logging call returns immediately.
126 * There are a set of "log" methods that take a log level, a message
129 * There are a set of "logp" methods (for "log precise") that are
130 * like the "log" methods, but also take an explicit source class name
133 * There are a set of "logrb" method (for "log with resource bundle")
135 * bundle name for use in localizing the log messag
595 public void log(LogRecord record) { method in class:Logger
649 public void log(Level level, String msg) { method in class:Logger
668 public void log(Level level, String msg, Object param1) { method in class:Logger
689 public void log(Level level, String msg, Object params[]) { method in class:Logger
714 public void log(Level level, String msg, Throwable thrown) { method in class:Logger
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/soap/impl/
H A DElementImpl.java56 protected static final Logger log = field in class:ElementImpl
137 log.log(
235 log.log(Level.SEVERE, "SAAJ0102.impl.cannot.locate.ns",
319 log.severe("SAAJ0103.impl.cannot.add.fragements");
326 log.severe("SAAJ0154.impl.adding.fault.to.nonbody");
331 log.severe("SAAJ0155.impl.adding.detail.nonfault");
338 log.severe("SAAJ0158.impl.version.mismatch.fault");
343 log
[all...]
H A DFaultImpl.java118 log.log(Level.SEVERE, "SAAJ0140.impl.no.ns.URI", new Object[]{prefix + ":" + faultCode});
208 log.log(
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DAESCrypt.java134 log = new int[256]; field in class:AESCrypt
166 // produce log and alog tables, needed for multiplying in the
179 log[alog[i]] = i;
201 j = alog[255 - log[i]];
266 alog[(255 + log[AA[i][j] & 0xFF] - log[pivot & 0xFF])
313 log = null;
320 alog[(log[a & 0xFF] + log[b & 0xFF]) % 255] :
327 a = log[
[all...]
/openjdk7/hotspot/src/share/vm/utilities/
H A DvmError.cpp45 // List of environment variables that should be reported in error log file.
73 // into an error report file (hs_err_pid<pid>.log) and abort VM. If multiple
168 // -XX:OnError="cat hs_err_pid%p.log | mail my_email@sun.com"
820 // then save detailed information in log file (verbose = true).
822 static bool log_done = false; // done saving error log
824 static fdStream log; // error log local
882 if (log.is_open()) {
883 log.cr();
884 log
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/lib/
H A DExsltMath.java278 * The math:log function returns the natural logarithm of a number.
283 public static double log(double num) method in class:ExsltMath
285 return Math.log(num);
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DToolkit.java77 float dB = (float) (Math.log((double)((linear==0.0)?0.0001:linear))/Math.log(10.0) * 20.0);
H A DSoftLowFrequencyOscillator.java92 (f - 6900.0) * (Math.log(2) / 1200.0));
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Bytecodes/src/com/sun/hotspot/igv/bytecodes/
H A DBytecodeViewTopComponent.java112 ErrorManager.getDefault().log(ErrorManager.WARNING, "Cannot find BytecodeView component. It will not be located properly in the window system.");
118 ErrorManager.getDefault().log(ErrorManager.WARNING, "There seem to be multiple components with the '" + PREFERRED_ID + "' ID. That is a potential source of errors and unexpected behavior.");
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/ControlFlow/src/com/sun/hotspot/igv/controlflow/
H A DControlFlowTopComponent.java117 ErrorManager.getDefault().log(ErrorManager.WARNING, "Cannot find ControlFlow component. It will not be located properly in the window system.");
123 ErrorManager.getDefault().log(ErrorManager.WARNING, "There seem to be multiple components with the '" + PREFERRED_ID + "' ID. That is a potential source of errors and unexpected behavior.");
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Filter/src/com/sun/hotspot/igv/filter/
H A DCustomFilter.java114 Logger.getLogger("global").log(Level.SEVERE, null, ncdfe);
144 Logger.getLogger("global").log(Level.SEVERE, null, ex);
/openjdk7/jdk/test/java/lang/Math/
H A DLog1pTests.java46 return (u==1.0? x : StrictMath.log(u)*x/(u-1) );
55 * values of x, log1p(x) ~= log(x).
96 // For x > 2^53 log1p(x) ~= log(x)
99 failures += testLog1pCaseWithUlpDiff(d, StrictMath.log(d), 2.001);
/openjdk7/langtools/make/
H A DMakefile192 # Create diagnostics log (careful, ant 1.8.0 -diagnostics always does an exit 1)
193 $(OUTPUTDIR)/build/ant-diagnostics.log:
200 $(ANT_TARGETS): $(OUTPUTDIR)/build/ant-diagnostics.log
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/logging/
H A DLogWrapperBase.java53 logger.log( lrec ) ;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/modeler/annotation/
H A DModelBuilder.java69 public void log(String msg); method in interface:ModelBuilder
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/reflect/opt/
H A DAccessorInjector.java84 logger.log(Level.INFO,"Unable to create an optimized TransducedAccessor ",e);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/soap/ver1_2/
H A DFaultElement1_2Impl.java78 log.severe("SAAJ0408.ver1_2.no.encodingStyle.in.fault.child");
H A DHeaderElement1_2Impl.java45 private static final Logger log = field in class:HeaderElement1_2Impl
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/org/jvnet/mimepull/
H A DMemoryData.java84 LOGGER.log(Level.FINE, "Created temp file = {0}", tempFile);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/handler/
H A DSOAPHandlerProcessor.java86 logger.log(Level.SEVERE,
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/server/provider/
H A DSyncProviderInvokerTube.java70 LOGGER.log(Level.SEVERE, e.getMessage(), e);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/server/sei/
H A DEndpointMethodHandler.java253 LOGGER.log(Level.FINE, cause.getMessage(), cause);
259 LOGGER.log(Level.FINE, cause.getMessage(), cause);
262 LOGGER.log(Level.SEVERE, cause.getMessage(), cause);
267 LOGGER.log(Level.SEVERE, e.getMessage(), e);

Completed in 60 milliseconds

<<11121314151617181920>>