HomeSort by relevance Sort by last modified time
    Searched full:logging (Results 226 - 250 of 9848) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/native_client_sdk/src/build_tools/sdk_tools/command/
info.py 6 import logging namespace
13 logging.warn('Unknown bundle(s): %s\n' % (', '.join(invalid_bundles)))
16 logging.warn('No valid bundles given.')
  /external/chromium_org/ppapi/generators/
idl_log.py 5 """ Error and information logging for IDL """
11 """Captures and routes logging output.
13 Caputres logging output and/or sends out via a file handle, typically
  /external/markdown/bin/
markdown 32 import logging namespace
37 logger = logging.getLogger('MARKDOWN')
39 logger.addHandler(logging.StreamHandler())
  /libcore/luni/src/main/java/java/util/logging/
SocketHandler.java 18 package java.util.logging;
30 * <li>java.util.logging.ConsoleHandler.level specifies the logging level,
33 * <li>java.util.logging.SocketHandler.filter specifies the name of the filter
36 * <li>java.util.logging.SocketHandler.formatter specifies the name of the
38 * {@code java.util.logging.XMLFormatter} if this property is not found or has
40 * <li>java.util.logging.SocketHandler.encoding specifies the encoding this
43 * <li>java.util.logging.SocketHandler.host specifies the name of the host that
45 * <li>java.util.logging.SocketHandler.encoding specifies the port number that
60 private static final String DEFAULT_FORMATTER = "java.util.logging.XMLFormatter"
    [all...]
  /packages/apps/Email/src/com/android/email/mail/transport/
StatusOutputStream.java 19 import com.android.emailcommon.Logging;
37 if (Logging.LOGD) {
39 LogUtils.v(Logging.LOG_TAG, "# " + mCount);
  /external/apache-http/src/org/apache/commons/logging/
LogSource.java 17 package org.apache.commons.logging;
23 import org.apache.commons.logging.impl.NoOpLog;
35 * <code>org.apache.commons.logging.impl.Log4JLogger</code>.</li>
37 * <code>org.apache.commons.logging.impl.Jdk14Logger</code>.</li>
39 * <code>org.apache.commons.logging.impl.NoOpLog</code>.</li>
45 * <code>org.apache.commons.logging.log</code> to the name of the
46 * <code>org.apache.commons.logging.Log</code> implementation class
71 /** Is JDK 1.4 logging available */
93 // Is JDK 1.4 Logging Available?
95 if ((null != Class.forName("java.util.logging.Logger")) &
    [all...]
  /external/chromium_org/media/cast/logging/
encoding_event_subscriber_unittest.cc 10 #include "media/cast/logging/encoding_event_subscriber.h"
11 #include "media/cast/logging/logging_defines.h"
46 cast_environment_->Logging()->AddRawEventSubscriber(
52 cast_environment_->Logging()->RemoveRawEventSubscriber(
80 cast_environment_->Logging()->InsertFrameEvent(now,
85 cast_environment_->Logging()->InsertFrameEvent(now,
106 cast_environment_->Logging()->InsertPacketEvent(now,
128 cast_environment_->Logging()->InsertFrameEvent(now,
135 cast_environment_->Logging()->InsertFrameEvent(now,
161 cast_environment_->Logging()->InsertFrameEvent(now, FRAME_DECODED
    [all...]
stats_event_subscriber_unittest.cc 11 #include "media/cast/logging/logging_defines.h"
12 #include "media/cast/logging/stats_event_subscriber.h"
37 cast_environment_->Logging()->AddRawEventSubscriber(
43 cast_environment_->Logging()->RemoveRawEventSubscriber(subscriber_.get());
44 cast_environment_->Logging()->RemoveRawEventSubscriber(
57 cast_environment_->Logging()->AddRawEventSubscriber(subscriber_.get());
81 cast_environment_->Logging()->InsertFrameEvent(sender_clock_->NowTicks(),
87 cast_environment_->Logging()->InsertFrameEvent(sender_clock_->NowTicks(),
94 cast_environment_->Logging()->InsertEncodedFrameEvent(
150 cast_environment_->Logging()->InsertEncodedFrameEvent
    [all...]
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/
headerparserhandler.py 38 import logging namespace
73 class ApacheLogHandler(logging.Handler):
74 """Wrapper logging.Handler to emit log message to apache's error.log."""
77 logging.DEBUG: apache.APLOG_DEBUG,
78 logging.INFO: apache.APLOG_INFO,
79 logging.WARNING: apache.APLOG_WARNING,
80 logging.ERROR: apache.APLOG_ERR,
81 logging.CRITICAL: apache.APLOG_CRIT,
85 logging.Handler.__init__(self)
91 self._formatter = logging.Formatter('%(name)s: %(message)s'
    [all...]
  /external/chromium_org/base/
logging.h 29 // process from the main application. When the logging system needs to display
39 // If DebugMessage.exe is not found, the logging code will use a normal
46 // Make a bunch of macros for logging. The way to log things is to stream
51 // You can also do conditional logging:
59 // There are also "debug mode" logging macros like the ones above:
65 // All "debug mode" logging is compiled away to nothing for non-debug mode
76 // There are "verbose level" logging macros. They look like
82 // The verbose logging can also be turned on module-by-module. For instance,
97 // E.g., "*/foo/bar/*=2" would change the logging level for all code
103 // // do some logging preparation and loggin
138 namespace logging { namespace
    [all...]
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
logging_win.cc 9 namespace logging { namespace
25 bool LogEventProvider::LogMessage(logging::LogSeverity severity,
50 // Bail if we're not logging, not at that level,
104 // Register our message handler with logging.
116 // Convert the new trace level to a logging severity
117 // and enable logging at that level.
138 } // namespace logging
  /external/chromium_org/chrome/test/chromedriver/
logging.cc 5 #include "chrome/test/chromedriver/logging.h"
12 #include "base/logging.h"
67 case logging::LOG_FATAL:
68 case logging::LOG_ERROR:
70 case logging::LOG_WARNING:
72 case logging::LOG_INFO:
74 case logging::LOG_VERBOSE:
226 // Turn on VLOG for chromedriver. This is parsed during logging::InitLogging.
229 logging::SetMinLogLevel(logging::LOG_WARNING)
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/
headerparserhandler.py 38 import logging namespace
74 class ApacheLogHandler(logging.Handler):
75 """Wrapper logging.Handler to emit log message to apache's error.log."""
78 logging.DEBUG: apache.APLOG_DEBUG,
79 logging.INFO: apache.APLOG_INFO,
80 logging.WARNING: apache.APLOG_WARNING,
81 logging.ERROR: apache.APLOG_ERR,
82 logging.CRITICAL: apache.APLOG_CRIT,
86 logging.Handler.__init__(self)
92 self._formatter = logging.Formatter('%(name)s: %(message)s'
    [all...]
  /prebuilts/tools/common/m2/repository/commons-logging/commons-logging/1.1.1/
commons-logging-1.1.1.pom 20 - Note that due to the special requirements of logging unit-tests, most
31 <groupId>commons-logging</groupId>
32 <artifactId>commons-logging</artifactId>
33 <name>Commons Logging</name>
35 <description>Commons Logging is a thin adapter allowing configurable bridging to other,
36 well known logging systems.</description>
37 <url>http://commons.apache.org/logging</url>
41 <url>http://issues.apache.org/jira/browse/LOGGING</url>
124 <connection>scm:svn:http://svn.apache.org/repos/asf/commons/proper/logging/tags/commons-logging-1.1.1</connection>
    [all...]
  /external/chromium_org/base/mac/
mac_logging.h 10 #include "base/logging.h"
30 namespace logging { namespace
32 class BASE_EXPORT OSStatusLogMessage : public logging::LogMessage {
46 } // namespace logging
57 logging::OSStatusLogMessage(__FILE__, __LINE__, \
  /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/media/cast/
cast_environment.h 14 #include "media/cast/logging/logging_defines.h"
15 #include "media/cast/logging/logging_impl.h"
59 // Logging is not thread safe. Its methods should always be called from the
61 // TODO(hubbe): Logging should be a thread-safe interface.
62 LoggingImpl* Logging() const { return logging_.get(); }
  /external/chromium_org/native_client_sdk/src/build_tools/sdk_tools/
config.py 6 import logging namespace
60 logging.warn('Only whitelisted sources are allowed. Ignoring \"%s\".' % (
65 logging.info('Source \"%s\" already in Config.' % (source,))
71 logging.warn('Source \"%s\" not in Config.' % (source,))
77 logging.info('No sources to remove.')
  /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());
  /frameworks/ex/common/java/com/android/common/userhappiness/
UserHappinessSignals.java 28 // So that we don't send logging events to VoiceSearch when there is nothing to
36 * when logging events (such as VoiceInputDelivered) occur, and is should
37 * be set to false after the logging broadcast is sent.
50 // Create a Voice IME Logging intent only if there are logging actions
  /libcore/luni/src/test/java/libcore/java/util/logging/
OldXMLFormatterTest.java 18 package libcore.java.util.logging;
21 import java.util.logging.Handler;
22 import java.util.logging.Level;
23 import java.util.logging.LogRecord;
24 import java.util.logging.XMLFormatter;
  /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/build/android/pylib/monkey/
test_runner.py 7 import logging namespace
49 test_name: String to use for logging the test result.
71 logging.error('Failed to start the process.')
73 logging.error('Process %s has died.', before_pids[self._package])
75 logging.error('Detected process restart %s -> %s',
89 logging.warning('Starting MinidumpUploadService...')
93 logging.error('Failed to start MinidumpUploadService: %s', e)
  /external/chromium_org/chrome/common/extensions/api/
webrtc_logging_private.idl 6 // WebRTC logging.
38 // Starts logging. If logging has already been started for this render
53 // Stops logging. After stop has finished, either upload() or discard()
55 // render process is closed or logging restarted.
60 // Uploads the log and the RTP dumps, if they exist. Logging and RTP dumping
66 // Discards the log. Logging must be stopped before this function is called.

Completed in 1667 milliseconds

1 2 3 4 5 6 7 8 91011>>