Searched refs:isLoggable (Results 1 - 9 of 9) sorted by relevance

/libcore/luni/src/main/java/java/util/logging/
H A DFilter.java34 boolean isLoggable(LogRecord record); method in interface:Filter
H A DMemoryHandler.java187 if (!isLoggable(record)) {
223 public boolean isLoggable(LogRecord record) { method in class:MemoryHandler
224 return super.isLoggable(record);
H A DStreamHandler.java284 if (this.isLoggable(record)) {
317 public boolean isLoggable(LogRecord record) { method in class:StreamHandler
321 if (this.os != null && super.isLoggable(record)) {
H A DHandler.java228 public boolean isLoggable(LogRecord record) { method in class:Handler
235 return this.filter == null || this.filter.isLoggable(record);
H A DLogger.java627 * implementation API imply that the isLoggable() method is not called
629 * isLoggable() method, so that affect the result of log methods.
650 public boolean isLoggable(Level l) { method in class:Logger
1019 if (f != null && !f.isLoggable(record)) {
/libcore/luni/src/test/java/libcore/java/util/logging/
H A DOldMemoryHandlerTest.java70 assertTrue(handler.isLoggable(new LogRecord(Level.INFO, "1")));
71 assertTrue(handler.isLoggable(new LogRecord(Level.WARNING, "2")));
72 assertTrue(handler.isLoggable(new LogRecord(Level.SEVERE, "3")));
85 public boolean isLoggable(LogRecord record) { method in class:OldMemoryHandlerTest.MockFilter
H A DOldLoggerTest.java226 public boolean isLoggable(LogRecord record) { method in class:OldLoggerTest.MockFilter
H A DOldFileHandlerTest.java475 public boolean isLoggable(LogRecord record) { method in class:OldFileHandlerTest.MockFilter
/libcore/luni/src/test/java/libcore/net/
H A DNetworkSecurityPolicyTest.java192 assertTrue(logger.isLoggable(record));

Completed in 325 milliseconds