HomeSort by relevance Sort by last modified time
    Searched refs:LogRecord (Results 26 - 50 of 55) sorted by null

12 3

  /external/jmonkeyengine/engine/src/core/com/jme3/util/
JmeFormatter.java 40 import java.util.logging.LogRecord;
61 public String format(LogRecord record) {
  /external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
FileHandlerTest.java 40 import java.util.logging.LogRecord;
77 LogRecord r;
91 r = new LogRecord(Level.CONFIG, "msg");
209 new LogRecord[] { r, null, r, null, r, null, r },
239 assertFileContent(homepath, filename, new LogRecord[] { r }, formatter, encoding);
243 LogRecord[] lr, Formatter formatter, String encoding) throws Exception {
337 assertFileContent(TEMPPATH, "testLimitCount0", new LogRecord[0],
343 LogRecord[] rs = new LogRecord[10];
346 rs[i] = new LogRecord(Level.SEVERE, "msg" + i)
    [all...]
HandlerTest.java 31 import java.util.logging.LogRecord;
286 LogRecord r = new LogRecord(Level.CONFIG, null);
305 LogRecord r = new LogRecord(Level.CONFIG, null);
319 * @tests java.util.logging.Handler#isLoggable(LogRecord)
343 public void publish(LogRecord record) {
356 public boolean isLoggable(LogRecord record) {
XMLFormatterTest.java 30 import java.util.logging.LogRecord;
42 LogRecord lr = null;
48 lr = new LogRecord(Level.SEVERE, "pattern");
176 lr = new LogRecord(Level.SEVERE, null);
188 LogRecord logRecord = new LogRecord(Level.INFO, "message:<init>&");
189 logRecord.setLoggerName("<init>&");
190 logRecord.setThrown(new Exception("<init>&"));
191 logRecord.setParameters(new String[] { "<init>&" })
    [all...]
SocketHandlerTest.java 34 import java.util.logging.LogRecord;
294 h.publish(new LogRecord(Level.SEVERE, "test"));
310 h.publish(new LogRecord(Level.SEVERE, "test"));
425 h.publish(new LogRecord(Level.SEVERE,
480 LogRecord r = new LogRecord(Level.INFO, "testPublish_NoFilter");
521 LogRecord r = new LogRecord(Level.INFO, "testPublish_WithFilter");
574 LogRecord r = new LogRecord(Level.INFO, "")
    [all...]
FormatterTest.java 25 import java.util.logging.LogRecord;
32 LogRecord r;
42 r = new LogRecord(Level.FINE, MSG);
129 public String format(LogRecord arg0) {
LogManagerTest.java 33 import java.util.logging.LogRecord;
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/stack/
MessageLog.java 32 import gov.nist.javax.sip.LogRecord;
45 class MessageLog implements LogRecord {
66 * @see gov.nist.javax.sip.stack.LogRecord#equals(java.lang.Object)
142 * @see gov.nist.javax.sip.stack.LogRecord#toString()
ServerLog.java 34 import gov.nist.javax.sip.LogRecord;
326 LogRecord log = this.sipStack.logRecordFactory.createLogRecord(message, from, to, time,
  /libcore/luni/src/main/java/java/util/logging/
LogRecord.java 28 * A {@code LogRecord} object represents a logging request. It is passed between
30 * should not modify a {@code LogRecord} object that has been passed into the
33 * The {@code LogRecord} class will infer the source method name and source
39 * use them after passing the {@code LogRecord} object to another thread or
42 public class LogRecord implements Serializable {
141 * Constructs a {@code LogRecord} object using the supplied the logging
154 public LogRecord(Level level, String msg) {
162 synchronized (LogRecord.class) {
XMLFormatter.java 25 * Formatter to convert a {@link LogRecord} into an XML string. The DTD
42 * Converts a {@code LogRecord} into an XML string.
49 public String format(LogRecord r) {
50 // call a method of LogRecord to ensure not null
84 private void formatMessages(LogRecord r, StringBuilder sb) {
112 private void formatThrowable(LogRecord r, StringBuilder sb) {
SimpleFormatter.java 28 * contained in a {@code LogRecord} object in a human readable format.
38 * Converts a {@link LogRecord} object into a human readable string
46 public String format(LogRecord r) {
SocketHandler.java 153 public void publish(LogRecord record) {
Handler.java 168 public abstract void publish(LogRecord record);
228 public boolean isLoggable(LogRecord record) {
StreamHandler.java 282 public synchronized void publish(LogRecord record) {
317 public boolean isLoggable(LogRecord record) {
FileHandler.java 505 * Publish a {@code LogRecord}.
511 public synchronized void publish(LogRecord record) {
  /libcore/luni/src/test/java/libcore/java/util/logging/
OldLoggerTest.java 27 import java.util.logging.LogRecord;
222 public void publish(LogRecord record) {}
226 public boolean isLoggable(LogRecord record) {
OldLogManagerTest.java 27 import java.util.logging.LogRecord;
253 public void publish(LogRecord record) {}
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/logging/
__init__.py 30 'LogRecord', 'Logger', 'LoggerAdapter', 'NOTSET', 'NullHandler',
230 class LogRecord(object):
232 A LogRecord instance represents an event being logged.
234 LogRecord instances are created every time something is logged. They
308 return '<LogRecord: %s, %s, %s, %s, "%s">'%(self.name, self.levelno,
313 Return the message for this LogRecord.
315 Return the message for this LogRecord after merging any user-supplied
333 Make a LogRecord whose attributes are defined by the specified dictionary,
335 a socket connection (which is sent as a dictionary) into a LogRecord
338 rv = LogRecord(None, None, "", 0, "", (), None, None
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/logging/
__init__.py 30 'LogRecord', 'Logger', 'LoggerAdapter', 'NOTSET', 'NullHandler',
230 class LogRecord(object):
232 A LogRecord instance represents an event being logged.
234 LogRecord instances are created every time something is logged. They
308 return '<LogRecord: %s, %s, %s, %s, "%s">'%(self.name, self.levelno,
313 Return the message for this LogRecord.
315 Return the message for this LogRecord after merging any user-supplied
333 Make a LogRecord whose attributes are defined by the specified dictionary,
335 a socket connection (which is sent as a dictionary) into a LogRecord
338 rv = LogRecord(None, None, "", 0, "", (), None, None
    [all...]
  /external/guava/guava-tests/test/com/google/common/cache/
CacheLoadingTest.java 56 import java.util.logging.LogRecord;
80 List<LogRecord> logRecords = logHandler.getStoredLogRecords();
82 LogRecord logRecord = logRecords.get(0);
84 return logRecord.getThrown();
    [all...]
LocalCacheTest.java 71 import java.util.logging.LogRecord;
96 List<LogRecord> logRecords = logHandler.getStoredLogRecords();
98 LogRecord logRecord = logRecords.get(0);
100 return logRecord.getThrown();
    [all...]
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/13/
android.jar 

Completed in 1539 milliseconds

12 3