| /external/chromium_org/tools/cygprofile/ |
| run_tests | 6 import logging namespace 13 logging.basicConfig( 14 level=logging.DEBUG if '-v' in sys.argv else logging.WARNING,
|
| /external/chromium_org/tools/memory_inspector/ |
| run_tests | 6 import logging namespace 13 logging.basicConfig( 14 level=logging.DEBUG if '-v' in sys.argv else logging.WARNING,
|
| /external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/ |
| cros_browser_finder.py | 7 import logging namespace 89 logging.debug('No --remote specified, will not probe for CrOS.') 93 logging.debug('ssh not found. Cannot talk to CrOS devices.') 103 logging.warn('Could not ssh into %s. Your device must be configured', 105 logging.warn('to allow passwordless login as root.') 106 logging.warn('For a test-build device, pass this to your script:') 107 logging.warn(' --identity $(CHROMITE)/ssh_keys/testing_rsa') 108 logging.warn('') 109 logging.warn('For a developer-mode device, the steps are:') 110 logging.warn(' - Ensure you have an id_rsa.pub (etc) on this computer' [all...] |
| inspector_memory_unittest.py | 5 import logging namespace 14 logging.warning('Browser does not support tab control, skipping test.')
|
| /external/chromium_org/build/android/pylib/utils/ |
| report_results.py | 7 import logging namespace 27 logging.info('Writing results to %s.' % full_file_name) 29 logging.info('Writing results to %s.' % full_file_name) 39 logging.info('Upload results for test type "%s", test package "%s" to %s' % 44 logging.warning('Invalid test type.') 61 logging.error(e) 85 logging.critical('*' * 80) 86 logging.critical('Detailed Logs') 87 logging.critical('*' * 80) 89 logging.critical(line [all...] |
| time_profile.py | 5 import logging namespace 10 """Class for simple profiling of action, with logging of cost.""" 24 logging.info('%fsec to perform %s',
|
| /external/chromium_org/chrome/installer/util/ |
| installation_validation_helper.cc | 11 #include "base/logging.h" 34 static const logging::LogSeverity kViolationSeverity_; 35 static logging::LogMessageHandlerFunction old_message_handler_; 41 const logging::LogSeverity 42 FailureLogHelper::kViolationSeverity_ = logging::LOG_ERROR; 45 logging::LogMessageHandlerFunction 57 old_min_log_level_ = logging::GetMinLogLevel(); 59 logging::SetMinLogLevel(kViolationSeverity_); 61 old_message_handler_ = logging::GetLogMessageHandler(); 62 logging::SetLogMessageHandler(&AddFailureForLogMessage) [all...] |
| /external/chromium_org/chrome/browser/resources/options/ |
| hotword_confirm_overlay.css | 10 #audio-logging-bar input {
|
| /external/chromium_org/chrome/browser/sync_file_system/ |
| logger.cc | 20 const char* LogSeverityToString(logging::LogSeverity level) { 22 case logging::LOG_ERROR: 24 case logging::LOG_WARNING: 26 case logging::LOG_INFO: 28 case logging::LOG_VERBOSE: 42 void Log(logging::LogSeverity severity, 64 // TODO(kinuko,calvinlo): Reconsider this logging hack, it's not recommended 66 if (severity < logging::GetMinLogLevel() && !VLOG_IS_ON(1)) 68 logging::LogMessage(location.file_name(), location.line_number(), severity)
|
| /external/chromium_org/net/test/ |
| scoped_disable_exit_on_dfatal.cc | 7 #include "base/logging.h" 18 logging::SetLogAssertHandler(LogAssertHandler); 23 logging::SetLogAssertHandler(NULL);
|
| scoped_mock_log.cc | 7 #include "base/logging.h" 32 previous_handler_ = logging::GetLogMessageHandler(); 33 logging::SetLogMessageHandler(LogMessageHandler); 44 logging::SetLogMessageHandler(previous_handler_);
|
| /libcore/luni/src/test/java/libcore/java/util/logging/ |
| OldSimpleFormatterTest.java | 18 package libcore.java.util.logging; 20 import java.util.logging.SimpleFormatter;
|
| /external/chromium_org/build/android/pylib/ |
| device_settings.py | 5 import logging namespace 29 logging.error('Skipping content settings configuration, unknown sdk %s', 35 logging.error('Skipping content settings configuration due to outdated sdk') 45 logging.info('\n%s %s', table, (80 - len(table)) * '-') 47 logging.info('\t%s: %s', key, value)
|
| /external/chromium_org/net/tools/tld_cleanup/ |
| tld_cleanup.cc | 32 #include "base/logging.h" 50 logging::LoggingDestination destination = logging::LOG_TO_FILE; 52 logging::LoggingDestination destination = 53 logging::LOG_TO_ALL; 61 logging::LoggingSettings settings; 64 settings.delete_old = logging::DELETE_OLD_LOG_FILE; 65 logging::InitLogging(settings);
|
| /external/chromium_org/base/ |
| logging_win.h | 13 #include "base/logging.h" 18 namespace logging { namespace 56 static bool LogMessage(logging::LogSeverity severity, const char* file, 72 logging::LogSeverity old_log_level_; 78 } // namespace logging
|
| /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
| test_logging.py | 19 """Test harness for the logging module. Run all tests. 24 import logging namespace 25 import logging.handlers namespace 26 import logging.config namespace 55 """Base class for logging tests.""" 62 """Setup the default logging stream to an internal StringIO instance, 64 logger_dict = logging.getLogger().manager.loggerDict 65 logging._acquireLock() 67 self.saved_handlers = logging._handlers.copy() 68 self.saved_handler_list = logging._handlerList[: [all...] |
| /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
| test_logging.py | 19 """Test harness for the logging module. Run all tests. 24 import logging namespace 25 import logging.handlers namespace 26 import logging.config namespace 55 """Base class for logging tests.""" 62 """Setup the default logging stream to an internal StringIO instance, 64 logger_dict = logging.getLogger().manager.loggerDict 65 logging._acquireLock() 67 self.saved_handlers = logging._handlers.copy() 68 self.saved_handler_list = logging._handlerList[: [all...] |
| /external/chromium_org/chrome/browser/drive/ |
| event_logger.h | 14 #include "base/logging.h" 30 Event(int id, logging::LogSeverity severity, const std::string& what); 32 logging::LogSeverity severity; // Severity of the event. 43 void LogRawString(logging::LogSeverity severity, const std::string& what); 47 void Log(logging::LogSeverity severity, const char* format, ...)
|
| /external/chromium_org/mojo/services/dbus_echo/ |
| dbus_echo_service.cc | 8 #include "base/logging.h" 40 logging::LoggingSettings settings; 41 settings.logging_dest = logging::LOG_TO_SYSTEM_DEBUG_LOG; 42 logging::InitLogging(settings); 43 logging::SetLogItems(false, // Process ID
|
| /external/chromium_org/tools/find_runtime_symbols/tests/ |
| reduce_debugline_test.py | 7 import logging namespace 36 ../../base/logging.h: 37 logging.h 246 0xa41710 39 logging.h 247 0xa41726 41 ../../base/logging.h: 42 logging.h 846 0xa3fd90 44 logging.h 846 0xa3fda0 49 (0xa3fd90, '../../base/logging.h'), 53 (0xa41710, '../../base/logging.h'), 63 logging.basicConfig [all...] |
| /libcore/luni/src/main/java/java/util/logging/ |
| ConsoleHandler.java | 18 package java.util.logging; 27 * <li>java.util.logging.ConsoleHandler.level specifies the logging level, 30 * <li>java.util.logging.ConsoleHandler.filter specifies the name of the filter 33 * <li>java.util.logging.ConsoleHandler.formatter specifies the name of the 35 * {@code java.util.logging.SimpleFormatter} if this property is not found or 37 * <li>java.util.logging.ConsoleHandler.encoding specifies the encoding this
|
| /external/chromium_org/build/android/ |
| avd.py | 13 import logging namespace 44 logging.basicConfig(level=logging.INFO, 46 logging.root.setLevel(logging.INFO) 53 logging.critical('ERROR: KVM must be enabled in BIOS, and installed. ' 57 logging.critical('ERROR: System image for x86 AVD not installed. Run ' 62 logging.critical('ERROR: Emulator SDK not installed. Run ' 78 logging.critical('ERROR: Specified AVD %s does not exist.' % options.name) 83 logging.critical('ERROR: Emulator SDK missing required target for API %d. [all...] |
| /external/chromium_org/sync/util/ |
| logging.h | 8 #include "base/logging.h" 24 logging::LogMessage(from_here.file_name(), from_here.line_number(), \ 30 ::logging::DEBUG_MODE && \
|
| /external/chromium_org/chrome/common/extensions/docs/server2/ |
| test_util.py | 8 import logging namespace 14 '''Call the function |f|, capturing any logging output generated. |f| must 23 logging.getLogger('').addFilter(cf) 25 logging.getLogger('').removeFilter(cf) 46 saved = getattr(logging, name) 47 setattr(logging, name, replacement) 51 setattr(logging, name, saved)
|
| /external/chromium_org/content/app/android/ |
| library_loader_hooks.cc | 16 #include "base/logging.h" 98 logging::LoggingSettings settings; 99 settings.logging_dest = logging::LOG_TO_SYSTEM_DEBUG_LOG; 100 logging::InitLogging(settings); 102 logging::SetLogItems(false, // Process ID 106 VLOG(0) << "Chromium logging enabled: level = " << logging::GetMinLogLevel() 107 << ", default verbosity = " << logging::GetVlogVerbosity();
|