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

1 2 3 4 56 7 8 91011>>

  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/
AbstractDescriptorBox.java 25 import java.util.logging.Level;
26 import java.util.logging.Logger;
  /external/openssh/contrib/
ssh-copy-id 47 Now try logging into the machine, with "ssh '$host'", and check in:
  /external/robolectric/
Android.mk 24 robolectric-commons-logging \
48 robolectric-commons-logging:lib/main/commons-logging-1.1.1.jar \
49 robolectric-h2:lib/main/commons-logging-1.1.1.jar \
  /external/smack/src/com/kenai/jbosh/
HTTPExchange.java 22 import java.util.logging.Level;
23 import java.util.logging.Logger;
  /external/webkit/Tools/Scripts/
new-run-webkit-websocketserver 33 import logging
70 help='Include debug-level logging.')
97 log_level = logging.WARN
99 log_level = logging.DEBUG
100 logging.basicConfig(level=log_level)
  /external/webkit/Tools/Scripts/webkitpy/common/net/
networktransaction.py 29 import logging namespace
36 _log = logging.getLogger(__name__)
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/
metered_stream.py 40 import logging namespace
42 _log = logging.getLogger("webkitpy.layout_tests.metered_stream")
105 then this output is discarded. We have this in case we are logging
116 Write a message that is also included when logging verbosely.
118 This routine preserves the same console logging behavior as progress(),
result_summary.py 33 import logging namespace
37 _log = logging.getLogger("webkitpy.layout_tests.run_webkit_tests")
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
gtk.py 31 import logging namespace
37 _log = logging.getLogger("webkitpy.layout_tests.port.gtk")
http_server_base.py 32 import logging namespace
39 _log = logging.getLogger("webkitpy.layout_tests.port.http_server_base")
qt.py 31 import logging namespace
40 _log = logging.getLogger("webkitpy.layout_tests.port.qt")
  /external/webkit/Tools/TestResultServer/handlers/
testfilehandler.py 29 import logging namespace
60 logging.debug(
86 logging.info("File not found, master: %s, builder: %s, test_type: %s, name: %s.",
114 logging.info("File not found, master %s, builder: %s, test_type: %s, name: %s.",
143 logging.debug(
182 logging.debug(
190 logging.debug("test: %s, type:%s", file_params, type(file_params))
214 logging.warning(messages)
  /frameworks/base/core/java/com/android/internal/http/multipart/
StringPart.java 37 import org.apache.commons.logging.Log;
38 import org.apache.commons.logging.LogFactory;
  /frameworks/base/services/common_time/
Android.mk 20 # Uncomment to enable vesbose logging and debug service.
  /libcore/luni/src/test/java/libcore/java/util/logging/
OldErrorManagerTest.java 18 package libcore.java.util.logging;
22 import java.util.logging.ErrorManager;
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";
  /external/webkit/Tools/Scripts/webkitpy/style/
checker.py 33 import logging namespace
51 _log = logging.getLogger("webkitpy.style.checker")
332 """Create and return a default list of logging.Handler instances.
334 Format WARNING messages and above to display the logging level, and
341 # Handles logging.WARNING and above.
342 error_handler = logging.StreamHandler(stream)
343 error_handler.setLevel(logging.WARNING)
344 formatter = logging.Formatter("%(levelname)s: %(message)s")
347 # Create a logging.Filter instance that only accepts messages
349 non_error_filter = logging.Filter(
    [all...]
  /external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
FormatterTest.java 18 package org.apache.harmony.logging.tests.java.util.logging;
23 import java.util.logging.Formatter;
24 import java.util.logging.Level;
25 import java.util.logging.LogRecord;
92 .getBundle("bundles/java/util/logging/res");
110 rb = ResourceBundle.getBundle("bundles/java/util/logging/res",
122 r.setResourceBundleName("bundles/java/util/logging/res");
ConsoleHandlerTest.java 18 package org.apache.harmony.logging.tests.java.util.logging;
26 import java.util.logging.ConsoleHandler;
27 import java.util.logging.Filter;
28 import java.util.logging.Formatter;
29 import java.util.logging.Handler;
30 import java.util.logging.Level;
31 import java.util.logging.LogManager;
32 import java.util.logging.LogRecord;
33 import java.util.logging.LoggingPermission
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/common/system/
logtesting.py 23 """Supports the unit-testing of logging code.
26 logging module.
29 more advanced needs (e.g. unit-testing methods that configure logging),
34 import logging namespace
40 """Represents a file-like object for unit-testing logging.
42 This is meant for passing to the logging.StreamHandler constructor.
62 # http://docs.python.org/library/logging.html#module-logging.handlers
87 self._log = LogTesting.setUp(self) # Turn logging on.
90 self._log.tearDown() # Turn off and reset logging
    [all...]
logutils_unittest.py 25 import logging namespace
69 # "webkitpy." so as not to conflict with test-webkitpy logging.
70 logger = logging.getLogger("unittest")
74 # propagated to loggers used by test-webkitpy logging (e.g.
86 """Reset logging to its original state.
88 This method ensures that the logging configuration set up
89 for a unit test does not affect logging in other unit tests.
103 """Tests configure_logging() with the default logging level."""
113 # We test the boundary case of a logging level equal to 19.
115 # which corresponds to a logging level of 10
    [all...]
  /frameworks/base/core/java/android/os/
Looper.java 131 Printer logging = me.mLogging; local
132 if (logging != null) {
133 logging.println(">>>>> Dispatching to " + msg.target + " " +
139 if (logging != null) {
140 logging.println("<<<<< Finished to " + msg.target + " " + msg.callback);
167 * Control logging of messages as they are processed by this Looper. If
173 * null to disable message logging.
  /development/scripts/app_engine_server/
memcache_zipserve.py 33 import logging namespace
143 #logging.info('==========================EXCEPTION: NO LANG COOKIE FOUND, USING [%s]', langName)
144 logging.info('==========================REQ INIT name [%s] langName [%s] resetLangCookie [%s]', reqUri, langName, resetLangCookie)
155 logging.info(' Content URI is [%s]...', contentUri)
162 # logging.info(' Handling a MISMATCHED intl request')
167 #logging.info('INTL PREP resetting langName to urlLangName [%s]', langName)
169 # logging.info('INTL PREP no need to reset langName')
192 # logging.info(' Request being handled as clean: [%s]', name)
205 # logging.info(' Handling an invalid intl request...')
243 logging.info('Redirect cache miss. Computing new redirect data.\n
    [all...]
  /external/chromium/third_party/libjingle/source/talk/base/
socketpool.cc 31 #include "talk/base/logging.h"
275 LoggingAdapter* logging = recycle_bin_.front(); local
277 logging->set_label(ss.str());
278 logging->Attach(stream);
279 return logging;
285 LoggingAdapter* logging = static_cast<LoggingAdapter*>(stream); local
286 pool_->ReturnConnectedStream(logging->Detach());
287 recycle_bin_.push_back(logging);
  /packages/apps/Exchange/exchange2/src/com/android/exchange/adapter/
Parser.java 53 private boolean logging = false; field in class:Parser
165 logging = Eas.PARSER_LOG;
175 logging = Eas.PARSER_LOG;
185 logging = val;
193 * Set the tag used for logging. When debugging is on, every token is logged (Log.v) to
196 * @param val the logging tag
250 if (logging) {
406 if (logging) {
421 if (logging) {
485 if (logging) {
    [all...]

Completed in 770 milliseconds

1 2 3 4 56 7 8 91011>>