HomeSort by relevance Sort by last modified time
    Searched refs:logging (Results 51 - 75 of 212) sorted by null

1 23 4 5 6 7 8 9

  /external/webkit/WebKitTools/Scripts/webkitpy/
diff_parser.py 31 import logging namespace
141 logging.error('Unexpected line change without file path declaration: %r' % line)
162 logging.error('Unexpected diff format when parsing a chunk: %r' % line)
autoinstall.py 154 import logging namespace
158 _logger = logging.getLogger(__name__)
301 import logging namespace
302 #logging.basicConfig()
303 logger = logging.getLogger()
305 console = logging.StreamHandler()
306 console.setLevel(logging.DEBUG)
308 formatter = logging.Formatter('%(name)-12s: %(levelname)-8s %(message)s')
313 logger.setLevel(logging.INFO)
  /external/webkit/WebKitTools/Scripts/webkitpy/layout_tests/layout_package/
test_shell_thread.py 39 import logging namespace
82 logging.debug("Stacktrace for %s:\n%s" % (test_info.filename, error))
90 logging.debug("Previous test output extra lines after dump:\n%s" %
245 logging.debug('%s starting' % (self.getName()))
247 logging.debug('%s done (%d tests)' % (self.getName(),
254 logging.error('%s dying: %s' % (self.getName(),
278 logging.info("Ignoring invalid batch size '%s'" %
289 logging.info('Testing canceled')
330 logging.debug("%s %s failed:\n%s" % (self.getName(),
334 logging.debug("%s %s passed" % (self.getName()
    [all...]
json_results_generator.py 30 import logging namespace
157 logging.error("Local results.json file does not exist. Grabbing "
180 logging.debug("results.json was not valid JSON. Clobbering.")
184 logging.debug('Old JSON results do not exist. Starting fresh.')
195 logging.error("Archive directory is inaccessible. Not modifying "
201 logging.debug("Builder name (%s) is not in the results.json file."
  /cts/tests/core/logging/
Android.mk 22 # Logging Tests
26 LOCAL_SRC_FILES := $(call all-java-files-under,../../../../dalvik/libcore/logging/src/test/java) \
31 LOCAL_PACKAGE_NAME := android.core.tests.logging
  /dalvik/libcore/dalvik/src/main/java/dalvik/system/
TemporaryDirectory.java 20 import java.util.logging.Logger;
  /dalvik/libcore/logging/src/main/java/java/util/logging/
Formatter.java 18 package java.util.logging;
MemoryHandler.java 18 package java.util.logging;
23 import org.apache.harmony.logging.internal.nls.Messages;
41 * java.util.logging.MemoryHandler.push.
47 * <li>java.util.logging.MemoryHandler.filter specifies the {@code Filter}
49 * <li>java.util.logging.MemoryHandler.level specifies the level for this
51 * <li>java.util.logging.MemoryHandler.push specifies the push level, defaults
53 * <li>java.util.logging.MemoryHandler.size specifies the buffer size in number
55 * <li>java.util.logging.MemoryHandler.target specifies the class of the target
110 // logging.10=Cannot load target handler:{0}
111 throw new RuntimeException(Messages.getString("logging.10", //$NON-NLS-1
    [all...]
  /external/apache-http/src/org/apache/commons/logging/
Log.java 18 package org.apache.commons.logging;
21 * <p>A simple logging interface abstracting logging APIs. In order to be
26 * <p> The six logging levels used by <code>Log</code> are (in order):
36 * logging system is implementation dependent.
40 * <p>Performance is often a logging concern.
54 * <p>Configuration of the underlying logging system will generally be done
55 * external to the Logging APIs, through whatever mechanism is supported by
65 // ----------------------------------------------------- Logging Properties
69 * <p> Is debug logging currently enabled? </p
    [all...]
LogSource.java 17 package org.apache.commons.logging;
23 import org.apache.commons.logging.impl.NoOpLog;
35 * <code>org.apache.commons.logging.impl.Log4JLogger</code>.</li>
37 * <code>org.apache.commons.logging.impl.Jdk14Logger</code>.</li>
39 * <code>org.apache.commons.logging.impl.NoOpLog</code>.</li>
45 * <code>org.apache.commons.logging.log</code> to the name of the
46 * <code>org.apache.commons.logging.Log</code> implementation class
66 /** Is JDK 1.4 logging available */
88 // Is JDK 1.4 Logging Available?
90 if ((null != Class.forName("java.util.logging.Logger")) &
    [all...]
  /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/emma/core/java12/com/vladium/emma/rt/
RTCoverageDataPersister.java 16 import com.vladium.logging.Logger;
  /packages/apps/Email/src/com/android/exchange/
CalendarSyncAdapterService.java 101 boolean logging = Eas.USER_LOG;
107 if (logging) {
130 if (logging) {
135 if (logging) {
  /development/scripts/app_engine_server/
memcache_zipserve.py 32 import logging namespace
127 #logging.info('==========================EXCEPTION: NO LANG COOKIE FOUND, USING [%s]', langName)
128 logging.info('==========================REQ INIT name [%s] langName [%s] resetLangCookie [%s]', reqUri, langName, resetLangCookie)
146 logging.info(' Content URI is [%s]...', contentUri)
152 # logging.info(' Handling a MISMATCHED intl request')
162 # logging.info(' Request being handled as clean: [%s]', name)
175 # logging.info(' Handling an invalid intl request...')
195 # logging.info(' >>>> isCleanUrl name [%s] langName [%s] isValidIntl [%s]', name, langName, isValidIntl)
225 # logging.info('--->PREPROCESSING REDIRECT [%s] to [%s] with langName [%s]', name, uri, langName)
250 logging.info('-->>REDIRECTING %s to %s', name, uri
    [all...]
  /dalvik/libcore/luni/src/test/java/com/google/coretests/
CoreTestIsolator.java 23 import java.util.logging.Level;
24 import java.util.logging.Logger;
  /external/webkit/WebKitTools/Scripts/webkitpy/layout_tests/port/
websocket_server.py 33 import logging namespace
129 logging.info('No need to start %s server.' % self._server_name)
168 logging.debug('Using handler_map_file: %s' % handler_map_file)
172 logging.warning('No handler_map_file found')
194 logging.debug('Starting %s server on %d.' % (
196 logging.debug('cmdline: %s' % ' '.join(start_cmd))
213 logging.error(line)
244 logging.debug('Shutting down %s server %d.' % (self._server_name, pid))
  /external/webkit/WebKitTools/Scripts/webkitpy/layout_tests/test_types/
text_diff.py 37 import logging namespace
66 logging.debug('Using %s' % expected_filename)
image_diff.py 38 import logging namespace
136 logging.debug('Using %s' % expected_hash_file)
137 logging.debug('Using %s' % expected_png_file)
  /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...]
LoggerTest.java 18 package org.apache.harmony.logging.tests.java.util.logging;
25 import java.util.logging.Filter;
26 import java.util.logging.Handler;
27 import java.util.logging.Level;
28 import java.util.logging.LogManager;
29 import java.util.logging.LogRecord;
30 import java.util.logging.Logger;
31 import java.util.logging.LoggingPermission;
38 import org.apache.harmony.logging.tests.java.util.logging.util.EnvironmentHelper
    [all...]
  /frameworks/base/opengl/libs/
Android.mk 19 # needed on sim build because of weird logging issues
78 # needed on sim build because of weird logging issues
114 # needed on sim build because of weird logging issues
  /external/apache-http/src/org/apache/http/client/protocol/
ResponseProcessCookies.java 37 import org.apache.commons.logging.Log;
38 import org.apache.commons.logging.LogFactory;
  /external/apache-http/src/org/apache/http/impl/client/
ClientParamsStack.java 35 import org.apache.commons.logging.Log;
36 import org.apache.commons.logging.LogFactory;
  /external/apache-http/src/org/apache/http/impl/conn/
IdleConnectionHandler.java 38 import org.apache.commons.logging.Log;
39 import org.apache.commons.logging.LogFactory;
  /external/apache-http/src/org/apache/http/impl/conn/tsccm/
RouteSpecificPool.java 38 import org.apache.commons.logging.Log;
39 import org.apache.commons.logging.LogFactory;

Completed in 424 milliseconds

1 23 4 5 6 7 8 9