HomeSort by relevance Sort by last modified time
    Searched full:logging (Results 51 - 75 of 9342) sorted by null

1 23 4 5 6 7 8 91011>>

  /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)
logger_unittest.cc 16 util::Log(logging::LOG_INFO, FROM_HERE, "Info test message");
17 util::Log(logging::LOG_WARNING, FROM_HERE, "Warning test message");
18 util::Log(logging::LOG_ERROR, FROM_HERE, "Error test message");
32 logging::SetMinLogLevel(logging::LOG_INFO);
  /external/chromium_org/chrome/installer/gcapi/
gcapi_dll.cc 9 #include "base/logging.h"
18 // CommandLine and Logging components needed by functions in the DLL.
25 logging::LoggingSettings settings;
26 settings.logging_dest = logging::LOG_TO_SYSTEM_DEBUG_LOG;
27 logging::InitLogging(settings);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-commons-logging.jar 
  /libcore/luni/src/main/java/java/util/logging/
logging.properties 18 # Default logging property file.
19 # This file is used by java.util.logging package as default settings, users can
20 # specify another file instead with java.util.logging.config.file system
23 # You can refer to JavaDoc of java.util.logging package for more information
34 # java.util.logging.ConsoleHandler.
38 # logging framework initialization. The list should be white space separated.
42 # handlers=java.util.logging.ConsoleHandler java.util.logging.SocketHandler
44 handlers=java.util.logging.ConsoleHandler
47 # during logging package initialization, which may contain some code to set the
    [all...]
  /external/chromium_org/build/android/pylib/utils/
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/browser/chromeos/drive/
logging.h 13 // Originally wanted to use 'logging' here, but it conflicts with
14 // base/logging.h, and breaks DCHECK() and friends.
20 logging::LogSeverity severity, const char* format, ...) PRINTF_FORMAT(2, 3);
  /external/chromium_org/chrome/common/
dump_without_crashing.cc 9 #include "base/logging.h"
26 namespace logging { namespace
51 } // namespace logging
dump_without_crashing.h 10 namespace logging { namespace
21 } // namespace logging
  /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/browser/resources/net_export/
net_export.html 17 <button id="export-view-start-data">Start Logging to Disk</button>
21 <button id="export-view-stop-data">Stop Logging</button>
28 <b>INSTRUCTIONS</b>: Start logging, reproduce the problem,
29 and then stop logging. Make sure to send the email before
39 visited, cookies, and credentials from when logging started to when
40 logging stopped. They may also contain general network
  /external/chromium_org/base/mac/
mac_logging.cc 13 namespace logging { namespace
37 } // namespace logging
  /external/chromium_org/chrome/installer/tools/
validate_installation_main.cc 15 #include "base/logging.h"
23 // A helper class that initializes logging and installs a log message handler to
41 static const logging::LogSeverity kViolationSeverity_;
42 static logging::LogMessageHandlerFunction old_message_handler_;
55 const logging::LogSeverity
56 ConsoleLogHelper::kViolationSeverity_ = logging::LOG_ERROR;
59 logging::LogMessageHandlerFunction
64 logging::LoggingSettings settings;
65 settings.logging_dest = logging::LOG_TO_FILE;
67 settings.lock_log = logging::DONT_LOCK_LOG_FILE
    [all...]
  /external/chromium_org/chrome/test/functional/
chromeos_power.py 6 import logging namespace
19 logging.debug(result)
  /external/chromium_org/chrome/tools/crash_service/
main.cc 12 #include "base/logging.h"
46 // We use/create a directory under the user's temp folder, for logging.
51 // Logging to stderr (to help with debugging failures on the
53 logging::LoggingSettings settings;
54 settings.logging_dest = logging::LOG_TO_ALL;
56 logging::InitLogging(settings);
57 // Logging with pid, tid and timestamp.
58 logging::SetLogItems(true, true, true, false);
  /external/chromium_org/third_party/libjingle/overrides/
initialize_module.cc 8 #include "base/logging.h"
12 #include "third_party/libjingle/overrides/talk/base/logging.h"
43 // Initialize logging, set the forward allocator functions (not on mac), and
52 logging::LogMessageHandlerFunction log_handler,
74 logging::LoggingSettings settings;
75 settings.logging_dest = logging::LOG_TO_SYSTEM_DEBUG_LOG;
76 logging::InitLogging(settings);
79 logging::SetLogMessageHandler(log_handler);
  /external/chromium_org/third_party/npapi/npspy/
readme 1 This is a slightly modified version of NPSPY that ships with Firefox, plus some logging and bug fixes.
2 NPSPY sits between the browser and plugin and allows logging of all NPP_* and NPN_* function calls
  /external/javassist/sample/hotswap/
Test.java 9 File newfile = new File("logging/HelloWorld.class");
12 System.out.println("** reload a logging version");
  /external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
ConsoleHandlerTest.java 18 package org.apache.harmony.logging.tests.java.util.logging;
26 import java.util.logging.ConsoleHandler;
27 import java.util.logging.Filter;
28 import java.util.logging.Formatter;
29 import java.util.logging.Handler;
30 import java.util.logging.Level;
31 import java.util.logging.LogManager;
32 import java.util.logging.LogRecord;
33 import java.util.logging.LoggingPermission
    [all...]
MemoryHandlerTest.java 18 package org.apache.harmony.logging.tests.java.util.logging;
26 import java.util.logging.Filter;
27 import java.util.logging.Formatter;
28 import java.util.logging.Handler;
29 import java.util.logging.Level;
30 import java.util.logging.LogManager;
31 import java.util.logging.LogRecord;
32 import java.util.logging.LoggingPermission;
33 import java.util.logging.MemoryHandler
    [all...]
StreamHandlerTest.java 18 package org.apache.harmony.logging.tests.java.util.logging;
32 import java.util.logging.Filter;
33 import java.util.logging.Formatter;
34 import java.util.logging.Handler;
35 import java.util.logging.Level;
36 import java.util.logging.LogManager;
37 import java.util.logging.LogRecord;
38 import java.util.logging.LoggingPermission;
39 import java.util.logging.SimpleFormatter
    [all...]
  /external/chromium_org/chrome/installer/util/
logging_installer.cc 12 #include "base/logging.h"
92 logging::LoggingSettings settings;
93 settings.logging_dest = logging::LOG_TO_FILE;
95 logging::InitLogging(settings);
99 logging::SetMinLogLevel(logging::LOG_VERBOSE);
101 logging::SetMinLogLevel(logging::LOG_ERROR);
104 // Enable ETW logging.
105 logging::LogEventProvider::Initialize(kSetupTraceProvider)
    [all...]
  /external/chromium_org/third_party/cld/base/
vlog_is_on.h 6 // conditional logging.
8 // It's used by VLOG and VLOG_IF in logging.h
9 // and by RAW_VLOG in raw_logging.h to trigger the logging.
13 // // do some logging preparation and logging
19 // --v=<n> Gives the default maximal active V-logging level;
21 // Normally positive values are used for V-logging levels.
22 // --vmodule=<str> Gives the per-module maximal V-logging levels to override
24 // E.g. "my_module=2,foo*=3" would change the logging level
29 // thus suppressing one more level of verbose logging
    [all...]
  /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...]

Completed in 1624 milliseconds

1 23 4 5 6 7 8 91011>>