HomeSort by relevance Sort by last modified time
    Searched refs:loggers (Results 1 - 25 of 65) sorted by null

1 2 3

  /external/slf4j/slf4j-api/src/main/java/org/slf4j/helpers/
SubstituteLoggerFactory.java 43 final ConcurrentMap<String, SubstituteLogger> loggers = new ConcurrentHashMap<String, SubstituteLogger>(); field in class:SubstituteLoggerFactory
46 SubstituteLogger logger = loggers.get(name);
49 SubstituteLogger oldLogger = loggers.putIfAbsent(name, logger);
57 return new ArrayList<String>(loggers.keySet());
61 return new ArrayList<SubstituteLogger>(loggers.values());
65 loggers.clear();
  /platform_testing/libraries/device-collectors/src/test/java/android/device/loggers/test/
StubInstrumentationAnnotatedTest.java 16 package android.device.loggers.test;
18 import android.device.loggers.TestLogData;
29 * from the host-side to exercise the loggers.
  /frameworks/base/cmds/statsd/src/logd/
LogReader.cpp 83 logger_list* loggers; local
87 loggers = android_logger_list_alloc(ANDROID_LOG_RDONLY,
92 eventLogger = android_logger_open(loggers, LOG_ID_STATS);
99 err = android_logger_list_read(loggers, &msg);
121 // Free the logger list and close the individual loggers
122 android_logger_list_free(loggers);
  /libcore/ojluni/src/main/java/java/util/logging/
Logging.java 58 Enumeration<String> loggers = logManager.getLoggerNames(); local
61 for (; loggers.hasMoreElements();) {
62 array.add(loggers.nextElement());
  /platform_testing/libraries/device-collectors/src/main/java/android/device/loggers/
TestCaseLogger.java 16 package android.device.loggers;
LogFileLogger.java 16 package android.device.loggers;
TestLogData.java 16 package android.device.loggers;
  /external/lisa/
logging.conf 6 [loggers]
22 [loggers]
  /external/slf4j/slf4j-api/src/main/java/org/slf4j/
LoggerFactory.java 43 * The <code>LoggerFactory</code> is a utility class producing Loggers for
177 List<SubstituteLogger> loggers = TEMP_FACTORY.getLoggers(); local
179 if (loggers.isEmpty()) {
183 Util.report("The following set of substitute loggers may have been accessed");
186 Util.report("loggers will work as normally expected.");
188 for (SubstituteLogger subLogger : loggers) {
  /libcore/ojluni/src/main/java/sun/util/logging/
PlatformLogger.java 49 * If the logging facility is not enabled, the platform loggers
76 * Platform loggers will not detect if <JAVA_HOME>/lib/logging.properties
79 * the platform loggers will use the default setting described above.
80 * The platform loggers are designed for JDK developers use and
186 // Table of known loggers. Maps names to PlatformLoggers.
187 private static Map<String,WeakReference<PlatformLogger>> loggers = field in class:PlatformLogger
195 WeakReference<PlatformLogger> ref = loggers.get(name);
201 loggers.put(name, new WeakReference<>(log));
207 * Initialize java.util.logging.Logger objects for all platform loggers.
214 for (Map.Entry<String, WeakReference<PlatformLogger>> entry : loggers.entrySet())
    [all...]
  /platform_testing/libraries/device-collectors/src/hostsidetests/src/com/android/loggers/
DeviceFileLoggerHostTest.java 16 package com.android.loggers;
52 private static final String FILE_LOGGER = "android.device.loggers.LogFileLogger";
73 mTestRunner.setClassName("android.device.loggers.test.StubInstrumentationAnnotatedTest");
  /external/testng/src/main/java/org/testng/log4testng/
Logger.java 38 * # Specifies the root Loggers logging level. Will log DEBUG level and above
48 * In your source files you will typically instantiate and use loggers this ways:
120 /** Map of all known loggers. */
121 private static final Map<Class, Logger> loggers = Maps.newHashMap(); field in class:Logger
139 * will be returned. Otherwise, a new instance is created. By default, loggers
148 Logger logger= loggers.get(pClass);
154 loggers.put(pClass, logger);
405 * "org.testng.TestNG" the the following loggers are searched in this order:
478 loggers.clear();
557 * Tests that the root logger's default level is WARN and that loggers do not
    [all...]
  /prebuilts/go/darwin-x86/src/internal/testlog/
log.go 12 // Interface is the interface required of test loggers.
  /prebuilts/go/linux-x86/src/internal/testlog/
log.go 12 // Interface is the interface required of test loggers.
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/logging/
config.py 177 """Create and install loggers"""
180 llist = cp.get("loggers", "keys")
201 #we don't want to lose the existing loggers,
203 #existing is set to contain all existing loggers,
206 #what's left in existing is the set of loggers
211 #avoid disabling child loggers of explicitly
212 #named loggers. With a sorted list it is easier
213 #to find the child loggers.
215 #We'll keep the list of existing loggers
216 #which are children of named loggers here...
    [all...]
  /external/python/cpython2/Lib/logging/
config.py 184 """Create and install loggers"""
187 llist = cp.get("loggers", "keys")
208 #we don't want to lose the existing loggers,
210 #existing is set to contain all existing loggers,
213 #what's left in existing is the set of loggers
218 #avoid disabling child loggers of explicitly
219 #named loggers. With a sorted list it is easier
220 #to find the child loggers.
222 #We'll keep the list of existing loggers
223 #which are children of named loggers here..
    [all...]
  /external/python/cpython3/Lib/logging/
config.py 166 When (re)configuring logging, handle loggers which were in the previous
171 However, don't disable children of named loggers, as that's probably not
172 what was intended by the user. Also, allow existing loggers to NOT be
186 """Create and install loggers"""
189 llist = cp["loggers"]["keys"]
209 #we don't want to lose the existing loggers,
211 #existing is set to contain all existing loggers,
214 #what's left in existing is the set of loggers
219 #avoid disabling child loggers of explicitly
220 #named loggers. With a sorted list it is easie
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/logging/
config.py 177 """Create and install loggers"""
180 llist = cp.get("loggers", "keys")
201 #we don't want to lose the existing loggers,
203 #existing is set to contain all existing loggers,
206 #what's left in existing is the set of loggers
211 #avoid disabling child loggers of explicitly
212 #named loggers. With a sorted list it is easier
213 #to find the child loggers.
215 #We'll keep the list of existing loggers
216 #which are children of named loggers here..
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/logging/
config.py 177 """Create and install loggers"""
180 llist = cp.get("loggers", "keys")
201 #we don't want to lose the existing loggers,
203 #existing is set to contain all existing loggers,
206 #what's left in existing is the set of loggers
211 #avoid disabling child loggers of explicitly
212 #named loggers. With a sorted list it is easier
213 #to find the child loggers.
215 #We'll keep the list of existing loggers
216 #which are children of named loggers here..
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/logging/
config.py 177 """Create and install loggers"""
180 llist = cp.get("loggers", "keys")
201 #we don't want to lose the existing loggers,
203 #existing is set to contain all existing loggers,
206 #what's left in existing is the set of loggers
211 #avoid disabling child loggers of explicitly
212 #named loggers. With a sorted list it is easier
213 #to find the child loggers.
215 #We'll keep the list of existing loggers
216 #which are children of named loggers here..
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/logging/
config.py 177 """Create and install loggers"""
180 llist = cp.get("loggers", "keys")
201 #we don't want to lose the existing loggers,
203 #existing is set to contain all existing loggers,
206 #what's left in existing is the set of loggers
211 #avoid disabling child loggers of explicitly
212 #named loggers. With a sorted list it is easier
213 #to find the child loggers.
215 #We'll keep the list of existing loggers
216 #which are children of named loggers here..
    [all...]
  /prebuilts/tools/common/m2/repository/org/sonatype/gossip/gossip/1.3/
gossip-1.3.jar 
  /prebuilts/tools/common/m2/repository/org/slf4j/slf4j-api/1.7.10/
slf4j-api-1.7.10.jar 
  /prebuilts/tools/common/m2/repository/org/slf4j/slf4j-api/1.7.12/
slf4j-api-1.7.12.jar 
  /prebuilts/tools/common/m2/repository/org/slf4j/slf4j-api/1.7.6/
slf4j-api-1.7.6.jar 

Completed in 667 milliseconds

1 2 3