HomeSort by relevance Sort by last modified time
    Searched defs:logging (Results 126 - 150 of 282) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
LogRecordTest.java 18 package org.apache.harmony.logging.tests.java.util.logging;
23 import java.util.logging.Handler;
24 import java.util.logging.Level;
25 import java.util.logging.LogRecord;
26 import java.util.logging.Logger;
78 lr.setResourceBundleName("bundles/com/android/java/util/logging/res");
83 .getBundle("bundles/com/android/java/util/logging/res");
329 lr.setResourceBundleName("bundles/com/android/java/util/logging/res2");
331 "bundles/com/android/java/util/logging/res", Locale.US))
    [all...]
StreamHandlerTest.java 18 package org.apache.harmony.logging.tests.java.util.logging;
32 import java.util.logging.Filter;
33 import java.util.logging.Formatter;
34 import java.util.logging.Handler;
35 import java.util.logging.Level;
36 import java.util.logging.LogManager;
37 import java.util.logging.LogRecord;
38 import java.util.logging.LoggingPermission;
39 import java.util.logging.SimpleFormatter
    [all...]
LogManagerTest.java 18 package org.apache.harmony.logging.tests.java.util.logging;
29 import java.util.logging.ConsoleHandler;
30 import java.util.logging.Handler;
31 import java.util.logging.Level;
32 import java.util.logging.LogManager;
33 import java.util.logging.LogRecord;
34 import java.util.logging.Logger;
35 import java.util.logging.LoggingPermission;
39 import org.apache.harmony.logging.tests.java.util.logging.HandlerTest.NullOutputStream
    [all...]
  /external/apache-http/src/org/apache/commons/logging/impl/
SimpleLog.java 18 package org.apache.commons.logging.impl;
31 import org.apache.commons.logging.Log;
32 import org.apache.commons.logging.LogConfigurationException;
39 * <li><code>org.apache.commons.logging.simplelog.defaultlog</code> -
40 * Default logging detail level for all instances of SimpleLog.
43 * <li><code>org.apache.commons.logging.simplelog.log.xxxxx</code> -
44 * Logging detail level for a SimpleLog instance named "xxxxx".
46 * If not specified, the default logging detail level is used.</li>
47 * <li><code>org.apache.commons.logging.simplelog.showlogname</code> -
50 * <li><code>org.apache.commons.logging.simplelog.showShortLogname</code>
    [all...]
LogFactoryImpl.java 17 package org.apache.commons.logging.impl;
28 import org.apache.commons.logging.Log;
29 import org.apache.commons.logging.LogConfigurationException;
30 import org.apache.commons.logging.LogFactory;
35 * following algorithm to dynamically select a logging implementation
39 * <code>org.apache.commons.logging.Log</code> to identify the
41 * <li>Use the <code>org.apache.commons.logging.Log</code> system property
44 * <code>org.apache.commons.logging.impl.Log4JLogger</code>.</li>
46 * <code>org.apache.commons.logging.impl.Jdk14Logger</code>.</li>
48 * <code>org.apache.commons.logging.impl.SimpleLog</code>.</li
    [all...]
  /external/emma/core/java12/com/vladium/logging/
