Searched refs:logging (Results 26 - 50 of 955) sorted by relevance

1234567891011>>

/external/chromium_org/sync/util/
H A Dlogging.cc5 #include "sync/util/logging.h"
14 logging::GetVlogLevelHelper(
H A Dlogging.h8 #include "base/logging.h"
24 logging::LogMessage(from_here.file_name(), from_here.line_number(), \
30 ::logging::DEBUG_MODE && \
/external/chromium_org/tools/cygprofile/
H A Drun_tests6 import logging namespace
13 logging.basicConfig(
14 level=logging.DEBUG if '-v' in sys.argv else logging.WARNING,
/external/chromium_org/tools/memory_inspector/
H A Drun_tests6 import logging namespace
13 logging.basicConfig(
14 level=logging.DEBUG if '-v' in sys.argv else logging.WARNING,
/external/chromium_org/chrome/installer/util/
H A Dinstallation_validation_helper.cc11 #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
[all...]
/external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/
H A Dcros_browser_finder.py7 import logging namespace
104 logging.debug('No --remote specified, will not probe for CrOS.')
108 logging.debug('ssh not found. Cannot talk to CrOS devices.')
117 logging.warn('Could not ssh into %s. Your device must be configured',
119 logging.warn('to allow passwordless login as root.')
120 logging.warn('For a test-build device, pass this to your script:')
121 logging.warn(' --identity $(CHROMITE)/ssh_keys/testing_rsa')
122 logging.warn('')
123 logging.warn('For a developer-mode device, the steps are:')
124 logging
[all...]
H A Dios_browser_backend.py7 import logging namespace
43 logging.error('Unexpected url format: %s' % url)
59 logging.debug('No iOS devices found. Will not try searching for iOS '
63 logging.debug('Error communicating with iOS device.')
64 logging.debug(str(e))
83 logging.debug('Error communicating with iOS device.')
84 logging.debug(e)
91 logging.debug('Timeout retrieving data from iOS device')
92 logging.debug(e)
123 logging
[all...]
/external/chromium_org/chrome/browser/sync_file_system/
H A Dlogger.cc20 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/
H A Dscoped_disable_exit_on_dfatal.cc7 #include "base/logging.h"
18 logging::SetLogAssertHandler(LogAssertHandler);
23 logging::SetLogAssertHandler(NULL);
H A Dscoped_mock_log.cc7 #include "base/logging.h"
32 previous_handler_ = logging::GetLogMessageHandler();
33 logging::SetLogMessageHandler(LogMessageHandler);
44 logging::SetLogMessageHandler(previous_handler_);
/external/chromium_org/build/android/pylib/utils/
H A Dtest_environment.py5 import logging namespace
21 logging.info('Killing %s %s %s', s, server, p.pid)
25 logging.warning('Failed killing %s %s %s', server, p.pid, e)
30 logging.warning('Failed waiting for %s to die. %s', p.pid, e)
44 logging.error(str(e))
H A Dtime_profile.py5 import logging namespace
10 """Class for simple profiling of action, with logging of cost."""
24 logging.info('%fsec to perform %s',
/external/chromium_org/build/android/
H A Davd.py13 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
[all...]
H A Dadb_logcat_monitor.py19 import logging namespace
50 logging.info('Logcat for device %s has died', device_id)
54 logging.error(device_id + ': ' + line)
56 logging.info('Starting logcat %d for device %s', logcat_num,
85 logging.warning('adb device error %s', err.strip())
88 logging.warning('"adb devices" command timed out')
91 logging.exception('Exception from "adb devices"')
105 logging.basicConfig(filename=os.path.join(base_dir, 'eventlog'),
106 level=logging.INFO,
120 logging
[all...]
H A Dinstall_emulator_deps.py13 import logging namespace
79 logging.exception('Unable to execute \'android list\'')
121 logging.info('kvm-ok not installed')
127 logging.info('Download Android SDK.')
148 logging.critical('ERROR: Did not install KVM. Make sure hardware '
154 logging.critical('ERROR: Did not add KVM module to Linux Kernel. Make sure '
158 logging.critical('ERROR: Can not use KVM acceleration. Make sure hardware '
169 logging.info('Download x86 system image directory into sdk directory.')
183 logging.info('Deploying system image to %s' % sys_imgs)
214 logging
[all...]
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
H A Dlogutils.py23 """Supports webkitpy logging."""
25 # FIXME: Move this file to webkitpy/python24 since logging needs to
28 import logging namespace
35 _log = logging.getLogger(__name__)
65 # _log = logging.getLogger(__name__)
71 """Return a logging.logger for the given path.
125 return logging.getLogger(logger_name)
129 """Return a list of the default logging handlers to use.
137 """Return whether a logging.LogRecord should be logged."""
142 logging_filter = logging
[all...]
H A Doutputcapture_unittest.py23 import logging namespace
29 _log = logging.getLogger(__name__)
54 self.output.set_log_level(logging.ERROR)
57 self.output.set_log_level(logging.WARN)
/external/chromium_org/net/tools/tld_cleanup/
H A Dtld_cleanup.cc32 #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/native_client_sdk/src/build_tools/sdk_tools/command/
H A Dinfo.py6 import logging namespace
13 logging.warn('Unknown bundle(s): %s\n' % (', '.join(invalid_bundles)))
16 logging.warn('No valid bundles given.')
/external/chromium_org/chrome/browser/drive/
H A Devent_logger.h14 #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/chrome/test/chromeos/autotest/files/client/deps/chrome_test/
H A Dchrome_test.py7 import common, commands, logging, os namespace
/external/chromium_org/mojo/examples/dbus_echo/
H A Ddbus_echo_service.cc8 #include "base/logging.h"
42 logging::LoggingSettings settings;
43 settings.logging_dest = logging::LOG_TO_SYSTEM_DEBUG_LOG;
44 logging::InitLogging(settings);
45 logging::SetLogItems(false, // Process ID
/external/chromium_org/tools/find_runtime_symbols/tests/
H A Dreduce_debugline_test.py7 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
[all...]
/external/chromium_org/build/android/pylib/uiautomator/
H A Dsetup.py7 import logging namespace
29 logging.error('No uiautomator tests to run with current args.')
/external/chromium_org/tools/profile_chrome/
H A Dui.py5 import logging namespace
27 logging.getLogger().disabled = True

Completed in 533 milliseconds

1234567891011>>