| /external/chromium_org/base/ |
| vlog.h | 15 namespace logging { namespace 22 // |v_switch| gives the default maximal active V-logging level; 0 is 23 // the default. Normally positive values are used for V-logging 26 // |vmodule_switch| gives the per-module maximal V-logging levels to 28 // E.g. "my_module=2,foo*=3" would change the logging level for all 38 // "*/foo/bar/*=2" would change the logging level for all code in 75 } // namespace logging
|
| /external/chromium_org/net/test/ |
| scoped_mock_log.h | 8 #include "base/logging.h" 34 // CAVEAT: base/logging does not allow a thread to call LOG() again 43 // some other threads already exist and are logging, as the user 80 // Static function which is set as the logging message handler. 92 logging::LogMessageHandlerFunction previous_handler_;
|
| /external/chromium_org/sandbox/linux/tests/ |
| main.cc | 6 #include "base/logging.h" 40 logging::SetLogAssertHandler(UnitTestAssertHandler);
|
| /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/ |
| test_expectations.py | 31 import logging namespace 42 _log = logging.getLogger(__name__) 62 log = logging.getLogger("webkitpy.layout_tests.layout_package.test_expectations") 63 log.setLevel(logging.CRITICAL)
|
| /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/test/ |
| skip_unittest.py | 24 import logging namespace 32 self.logger = logging.getLogger(__name__) 35 self.logger.setLevel(logging.INFO) 41 self.handler = logging.StreamHandler(self.log_stream)
|
| /external/chromium_org/third_party/markdown/ |
| __main__.py | 43 import logging namespace 44 from logging import DEBUG, INFO, CRITICAL 46 logger = logging.getLogger('MARKDOWN') 106 # Parse options and adjust logging level if necessary 110 logger.addHandler(logging.StreamHandler())
|
| /external/chromium_org/tools/ipc_fuzzer/replay/ |
| replay_process.cc | 12 #include "base/logging.h" 41 logging::SetMinLogLevel(logging::LOG_ERROR); 42 logging::InitLogging(logging::LoggingSettings());
|
| /external/chromium_org/tools/ |
| update_reference_build.py | 30 import logging namespace 127 logging.info(str(args) + ' ' + (cwd or '')) 133 logging.critical(stderr) 134 logging.info(stdout) 239 logging.info('%s alread exists, skipping download', output) 244 logging.critical('Failed to find %s build for r%s\n', platform, 254 logging.info('Downloading %s, saving to %s', url, output) 284 logging.info('Opening %s', dl_file) 297 logging.info('Extracting %s to %s (%s)', content, dest, dl_file) 326 logging.info('Copying %s to %s', dl_file, dest_dir [all...] |
| /external/emma/core/java12/com/vladium/logging/ |
| ILogLevels.java | 9 package com.vladium.logging; 47 /** setting log level to NONE disables all logging */
|
| /frameworks/base/tests/CoreTests/android/core/ |
| MiscRegressionTest.java | 20 import java.util.logging.Logger; 29 Logger.global.severe("This has logging Level.SEVERE, should become ERROR"); 30 Logger.global.warning("This has logging Level.WARNING, should become WARN"); 31 Logger.global.info("This has logging Level.INFO, should become INFO"); 32 Logger.global.config("This has logging Level.CONFIG, should become DEBUG"); 33 Logger.global.fine("This has logging Level.FINE, should become VERBOSE"); 34 Logger.global.finer("This has logging Level.FINER, should become VERBOSE"); 35 Logger.global.finest("This has logging Level.FINEST, should become VERBOSE");
|
| /external/chromium_org/chrome/browser/drive/ |
| event_logger.cc | 7 #include "base/logging.h" 13 int id, logging::LogSeverity severity, const std::string& what) 28 void EventLogger::LogRawString(logging::LogSeverity severity, 37 void EventLogger::Log(logging::LogSeverity severity, const char* format, ...) {
|
| /external/chromium_org/chrome/test/chromedriver/ |
| logging.cc | 5 #include "chrome/test/chromedriver/logging.h" 12 #include "base/logging.h" 66 case logging::LOG_FATAL: 67 case logging::LOG_ERROR: 69 case logging::LOG_WARNING: 71 case logging::LOG_INFO: 73 case logging::LOG_VERBOSE: 225 // Turn on VLOG for chromedriver. This is parsed during logging::InitLogging. 228 logging::SetMinLogLevel(logging::LOG_WARNING) [all...] |
| /external/chromium_org/cloud_print/gcp20/prototype/ |
| gcp20_device.cc | 10 #include "base/logging.h" 82 logging::LoggingSettings settings; 83 settings.logging_dest = logging::LOG_TO_SYSTEM_DEBUG_LOG; 84 logging::InitLogging(settings);
|
| /external/chromium_org/ppapi/tests/ |
| create_nonsfi_test_nmf.py | 20 import logging namespace 82 logging.error('--program is not specified.') 85 logging.error('--output is not specified.')
|
| /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/webgl/ |
| update_webgl_conformance_tests.py | 25 import logging namespace 35 _log = logging.getLogger(__name__) 109 """Configures the logging system.""" 112 log_level = logging.INFO 116 log_level = logging.DEBUG 117 logging.basicConfig(level=log_level, format=log_fmt, 127 help='include debug-level logging')
|
| /external/chromium_org/third_party/WebKit/Tools/TestResultServer/handlers/ |
| buildershandler_unittest.py | 31 import logging namespace 74 logging.error('Cannot fetch fake url: %s' % url) 143 logging.error('Cannot fetch fake url: %s' % url)
|
| /external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/ |
| oobe.py | 5 import logging namespace 17 logging.debug('%d contexts in Gaia page' % max_context_id) 30 logging.info('Invoking %s' % api)
|
| /external/guava/guava-tests/test/com/google/common/testing/ |
| TestLogHandlerTest.java | 21 import java.util.logging.Level; 22 import java.util.logging.LogRecord; 23 import java.util.logging.Logger; 64 // Tests for the absence of a bug where logging while iterating over the
|
| /libcore/luni/src/test/java/libcore/java/util/logging/ |
| OldLogRecordTest.java | 18 package libcore.java.util.logging; 20 import java.util.logging.Level; 21 import java.util.logging.LogRecord;
|
| /external/chromium_org/remoting/host/linux/ |
| linux_me2me_host.py | 19 import logging namespace 149 """Calls self.save(), trapping and logging any errors.""" 153 logging.error("Failed to save config: " + str(e)) 284 logging.info("Failed to read %s, skipping." % env_filename) 296 logging.error("Audio will not be enabled because pulseaudio UNIX " + 307 logging.error("Failed to create pulseaudio pipe: " + str(e)) 325 logging.error("Failed to write pulseaudio config: " + str(e)) 371 logging.info("Starting %s on display :%d" % (xvfb, display)) 406 logging.info("Xvfb is active.") 418 logging.error("Failed to set XKB to 'evdev'" [all...] |
| /external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/ |
| monsoon.py | 12 import logging namespace 70 logging.error('device %s is in use', dev) 79 logging.error('error opening device %s: %s', dev, e) 83 logging.error('no response from device %s', dev) 85 logging.error('device %s is #%d', dev, status['serialNumber']) 96 logging.info('waiting for device...') 127 logging.debug('wanted status, dropped type=0x%02x, len=%d', 190 logging.debug('wanted data, dropped type=0x%02x, len=%d', 199 logging.info('data sequence skipped, lost packet?') 204 logging.info('waiting for calibration, dropped data packet' [all...] |
| /external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/ |
| SimpleFormatterTest.java | 18 package org.apache.harmony.logging.tests.java.util.logging; 22 import java.util.logging.Level; 23 import java.util.logging.LogRecord; 24 import java.util.logging.SimpleFormatter; 60 .getBundle("bundles/com/android/java/util/logging/res"); 69 lr.setResourceBundleName("bundles/com/android/java/util/logging/res");
|
| /external/chromium_org/media/tools/constrained_network_server/ |
| cn.py | 15 import logging namespace 19 # Default logging is ERROR. Use --verbose to enable DEBUG logging. 20 _DEFAULT_LOG_LEVEL = logging.ERROR 108 log_level = logging.DEBUG 109 logging.basicConfig(level=log_level, format='%(message)s') 119 logging.error('Error: %s\n\nOutput: %s', e.msg, e.error)
|
| /external/chromium_org/tools/telemetry/telemetry/core/backends/ |
| form_based_credentials_backend.py | 4 import logging namespace 79 logging.debug('Logging into %s account...' % self.credentials_type) 87 logging.info('Loading %s...', url) 96 logging.info('Loaded page: %s', url) 110 logging.warning('Timed out while loading: %s', url)
|
| /frameworks/base/core/java/android/os/ |
| Looper.java | 129 Printer logging = me.mLogging; local 130 if (logging != null) { 131 logging.println(">>>>> Dispatching to " + msg.target + " " + 137 if (logging != null) { 138 logging.println("<<<<< Finished to " + msg.target + " " + msg.callback); 165 * Control logging of messages as they are processed by this Looper. If 171 * null to disable message logging.
|