Searched defs:record (Results 1 - 25 of 33) sorted by relevance

12

/openjdk7/jdk/src/share/classes/java/util/logging/
H A DFilter.java44 * Check if a given log record should be published.
45 * @param record a LogRecord
46 * @return true if the log record should be published.
48 public boolean isLoggable(LogRecord record); argument
H A DSimpleFormatter.java61 // format string for printing the log record
83 * {@linkplain LogRecord#getMillis event time} of the log record.</li>
96 * associated with the log record and its backtrace
137 * @param record the log record to be formatted.
138 * @return a formatted log record
140 public synchronized String format(LogRecord record) { argument
141 dat.setTime(record.getMillis());
143 if (record.getSourceClassName() != null) {
144 source = record
[all...]
H A DConsoleHandler.java101 * @param record description of the log event. A null record is
104 public void publish(LogRecord record) { argument
105 super.publish(record);
H A DFormatter.java52 * Format the given log record and return the formatted string.
59 * @param record the log record to be formatted.
60 * @return the formatted log record
62 public abstract String format(LogRecord record); argument
93 * Localize and format the message string from a log record. This
98 * the record's ResourceBundle. (If there is no ResourceBundle,
110 * @param record the log record containing the raw message
113 public synchronized String formatMessage(LogRecord record) { argument
[all...]
H A DSocketHandler.java181 * @param record description of the log event. A null record is
184 public synchronized void publish(LogRecord record) { argument
185 if (!isLoggable(record)) {
188 super.publish(record);
H A DStreamHandler.java179 * <tt>Filter</tt> to check if the record should be published. If so,
180 * it calls its <tt>Formatter</tt> to format the record and then writes
187 * @param record description of the log event. A null record is
190 public synchronized void publish(LogRecord record) { argument
191 if (!isLoggable(record)) {
196 msg = getFormatter().format(record);
225 * @param record a <tt>LogRecord</tt>
229 public boolean isLoggable(LogRecord record) { argument
230 if (writer == null || record
[all...]
H A DXMLFormatter.java101 * @param record the log record to be formatted.
102 * @return a formatted log record
104 public String format(LogRecord record) { argument
106 sb.append("<record>\n");
109 appendISO8601(sb, record.getMillis());
113 sb.append(record.getMillis());
117 sb.append(record.getSequenceNumber());
120 String name = record.getLoggerName();
128 escape(sb, record
[all...]
H A DMemoryHandler.java47 * <tt>LogRecord</tt> and calls <tt>push</tt> if a record matches some
161 * method is called to check if the given log record is loggable.
162 * If not we return. Otherwise the given record is copied into
163 * an internal circular buffer. Then the record's level property is
169 * @param record description of the log event. A null record is
172 public synchronized void publish(LogRecord record) { argument
173 if (!isLoggable(record)) {
177 buffer[ix] = record;
184 if (record
267 isLoggable(LogRecord record) argument
[all...]
H A DHandler.java79 * @param record description of the log event. A null record is
82 public abstract void publish(LogRecord record); argument
279 * @param record a <tt>LogRecord</tt>
283 public boolean isLoggable(LogRecord record) { argument
285 if (record.getLevel().intValue() < levelValue || levelValue == offValue) {
292 return filter.isLoggable(record);
H A DFileHandler.java45 * record is flushed out when it is complete.
379 // so we can record exceptions.
568 * @param record description of the log event. A null record is
571 public synchronized void publish(LogRecord record) { argument
572 if (!isLoggable(record)) {
575 super.publish(record);
/openjdk7/jdk/src/share/classes/sun/net/www/protocol/http/logging/
H A DHttpLogFormatter.java51 public String format(LogRecord record) { argument
52 String sourceClassName = record.getSourceClassName();
56 return super.format(record);
58 String src = record.getMessage();
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXAWTFormatter.java64 * @param record the log record to be formatted.
65 * @return a formatted log record
67 public synchronized String format(LogRecord record) { argument
70 Level lev = record.getLevel();
82 dat.setTime(record.getMillis());
95 if (record.getSourceMethodName() != null) {
97 sb.append(record.getSourceMethodName());
100 if (record.getSourceClassName() != null) {
101 sb.append(record
[all...]
/openjdk7/langtools/test/tools/javac/multicatch/
H A DPos10.java36 if (record != 0b11)
38 record);
44 private static int record = 0; field in class:Pos10
81 record |= 0b01;
95 record |= 0b10;
/openjdk7/jdk/src/share/native/sun/font/layout/
H A DLEInsertionList.cpp64 InsertionRecord *record = head; local
67 LE_DELETE_ARRAY(record);
/openjdk7/jdk/src/share/sample/jmx/jmx-scandir/src/com/sun/jmx/examples/scandir/
H A DResultLogManagerMXBean.java110 * Logs a result record to the active result logs (memory,file,both,or none)
114 * @param record The result record to log.
120 public void log(ResultRecord record) argument
H A DResultLogManager.java105 // The maximum number of record that the memory log can
110 // The maximum number of record that the ResultLogManager can
123 // number of record that this object has logged in the log file
147 // add() is the only method ever called to add a record).
300 public void log(ResultRecord record) argument
302 if (memCapacity > 0) logToMemory(record);
303 if (logFile != null) logToFile(record);
385 // Log a record to the memory log. Send a notification if the
388 private void logToMemory(ResultRecord record) { argument
393 memoryLog.add(record);
406 logToFile(ResultRecord record) argument
[all...]
/openjdk7/jdk/test/sun/rmi/runtime/Log/checkLogging/
H A DCheckLogging.java118 public void publish(LogRecord record) { argument
119 super.publish(record);
/openjdk7/hotspot/src/share/vm/services/
H A DmemRecorder.cpp73 record((address)this, (MemPointerRecord::malloc_tag()|mtNMT|otNMTRecorder),
75 record((address)_pointer_records, (MemPointerRecord::malloc_tag()|mtNMT|otNMTRecorder),
100 // 2. mem pointer record tags
120 bool MemRecorder::record(address p, MEMFLAGS flags, size_t size, jint seq, address pc) { function in class:MemRecorder
124 assert((flags & MemPointerRecord::tag_masks) != 0, "bad virtual memory record");
129 "bad malloc record");
/openjdk7/jdk/src/share/demo/java2d/J2DBench/src/j2dbench/
H A DResultSet.java157 public void record(Result result) { method in class:ResultSet
H A DTestEnvironment.java253 public void record(Result result) { method in class:TestEnvironment
254 results.record(result);
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DSortingIterator.java117 private void addRecord(NodeSortRecord record) { argument
123 _data[_free++] = record;
/openjdk7/jdk/src/share/classes/sun/awt/geom/
H A DEdge.java107 public void record(double yend, int etag) { method in class:Edge
H A DCrossings.java63 public abstract void record(double ystart, double yend, int direction); method in class:Crossings
236 record(ystart, yend, direction);
254 record(Math.max(y0, ylo), Math.min(coords[3], yhi), 1);
256 record(Math.max(coords[3], ylo), Math.min(y0, yhi), -1);
292 record(Math.max(y0, ylo), Math.min(coords[5], yhi), 1);
294 record(Math.max(coords[5], ylo), Math.min(y0, yhi), -1);
319 public void record(double ystart, double yend, int direction) { method in class:Crossings.EvenOdd
453 public void record(double ystart, double yend, int direction) { method in class:Crossings.NonZero
/openjdk7/jdk/src/share/demo/jvmti/compiledMethodLoad/
H A DcompiledMethodLoad.c59 print_dummy_record(jvmtiCompiledMethodLoadDummyRecord* record, argument
62 if (record != NULL) {
63 fprintf(fp, "Dummy record detected containing message: %s\n",
64 (char *)record->message);
70 print_stack_frames(PCStackInfo* record, jvmtiEnv *jvmti, FILE* fp) { argument
71 if (record != NULL && record->methods != NULL) {
74 for (i = 0; i < record->numstackframes; i++) {
84 id = record->methods[i];
101 record
137 print_inline_info_record(jvmtiCompiledMethodLoadInlineRecord* record, jvmtiEnv *jvmti, FILE* fp) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/rmi/runtime/
H A DLog.java282 public void publish(LogRecord record) { argument
283 super.publish(record);
302 /** record the last character written to this stream */

Completed in 58 milliseconds

12