Searched refs:records (Results 1 - 6 of 6) sorted by relevance
/glassfish-3.1.2/common/amx-core/src/main/java/org/glassfish/admin/amx/logging/ |
H A D | LogQueryResultImpl.java | 77 LogQueryResultImpl( final List<Serializable[]> records ) 79 mFieldNames = (String[])records.get( 0 ); 81 mEntries = new LogQueryEntry[ records.size() - 1 ]; 84 mEntries[ i ] = new LogQueryEntryImpl( records.get( i+1 ) );
|
/glassfish-3.1.2/web/web-glue/src/main/java/com/sun/enterprise/web/logger/ |
H A D | FileLoggerHandler.java | 180 List<LogRecord> records = new ArrayList<LogRecord>(size); 181 pendingRecords.drainTo(records, size); 182 for (LogRecord record : records) {
|
/glassfish-3.1.2/admingui/common/src/main/java/org/glassfish/admingui/common/handlers/ |
H A D | LogViewHandlers.java | 259 List<Map<String, Object>> records = (List<Map<String, Object>>) 261 if (records != null) { 267 // Loop through the records... 268 for (Map<String, Object> record : records) { 303 if ((records != null) && (records.size() > 0)) { 304 handlerCtx.setOutputValue("firstRecord", records.get(0).get("recordNumber")); 305 handlerCtx.setOutputValue("lastRecord", records.get(records.size()-1).get("recordNumber")); 311 handlerCtx.setOutputValue("result", records); [all...] |
/glassfish-3.1.2/core/logging/src/main/java/com/sun/enterprise/server/logging/logviewer/backend/ |
H A D | LogFilter.java | 70 * records. LogMBean delegates the getLogRecordsUsingQuery method to this 107 * The query will be run on records starting from the fromRecord. 110 * records whose Log Level is SEVERE and WARNING, then the query would 484 // Move back to find records before the startingRecord 499 // Keep pulling records to search through until we get enough matches 501 List records = null; 504 // The following will always return unfiltered forward records 505 records = logFile.getLogEntries( 507 if (records == null) { 513 end = records [all...] |
/glassfish-3.1.2/deployment/common/src/test/java/com/sun/enterprise/deploy/shared/ |
H A D | FileArchiveTest.java | 513 private final List<LogRecord> records = new ArrayList<LogRecord>(); field in class:FileArchiveTest.RecordingLogger 521 records.add(record); 525 records.clear(); 529 return records;
|
/glassfish-3.1.2/core/logging/src/main/java/com/sun/enterprise/server/logging/ |
H A D | GFFileHandler.java | 417 Collection<LogRecord> records = new ArrayList<LogRecord>(size); 418 pendingRecords.drainTo(records, size); 419 for (LogRecord record : records) { 698 // the queue has shutdown, we are not processing any more records
|
Completed in 18 milliseconds