Logger.java 9 package com.vladium.logging;
28 * A simple Java version-independent logging framework. Each Logger is also
30 * logging verbosity level etc. In general, a Logger is looked up as an
32 * logging configurations in a way that seems difficult with log4j.<P>
36 * threads that are guaranteed to share the same logging context). [This is
123 * A quick method to determine if logging is enabled at a given level.
125 * log() or convenience logging methods directly incurs significant
  /external/javassist/src/main/javassist/tools/web/
Webserver.java 141 public void logging(String msg) { method in class:Webserver
148 public void logging(String msg1, String msg2) { method in class:Webserver
157 public void logging(String msg1, String msg2, String msg3) { method in class:Webserver
184 logging(e.toString());
191 logging(clnt.getInetAddress().getHostName(),
  /external/slf4j/jcl-over-slf4j/src/main/java/org/apache/commons/logging/impl/
SimpleLog.java 17 package org.apache.commons.logging.impl;
30 import org.apache.commons.logging.Log;
31 import org.apache.commons.logging.LogConfigurationException;
40 * <li><code>org.apache.commons.logging.simplelog.defaultlog</code> - Default
41 * logging detail level for all instances of SimpleLog. Must be one of ("trace",
44 * <li><code>org.apache.commons.logging.simplelog.log.xxxxx</code> - Logging
47 * logging detail level is used.</li>
48 * <li><code>org.apache.commons.logging.simplelog.showlogname</code> - Set to
51 * <li><code>org.apache.commons.logging.simplelog.showShortLogname</code> - Se
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/logging/
OldLogManagerTest.java 18 package libcore.java.util.logging;
25 import java.util.logging.Handler;
26 import java.util.logging.LogManager;
27 import java.util.logging.LogRecord;
28 import java.util.logging.Logger;
51 props.put("java.util.logging.FileHandler.pattern", "%h/java%u.log");
52 props.put("java.util.logging.FileHandler.limit", "50000");
53 props.put("java.util.logging.FileHandler.count", "5");
54 props.put("java.util.logging.FileHandler.formatter", "java.util.logging.XMLFormatter")
    [all...]
OldFileHandlerTest.java 18 package libcore.java.util.logging;
29 import java.util.logging.FileHandler;
30 import java.util.logging.Filter;
31 import java.util.logging.Formatter;
32 import java.util.logging.Handler;
33 import java.util.logging.Level;
34 import java.util.logging.LogManager;
35 import java.util.logging.LogRecord;
56 props.put("java.util.logging.FileHandler.level", "FINE");
57 props.put("java.util.logging.FileHandler.filter", classNam
    [all...]
OldLoggerTest.java 18 package libcore.java.util.logging;
23 import java.util.logging.Filter;
24 import java.util.logging.Handler;
25 import java.util.logging.Level;
26 import java.util.logging.LogManager;
27 import java.util.logging.LogRecord;
28 import java.util.logging.Logger;
32 private final static String VALID_RESOURCE_BUNDLE = "bundles/java/util/logging/res";
  /libcore/ojluni/src/main/java/java/util/logging/
FileHandler.java 27 package java.util.logging;
52 * Simple file logging <tt>Handler</tt>.
82 * (defaults to <tt>java.util.logging.XMLFormatter</tt>) </li>
102 * <li> java.util.logging.FileHandler.level=INFO </li>
103 * <li> java.util.logging.FileHandler.formatter=java.util.logging.SimpleFormatter </li>
109 * <li> com.foo.MyHandler.formatter=java.util.logging.SimpleFormatter </li>
Level.java 26 package java.util.logging;
35 * The Level class defines a set of standard logging levels that
36 * can be used to control logging output. The logging Level objects
37 * are ordered and are specified by ordered integers. Enabling logging
38 * at a given level also enables logging at all higher levels.
54 * off logging, and a level ALL that can be used to enable
55 * logging of all messages.
57 * It is possible for third parties to define additional logging
67 private static final String defaultBundle = "sun.util.logging.resources.logging"
    [all...]
LogRecord.java 27 package java.util.logging;
35 * LogRecord objects are used to pass logging requests between
36 * the logging framework and individual log Handlers.
38 * When a LogRecord is passed into the logging framework it
47 * if a logging Handler wants to pass off a LogRecord to another
90 * @serial Logging message level
100 * @serial Class that issued logging call
105 * @serial Method that issued logging call
115 * @serial Thread ID for thread that issued logging call.
173 * @param level a logging level valu
    [all...]
Logger.java 28 package java.util.logging;
59 * Logging messages will be forwarded to registered Handler
73 * logging configuration file, as described in the description
80 * On each logging call the Logger initially performs a cheap
83 * lower than the log level, the logging call returns immediately.
86 * a LogRecord to describe the logging message. It will then call a
97 * This bundle will be used for localizing logging messages.
153 * at the time of logging.
170 * The logging methods are grouped in five main categories:
196 * method name, the Logging framework will make a "best effort
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/logging/
UserEventDispatcher.java 17 package com.android.launcher3.logging;
19 import static com.android.launcher3.logging.LoggerUtils.newAction;
20 import static com.android.launcher3.logging.LoggerUtils.newCommandAction;
21 import static com.android.launcher3.logging.LoggerUtils.newContainerTarget;
22 import static com.android.launcher3.logging.LoggerUtils.newControlTarget;
23 import static com.android.launcher3.logging.LoggerUtils.newDropTarget;
24 import static com.android.launcher3.logging.LoggerUtils.newItemTarget;
25 import static com.android.launcher3.logging.LoggerUtils.newLauncherEvent;
26 import static com.android.launcher3.logging.LoggerUtils.newTarget;
27 import static com.android.launcher3.logging.LoggerUtils.newTouchAction
    [all...]
  /prebuilts/tools/common/m2/repository/org/seleniumhq/selenium/selenium-api/2.42.2/
selenium-api-2.42.2.jar 
  /external/libchrome/base/
logging.cc 5 #include "base/logging.h"
82 namespace logging { namespace
194 // This class acts as a wrapper for locking the logging files.
195 // LoggingLock::Init() should be called from the main thread before any logging
196 // is done. Then whenever logging, be sure to have a local LoggingLock
245 // LockImpl directly instead of using Lock, because Lock makes logging calls.
271 // Called by logging functions to ensure that |g_log_file| is initialized
295 // dependencies of the logging implementation. For e.g. FilePath and
297 // some consumers of base logging like chrome_elf, etc.
386 // ignore file options unless logging to file is set
    [all...]
logging.h 35 // process from the main application. When the logging system needs to display
45 // If DebugMessage.exe is not found, the logging code will use a normal
52 // Make a bunch of macros for logging. The way to log things is to stream
57 // You can also do conditional logging:
65 // There are also "debug mode" logging macros like the ones above:
71 // All "debug mode" logging is compiled away to nothing for non-debug mode
82 // There are "verbose level" logging macros. They look like
88 // The verbose logging can also be turned on module-by-module. For instance,
103 // E.g., "*/foo/bar/*=2" would change the logging level for all code
109 // // do some logging preparation and loggin
144 namespace logging { namespace
    [all...]
  /frameworks/base/core/java/android/view/textclassifier/logging/
SmartSelectionEventTracker.java 17 package android.view.textclassifier.logging;
29 import com.android.internal.logging.MetricsLogger;
30 import com.android.internal.logging.nano.MetricsProto.MetricsEvent;
  /libcore/ojluni/src/main/java/sun/util/logging/
PlatformLogger.java 28 package sun.util.logging;
44 * static dependency of the logging facility and also defers the
45 * java.util.logging initialization until it is enabled.
46 * In addition, the PlatformLogger API can be used if the logging
49 * If the logging facility is not enabled, the platform loggers
50 * will output log messages per the default logging configuration
54 * When the logging facility is enabled (at startup or runtime),
55 * the java.util.logging.Logger will be created for each platform
59 * Logging facility is "enabled" when one of the following
61 * 1) a system property "java.util.logging.config.class" o
    [all...]
  /external/ImageMagick/coders/
mat.c 820 int logging;
836 logging = LogMagickEvent(CoderEvent,GetMagickModule(),"enter");
867 if (logging)
953 if (logging) (void)LogMagickEvent(CoderEvent,GetMagickModule(),
986 if (logging)
817 int logging; local
1395 int logging; local
    [all...]
  /libcore/luni/src/module/java/
module-info.java 56 exports java.util.logging;
103 exports sun.util.logging;
  /prebuilts/tools/common/m2/repository/org/apache/maven/maven-plugin-api/3.2.1/
maven-plugin-api-3.2.1.jar 
  /prebuilts/misc/common/robolectric/3.1.1/lib/
plexus-container-default-1.0-alpha-9-stable-1.jar 

Completed in 591 milliseconds

1 2 3 4 56 7 8 91011>>