Searched refs:logging (Results 1 - 25 of 355) sorted by relevance

1234567891011>>

/system/tools/aidl/
H A Dlogging.h20 // We must include windows.h before android-base/logging.h on Windows.
25 #include <android-base/logging.h>
/system/bt/service/test/
H A Dmain.cpp23 #include <base/logging.h>
30 logging::LoggingSettings log_settings;
31 logging::InitLogging(log_settings);
/system/tpm/attestation/
H A Dattestation_testrunner.cc19 #include <base/logging.h>
26 // Enable verbose logging while running unit tests.
27 logging::SetMinLogLevel(logging::LOG_VERBOSE);
/system/tpm/tpm_manager/
H A Dtpm_manager_testrunner.cc19 #include <base/logging.h>
26 // Enable verbose logging while running unit tests.
27 logging::SetMinLogLevel(logging::LOG_VERBOSE);
/system/tpm/trunks/
H A Dtrunks_testrunner.cc19 #include <base/logging.h>
26 // Enable verbose logging while running unit tests.
27 logging::SetMinLogLevel(logging::LOG_VERBOSE);
/system/connectivity/shill/test-scripts/
H A Dconnect-disconnect20 import logging namespace
21 import logging.handlers namespace
34 syslog_handler = logging.handlers.SysLogHandler(address='/dev/log')
35 formatter = logging.Formatter('%(pathname)s: %(message)s')
38 logging.getLogger().addHandler(syslog_handler)
39 logging.getLogger().addHandler(logging.StreamHandler())
46 logging.error('Could not find service %s' % service_name)
67 logging.error('Failure at iteration %d: Connect:%-6s '
73 logging
[all...]
/system/bt/service/ipc/
H A Dipc_handler.cpp19 #include <base/logging.h>
/system/connectivity/shill/
H A Dmock_log.cc32 previous_handler_ = ::logging::GetLogMessageHandler();
33 ::logging::SetLogMessageHandler(HandleLogMessages);
38 ::logging::SetLogMessageHandler(previous_handler_);
H A Dlogging.cc17 #include "shill/logging.h"
41 level < logging::LOG_NUM_SEVERITIES) {
42 logging::SetMinLogLevel(level);
H A Dlogging.h20 #include <base/logging.h>
27 // defined in base/logging.h, except that the SLOG macros take an additional
28 // |scope| argument to enable logging only if |scope| is enabled.
49 ::logging::LogMessage(__FILE__, __LINE__, -verbose_level).stream()
71 ::logging::ErrnoLogMessage(__FILE__, __LINE__, -verbose_level, \
72 ::logging::GetLastSystemErrorCode()).stream()
91 // Command line switches used to setup logging.
98 // Scopes to enable for SLOG()-based logging.
/system/nativepower/daemon/
H A Dmain.cc19 #include <base/logging.h>
61 // This also initializes base::CommandLine(), which is needed for logging.
63 logging::InitLogging(logging::LoggingSettings());
/system/connectivity/dhcp_client/
H A Ddaemon.cc21 #include <base/logging.h>
/system/core/bootstat/
H A Dtestrunner.cpp17 #include <android-base/logging.h>
H A Duptime_parser.cpp23 #include <android-base/logging.h>
/system/extras/simpleperf/nonlinux_support/
H A Dnonlinux_support.cpp18 #include <android-base/logging.h>
/system/firewalld/
H A Dfirewall_daemon.cc19 #include <base/logging.h>
/system/tpm/tpm_manager/server/
H A Dopenssl_crypto_util_impl.cc19 #include <base/logging.h>
/system/update_engine/
H A Dmain.cc27 #include <base/logging.h>
81 logging::LoggingSettings log_settings;
82 log_settings.lock_log = logging::DONT_LOCK_LOG_FILE;
83 log_settings.delete_old = logging::APPEND_TO_OLD_LOG_FILE;
88 log_settings.logging_dest = logging::LOG_TO_SYSTEM_DEBUG_LOG;
92 log_settings.logging_dest = logging::LOG_TO_FILE;
95 logging::InitLogging(log_settings);
/system/extras/perfprofd/quipper/base/
H A Dlogging.h20 // Make a bunch of macros for logging. The way to log things is to stream
25 // You can also do conditional logging:
33 // There are also "debug mode" logging macros like the ones above:
39 // All "debug mode" logging is compiled away to nothing for non-debug mode
50 // There are "verbose level" logging macros. They look like
56 // The verbose logging can also be turned on module-by-module. For instance,
71 // E.g., "*/foo/bar/*=2" would change the logging level for all code
77 // // do some logging preparation and logging
106 // Very important: logging
114 namespace logging { namespace
[all...]
/system/bt/service/common/bluetooth/
H A Dscan_result.cpp19 #include <base/logging.h>
/system/core/metricsd/
H A Dmetrics_collector_service_client.cc21 #include <base/logging.h>
/system/update_engine/update_manager/
H A Dprng.h22 #include <base/logging.h>
/system/connectivity/shill/mobile_operator_db/
H A Dserviceproviders_converter.py18 import logging namespace
86 logging.info('Dumping parsed XML')
92 logging.info('Dumping transformed XML.')
113 @param lhs_name: str name to be used for |lhs| for logging.
115 @param rhs_name: str name to be used for |rhs| for logging.
120 logger = logging.info if result else logging.error
131 logging.warning('Following nodes were dropped:')
133 logging.info(self._PPrintXML(node).encode(FILE_ENCODING))
135 logging
[all...]
/system/bt/service/
H A Dmain.cpp24 #include <base/logging.h>
47 logging::LoggingSettings log_settings;
48 if (!logging::InitLogging(log_settings)) {
49 LOG(ERROR) << "Failed to set up logging";
53 // TODO(armansito): Initialize base/logging. By default it will dump to stdout
55 // how to route the logging to Android's syslog. Once that's done, we won't
/system/nativepower/example/
H A Dpower_example.cc22 #include <base/logging.h>
44 logging::InitLogging(logging::LoggingSettings());

Completed in 601 milliseconds

1234567891011>>