HomeSort by relevance Sort by last modified time
    Searched refs:logging (Results 701 - 725 of 1200) sorted by null

<<21222324252627282930>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/
test_main.py 4 import logging namespace
35 # Clean up logging configuration down by main.
36 del logging.root.handlers[:]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/
test_main.py 4 import logging namespace
35 # Clean up logging configuration down by main.
36 del logging.root.handlers[:]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/tests/functests/sampleProjects/
SampleProjectTest.java 42 import java.util.logging.Level;
43 import java.util.logging.Logger;
  /external/chromium_org/courgette/
courgette_tool.cc 13 #include "base/logging.h"
432 logging::LoggingSettings settings;
433 settings.logging_dest = logging::LOG_TO_ALL;
435 (void)logging::InitLogging(settings);
436 logging::SetMinLogLevel(logging::LOG_VERBOSE);
  /external/chromium_org/third_party/WebKit/Tools/TestResultServer/model/
jsonresults_unittest.py 37 import logging namespace
190 self.old_log_level = logging.root.level
191 logging.root.setLevel(logging.ERROR)
194 logging.root.setLevel(self.old_log_level)
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/examples/
p2p-nfc.py 21 import logging namespace
542 parser.add_argument('-d', const=logging.DEBUG, default=logging.INFO,
545 parser.add_argument('-q', const=logging.WARNING, action='store_const',
582 logging.basicConfig(level=args.loglevel)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
base.py 36 import logging namespace
69 _log = logging.getLogger(__name__)
252 self._wdiff_available = self.check_wdiff(logging=False)
257 self._pretty_patch_available = self.check_pretty_patch(logging=False)
308 override_step=None, logging=True):
313 you're looking for (e.g., "HTTP Server"). Used for error logging.
315 logging: Whether or not log the error messages."""
317 if logging:
396 def check_image_diff(self, override_step=None, logging=True):
404 def check_pretty_patch(self, logging=True)
    [all...]
  /external/chromium_org/tools/linux/
procfs.py 14 import logging namespace
21 class _NullHandler(logging.Handler):
26 _LOGGER = logging.getLogger('procfs')
707 _LOGGER.setLevel(logging.WARNING)
708 handler = logging.StreamHandler()
709 handler.setLevel(logging.WARNING)
710 handler.setFormatter(logging.Formatter(
  /external/chromium_org/base/i18n/
build_utf8_validator_tables.cc 42 #include "base/logging.h"
429 logging::LoggingSettings settings;
430 settings.logging_dest = logging::LOG_TO_SYSTEM_DEBUG_LOG;
431 logging::InitLogging(settings);
  /external/chromium_org/chrome/browser/chromeos/drive/
change_list_loader.cc 321 logger_->Log(logging::LOG_INFO, "Checking for updates");
493 logger_->Log(logging::LOG_INFO,
521 logger_->Log(logging::LOG_INFO,
  /external/chromium_org/chrome/browser/sync_file_system/local/
local_file_sync_service.cc 215 logging::LOG_WARNING,
256 util::Log(logging::LOG_VERBOSE, FROM_HERE,
396 util::Log(logging::LOG_VERBOSE, FROM_HERE,
  /external/chromium_org/chrome/test/base/
web_ui_browser_test.cc 55 if (severity == logging::LOG_ERROR && file &&
370 logging::SetLogMessageHandler(&LogHandler);
386 logging::SetLogMessageHandler(NULL);
  /external/chromium_org/chrome/tools/
webforms_aggregator.py 26 import logging namespace
77 logger = logging.getLogger(__name__)
325 logger = logging.getLogger(__name__)
496 """Display logging for registration page found.
625 logger = logging.getLogger(__name__)
737 options.log_level = getattr(logging, options.log_level)
742 logger = logging.getLogger(__name__)
744 console = logging.StreamHandler()
  /external/chromium_org/google_apis/gcm/tools/
mcs_probe.cc 16 #include "base/logging.h"
480 logging::LoggingSettings settings;
481 settings.logging_dest = logging::LOG_TO_SYSTEM_DEBUG_LOG;
482 logging::InitLogging(settings);
  /external/chromium_org/mojo/system/
raw_channel_win.cc 14 #include "base/logging.h"
309 << "ReadFile: " << logging::SystemErrorCodeToString(error);
337 LOG(ERROR) << "WriteFile: " << logging::SystemErrorCodeToString(error);
381 << "ReadFile: " << logging::SystemErrorCodeToString(error);
  /external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/
chrome_browser_backend.py 7 import logging namespace
189 logging.error('ExtensionsToLoad: ' +
191 logging.error('Extension list: ' +
  /external/markdown/markdown/
__init__.py 49 import logging namespace
50 from logging import DEBUG, INFO, WARN, ERROR, CRITICAL
63 # default logging level for command-line use
104 """ A wrapper method for logging debug messages. """
105 logger = logging.getLogger('MARKDOWN')
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
org.eclipse.sisu.plexus-0.0.0.M5.jar 
  /development/ndk/platforms/android-3/include/linux/
wanrouter.h 89 unsigned char logging; member in struct:wan_x25_conf
  /development/samples/MySampleRss/src/com/example/codelab/rssexample/
MyRssReader2.java 32 import java.util.logging.Logger;
RssContentProvider.java 31 import java.util.logging.Logger;
  /external/apache-http/src/org/apache/commons/logging/impl/
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/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/handshake/
draft75.py 40 import logging namespace
  /external/chromium_org/base/
vlog.cc 12 #include "base/logging.h"
16 namespace logging { namespace
87 // number of dependencies the logging system has.
  /external/chromium_org/build/util/lib/common/
perf_tests_results_helper.py 9 import logging namespace

Completed in 1421 milliseconds

<<21222324252627282930>>