HomeSort by relevance Sort by last modified time
    Searched defs:LogRecord (Results 1 - 25 of 28) sorted by null

1 2

  /external/nist-sip/java/gov/nist/javax/sip/
LogRecord.java 10 public interface LogRecord {
  /packages/apps/Messaging/src/com/android/messaging/util/
LogSaver.java 100 private static class LogRecord {
107 LogRecord() {
120 private final CircularArray<LogRecord> mLogList;
127 mLogList = new CircularArray<LogRecord>(size);
136 LogRecord rec = mLogList.get(i);
147 LogRecord rec = mLogList.getFree();
149 rec = new LogRecord();
216 public String format(java.util.logging.LogRecord r) {
  /libcore/ojluni/src/main/java/java/util/logging/
LogRecord.java 35 * LogRecord objects are used to pass logging requests between
38 * When a LogRecord is passed into the logging framework it
44 * LogRecord class will infer them automatically when they are
47 * if a logging Handler wants to pass off a LogRecord to another
55 * <li>The LogRecord class is serializable.
70 public class LogRecord implements java.io.Serializable {
79 * to 32-bit wraparound. Unfortunately, LogRecord.getThreadID()
144 * Returns the default value for a new LogRecord's threadID.
161 * Construct a LogRecord with the given level and message values.
176 public LogRecord(Level level, String msg)
    [all...]
  /external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
LogRecordTest.java 25 import java.util.logging.LogRecord;
37 private LogRecord lr;
43 lr = new LogRecord(Level.CONFIG, MSG);
49 new LogRecord(null, null);
54 new LogRecord(null, MSG);
58 LogRecord r = new LogRecord(Level.WARNING, null);
112 lr = new LogRecord(Level.ALL, null);
147 lr = new LogRecord(Level.SEVERE, MSG);
154 lr = new LogRecord(Level.SEVERE, MSG)
    [all...]
  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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/guice/extensions/persist/lib/
log4j-1.2.14.jar 
  /external/slf4j/log4j-over-slf4j/compatibility/lib/
log4j-1.2.14.jar 
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/13/
android.jar 
  /prebuilts/sdk/16/
android.jar 
  /prebuilts/sdk/20/
android.jar 
  /prebuilts/sdk/22/
android.jar 
  /prebuilts/sdk/23/
android.jar 
  /prebuilts/sdk/24/
android.jar 
  /prebuilts/sdk/4/
android.jar 
  /prebuilts/sdk/5/
android.jar 
  /prebuilts/sdk/6/
android.jar 
  /prebuilts/sdk/7/
android.jar 
  /prebuilts/sdk/8/
android.jar 
  /prebuilts/sdk/9/
android.jar 
  /prebuilts/sdk/system_23/
android.jar 

Completed in 497 milliseconds

1 2