/dalvik/libcore/logging/src/test/resources/config/java/util/logging/ |
logging.config | 1 handlers=org.apache.harmony.logging.tests.java.util.logging.LogManagerTest$MockHandler , java.util.logging.ConsoleHandler 3 org.apache.harmony.logging.tests.java.util.logging.LogManagerTest$MockHandler.level=OF
|
logging.properties | 1 handlers=org.apache.harmony.logging.tests.java.util.logging.LogManagerTest$MockHandler java.util.logging.ConsoleHandler 3 org.apache.harmony.logging.tests.java.util.logging.LogManagerTest$MockHandler.level=OF
|
/dalvik/libcore/logging/src/main/java/org/apache/harmony/logging/internal/nls/ |
messages.properties | 18 logging.0=This method is not currently implemented. 19 logging.1=Invalid level name: {0}. 20 logging.10=Cannot load target handler:{0} 21 logging.11=Size must be positive. 22 logging.12=Invalid property value for 23 logging.13=The encoding "{0}" is not supported. 24 logging.14=Exception occurred when writing to the output stream. 25 logging.15=Exception occurred when closing the output stream. 26 logging.16=Exception occurred while flushing the output stream. 27 logging.17=Exception occurred while formatting the log record [all...] |
/development/simulator/wrapsim/ |
Log.h | 4 * Logging.
|
/frameworks/base/core/java/com/android/internal/logging/ |
AndroidConfig.java | 17 package com.android.internal.logging; 19 import java.util.logging.Level; 20 import java.util.logging.Logger; 23 * Implements the java.util.logging configuration for Android. Activates a log 29 * This looks a bit weird, but it's the way the logging config works: A 41 // Turn down logging in Apache libraries.
|
AndroidHandler.java | 17 package com.android.internal.logging; 25 import java.util.logging.Formatter; 26 import java.util.logging.Handler; 27 import java.util.logging.Level; 28 import java.util.logging.LogRecord; 29 import java.util.logging.Logger; 32 * Implements a {@link java.util.logging.Logger} handler that writes to the Android log. The 135 Log.e("AndroidHandler", "Error logging message.", e); 149 Log.e("AndroidHandler", "Error logging message.", e); 154 * Converts a {@link java.util.logging.Logger} logging level into an Android one [all...] |
/dalvik/libcore/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/ |
SocketHandlerTest.java | 18 package org.apache.harmony.logging.tests.java.util.logging; 34 import java.util.logging.Filter; 35 import java.util.logging.Formatter; 36 import java.util.logging.Handler; 37 import java.util.logging.Level; 38 import java.util.logging.LogManager; 39 import java.util.logging.LogRecord; 40 import java.util.logging.LoggingPermission; 41 import java.util.logging.SimpleFormatter [all...] |
FormatterTest.java | 18 package org.apache.harmony.logging.tests.java.util.logging; 31 import java.util.logging.FileHandler; 32 import java.util.logging.Formatter; 33 import java.util.logging.Handler; 34 import java.util.logging.Level; 35 import java.util.logging.Logger; 36 import java.util.logging.LogManager; 37 import java.util.logging.LogRecord; 41 import org.apache.harmony.logging.tests.java.util.logging.util.EnvironmentHelper [all...] |
SimpleFormatterTest.java | 18 package org.apache.harmony.logging.tests.java.util.logging; 27 import java.util.logging.Handler; 28 import java.util.logging.Level; 29 import java.util.logging.LogRecord; 30 import java.util.logging.MemoryHandler; 31 import java.util.logging.SimpleFormatter; 70 args = {java.util.logging.Handler.class} 76 args = {java.util.logging.Handler.class} 89 args = {java.util.logging.LogRecord.class [all...] |
FilterTest.java | 20 * 1. Don't forget to write tests for org.apache.harmony.logging.internal.nls/Messages.java this file is in logging/src/main/java folder 31 package org.apache.harmony.logging.tests.java.util.logging; 38 import java.util.logging.Filter; 39 import java.util.logging.LogRecord; 53 args = {java.util.logging.LogRecord.class}
|
/external/apache-http/src/org/apache/commons/logging/impl/ |
Jdk14Logger.java | 18 package org.apache.commons.logging.impl; 22 import java.util.logging.Level; 23 import java.util.logging.Logger; 25 import org.apache.commons.logging.Log; 29 * <p>Implementation of the <code>org.apache.commons.logging.Log</code> 30 * interface that wraps the standard JDK logging mechanisms that were 107 * Logs a message with <code>java.util.logging.Level.FINE</code>. 110 * @see org.apache.commons.logging.Log#debug(Object) 118 * Logs a message with <code>java.util.logging.Level.FINE</code>. 122 * @see org.apache.commons.logging.Log#debug(Object, Throwable [all...] |
/external/apache-http/src/org/apache/commons/logging/ |
package.html | 20 <p>Simple wrapper API around multiple logging APIs.</p> 25 <p>This package provides an API for logging in server-based applications that 26 can be used around a variety of different logging implementations, including 29 <li><a href="http://logging.apache.org/log4j/">Log4J</a> (version 1.2 or later) 32 <li><a href="http://java.sun.com/j2se/1.4/docs/guide/util/logging/index.html"> 33 JDK Logging API</a>, included in JDK 1.4 or later systems. Each named 35 <code>java.util.logging.Logger</code> instance.</li> 54 import org.apache.commons.logging.Log; 55 import org.apache.commons.logging.LogFactory; 77 this page in order to understand how to configure logging for you [all...] |
/dalvik/libcore/logging/src/test/java/tests/logging/ |
AllTests.java | 18 package tests.logging; 24 * Test suite that includes all tests for the Logging project. 33 TestSuite suite = tests.TestSuiteFactory.createTestSuite("All Logging test suites"); 35 suite.addTest(org.apache.harmony.logging.tests.java.util.logging.AllTests.suite());
|
/dalvik/libcore/logging/src/main/java/java/util/logging/ |
logging.properties | 18 # Default logging property file. 19 # This file is used by java.util.logging package as default settings, users can 20 # specify another file instead with java.util.logging.config.file system 23 # You can refer to JavaDoc of java.util.logging package for more information 34 # java.util.logging.ConsoleHandler. 38 # logging framework initialization. The list should be white space separated. 42 # handlers=java.util.logging.ConsoleHandler java.util.logging.SocketHandler 44 handlers=java.util.logging.ConsoleHandler 47 # during logging package initialization, which may contain some code to set the [all...] |
LoggingPermission.java | 18 package java.util.logging; 24 import org.apache.harmony.logging.internal.nls.Messages; 27 * The permission required to control the logging when run with a 38 * logging. The {@code SecurityManager} checks the permissions. 55 // logging.6=Name must be "control". 56 throw new IllegalArgumentException(Messages.getString("logging.6")); //$NON-NLS-1$ 59 // logging.7=Actions must be either null or the empty string. 60 throw new IllegalArgumentException(Messages.getString("logging.7")); //$NON-NLS-1$
|
SocketHandler.java | 18 package java.util.logging; 24 import org.apache.harmony.logging.internal.nls.Messages; 32 * <li>java.util.logging.ConsoleHandler.level specifies the logging level, 35 * <li>java.util.logging.SocketHandler.filter specifies the name of the filter 38 * <li>java.util.logging.SocketHandler.formatter specifies the name of the 40 * {@code java.util.logging.XMLFormatter} if this property is not found or has 42 * <li>java.util.logging.SocketHandler.encoding specifies the encoding this 45 * <li>java.util.logging.SocketHandler.host specifies the name of the host that 47 * <li>java.util.logging.SocketHandler.encoding specifies the port number tha [all...] |
package.html | 4 This package allows to add logging to any application. It
|
ConsoleHandler.java | 18 package java.util.logging; 27 * <li>java.util.logging.ConsoleHandler.level specifies the logging level, 30 * <li>java.util.logging.ConsoleHandler.filter specifies the name of the filter 33 * <li>java.util.logging.ConsoleHandler.formatter specifies the name of the 35 * {@code java.util.logging.SimpleFormatter} if this property is not found or 37 * <li>java.util.logging.ConsoleHandler.encoding specifies the encoding this
|
/external/bluetooth/bluez/common/ |
Makefile.am | 4 libhelper_a_SOURCES = oui.h oui.c textfile.h textfile.c logging.h logging.c \
|
/frameworks/base/tests/DumpRenderTree/assets/ |
run_page_cycler.py | 12 import logging namespace 26 # Set up logging format. 27 log_level = logging.INFO 29 log_level = logging.DEBUG 30 logging.basicConfig(level=log_level, 44 logging.info("Running the test ...") 82 logging.error("Error happened : " + adb_output) 85 logging.info(adb_output); 86 logging.info(adb_error); 87 logging.info("Done\n") [all...] |
/external/qemu/ |
qemu-log.h | 25 /* Logging functions: */ 27 /* main logging function 34 /* vfprintf-like logging function 53 /* cpu_dump_state() logging functions: */
|
/external/webkit/LayoutTests/storage/domstorage/localstorage/ |
window-open-expected.txt | 3 Logging from second window:
|
/external/webkit/LayoutTests/storage/domstorage/sessionstorage/ |
window-open-expected.txt | 3 Logging from second window:
|
/external/webkit/WebKitTools/Scripts/webkitpy/layout_tests/ |
rebaseline_chromium_webkit_tests.py | 44 import logging namespace 129 def log_dashed_string(text, platform, logging_level=logging.INFO): 139 if logging_level == logging.ERROR: 140 logging.error(msg) 141 elif logging_level == logging.WARNING: 142 logging.warn(msg) 144 logging.info(msg) 166 logging.info('Html directory: "%s"', html_directory) 170 logging.info('Deleted file at html directory: "%s"', html_directory) 194 logging.debug(' Result file full path: "%s".', fullpath [all...] |
/dalvik/libcore/dalvik/src/main/java/dalvik/system/ |
DalvikLogHandler.java | 19 import java.util.logging.Level; 20 import java.util.logging.Logger; 24 * Implementers should also be subclasses of {@link java.util.logging.Handler}. 36 * java.util.logging.Handler#publish(java.util.logging.LogRecord)}, this
|