/external/chromium_org/mojo/shell/ |
init.cc | 7 #include "base/logging.h" 13 logging::LoggingSettings settings; 14 settings.logging_dest = logging::LOG_TO_SYSTEM_DEBUG_LOG; 16 logging::ENABLE_DCHECK_FOR_NON_OFFICIAL_RELEASE_BUILDS; 17 logging::InitLogging(settings); 19 logging::SetLogItems(false, // Process ID
|
/external/chromium_org/remoting/host/ |
logging_posix.cc | 5 #include "remoting/host/logging.h" 7 #include "base/logging.h" 13 logging::LoggingSettings settings; 14 settings.logging_dest = logging::LOG_TO_SYSTEM_DEBUG_LOG; 15 logging::InitLogging(settings);
|
logging_win.cc | 5 #include "remoting/host/logging.h" 9 #include "base/logging.h" 21 logging::LoggingSettings settings; 22 settings.logging_dest = logging::LOG_TO_SYSTEM_DEBUG_LOG; 23 logging::InitLogging(settings); 26 logging::LogEventProvider::Initialize(kRemotingHostLogProvider);
|
/external/chromium_org/third_party/cacheinvalidation/overrides/google/cacheinvalidation/deps/ |
logging.h | 8 #include "base/logging.h" 12 using logging::LogMessage;
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/ |
run-perf-tests | 32 import logging namespace 38 logging.basicConfig(level=logging.INFO, format="%(message)s")
|
run-inspector-perf-tests.py | 32 import logging namespace 37 _log = logging.getLogger(__name__) 40 logging.basicConfig(level=logging.INFO, format="%(message)s")
|
/external/chromium_org/third_party/mesa/src/src/egl/main/ |
egllog.c | 32 * Logging facility for debug/info messages. 57 } logging = { variable in typeref:struct:__anon15248 78 * Recursive logging is not allowed. 85 _eglLockMutex(&logging.mutex); 87 if (logging.logger != logger) { 88 logging.logger = logger; 90 num_messages = logging.num_messages; 91 logging.num_messages = 0; 94 _eglUnlockMutex(&logging.mutex); 114 _eglLockMutex(&logging.mutex) [all...] |
/external/mesa3d/src/egl/main/ |
egllog.c | 32 * Logging facility for debug/info messages. 57 } logging = { variable in typeref:struct:__anon25715 78 * Recursive logging is not allowed. 85 _eglLockMutex(&logging.mutex); 87 if (logging.logger != logger) { 88 logging.logger = logger; 90 num_messages = logging.num_messages; 91 logging.num_messages = 0; 94 _eglUnlockMutex(&logging.mutex); 114 _eglLockMutex(&logging.mutex) [all...] |
/external/chromium_org/chrome/common/ |
dump_without_crashing.h | 10 namespace logging { namespace 21 } // namespace logging
|
/libcore/luni/src/main/java/java/util/logging/ |
Filter.java | 18 package java.util.logging;
|
/external/chromium_org/build/android/pylib/utils/ |
run_tests_helper.py | 7 import logging namespace 12 class CustomFormatter(logging.Formatter): 17 # Can't use super() because in older Python versions logging.Formatter does 19 logging.Formatter.__init__(self, fmt=fmt) 24 # Can't use super() because in older Python versions logging.Formatter does 26 msg = logging.Formatter.format(self, record) 35 log_level = logging.WARNING # Default. 37 log_level = logging.INFO 39 log_level = logging.DEBUG 40 logger = logging.getLogger( [all...] |
/external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/ |
LevelTestResource.java | 18 package org.apache.harmony.logging.tests.java.util.logging;
|
FilterTest.java | 18 package org.apache.harmony.logging.tests.java.util.logging; 20 import java.util.logging.Filter; 21 import java.util.logging.LogRecord;
|
/libcore/dalvik/src/main/java/dalvik/system/ |
DalvikLogHandler.java | 19 import java.util.logging.Level; 20 import java.util.logging.Logger; 24 * Implementers should also be subclasses of {@link java.util.logging.Handler}. 36 * java.util.logging.Handler#publish(java.util.logging.LogRecord)}, this
|
/external/chromium_org/skia/ext/ |
google_logging.cc | 5 // This file provides integration with Google-style "base/logging.h" assertions 7 // that provides integration with the logging of your choice. 9 #include "base/logging.h" 22 logging::LogMessage(file, line, 23 fatal ? logging::LOG_FATAL : logging::LOG_INFO).stream()
|
/external/markdown/bin/ |
markdown | 32 import logging namespace 37 logger = logging.getLogger('MARKDOWN') 39 logger.addHandler(logging.StreamHandler())
|
/external/chromium_org/native_client_sdk/src/build_tools/sdk_tools/command/ |
uninstall.py | 6 import logging namespace 15 logging.warn('Unknown bundle(s): %s\n' % (', '.join(invalid_bundles))) 18 logging.warn('No bundles to uninstall.') 22 logging.info('Removing %s' % (bundle_name,)) 27 logging.error('Failed to remove directory \"%s\". %s' % (bundle_dir, e))
|
/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/chromium_org/chrome/test/chromeos/utilities/ |
vm_setup_state.py | 6 import logging namespace 24 logging.info('WebDriver is listening on port %d.' 26 logging.info('Machine prepared for VM snapshot.')
|
/external/chromium_org/tools/python/google/ |
logging_utils.py | 5 ''' Utility functions and objects for logging. 8 import logging namespace 11 class StdoutStderrHandler(logging.Handler): 12 ''' Subclass of logging.Handler which outputs to either stdout or stderr 16 def __init__(self, threshold=logging.WARNING, err=sys.stderr, out=sys.stdout): 18 threshold: below this logging level messages are sent to stdout, 25 logging.Handler.__init__(self) 26 self._err = logging.StreamHandler(err) 27 self._out = logging.StreamHandler(out) 32 logging.Handler.setLevel(self, lvl [all...] |
/frameworks/base/core/java/com/android/internal/logging/ |
AndroidConfig.java | 17 package com.android.internal.logging; 19 import java.util.logging.Level; 20 import java.util.logging.Logger; 23 * Implements the java.util.logging configuration for Android. Activates a log 29 * This looks a bit weird, but it's the way the logging config works: A 41 // Turn down logging in Apache libraries.
|
/external/apache-harmony/logging/src/test/java-internal/java/util/logging/ |
LoggerExtension.java | 18 package java.util.logging; 23 * Example of a type injected into logging to access package private members.
|
/external/chromium_org/build/android/ |
avd.py | 13 import logging namespace 41 logging.basicConfig(level=logging.INFO, 43 logging.root.setLevel(logging.INFO) 50 logging.critical('ERROR: KVM must be enabled in BIOS, and installed. ' 54 logging.critical('ERROR: System image for x86 AVD not installed. Run ' 59 logging.critical('ERROR: Emulator SDK not installed. Run ' 64 logging.critical('ERROR: Emulator SDK missing required target for API %d. '
|
/external/chromium_org/content/shell/tools/ |
content_shell_crash_service.cc | 12 #include "base/logging.h" 22 // Logging to stderr. 23 logging::LoggingSettings settings; 24 settings.logging_dest = logging::LOG_TO_SYSTEM_DEBUG_LOG; 25 logging::InitLogging(settings); 26 // Logging with pid, tid and timestamp. 27 logging::SetLogItems(true, true, true, false);
|
/external/chromium_org/sync/util/ |
logging.cc | 5 #include "sync/util/logging.h" 14 logging::GetVlogLevelHelper(
|