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

<<11121314151617181920>>

  /external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
XMLFormatterTest.java 18 package org.apache.harmony.logging.tests.java.util.logging;
27 import java.util.logging.FileHandler;
28 import java.util.logging.Handler;
29 import java.util.logging.Level;
30 import java.util.logging.LogRecord;
31 import java.util.logging.Logger;
32 import java.util.logging.XMLFormatter;
56 .getBundle("bundles/java/util/logging/res");
91 .getBundle("bundles/java/util/logging/res")
    [all...]
  /external/chromium_org/chrome/test/functional/media/
audio_tools.py 18 import logging namespace
61 logging.error("Mono recording not supported on Windows yet!")
75 logging.debug('Running command: %s', ' '.join(cmd))
81 logging.debug('Finished recording audio into %s.', self._output_file)
102 logging.debug('Running command: %s', ' '.join(cmd))
106 logging.error('Error running pesq: %s\n%s', output, error)
140 logging.debug('Running command: %s', ' '.join(cmd))
144 logging.error('Error removing silence from audio: %s\n%s', output, error)
164 logging.debug('Running command: %s', ' '.join(cmd))
168 logging.error('Error forcing mic volume to 100%%: %s\n%s', output, error
    [all...]
  /external/chromium_org/tools/telemetry/telemetry/page/
page_runner.py 6 import logging namespace
64 logging.info('Model: %s' % system_info.model_name)
67 logging.info('GPU device %d: %s', i, device)
69 logging.info('GPU Attributes:')
71 logging.info(' %-20s: %s', k, v)
73 logging.info('Feature Status:')
75 logging.info(' %-20s: %s', k, v)
77 logging.info('No GPU devices')
195 logging.warning('%s%s', title, stack_trace)
231 logging.error('Stopping multi-tab test after tab %s crashed
    [all...]
cloud_storage.py 9 import logging namespace
55 logging.info('Downloading gsutil')
59 logging.info('Downloaded gsutil to %s' % _DOWNLOAD_PATH)
110 logging.info('Deleting %s' % url)
116 logging.info('Downloading %s to %s' % (url, local_path))
122 logging.info('Uploading %s to %s' % (local_path, url))
147 logging.warning('Unable to update file %s from Cloud Storage.' % file_path)
  /development/samples/SampleSyncAdapter/samplesyncadapter_server/
web_services.py 26 import logging namespace
70 logging.info('Authenticatng username: ' + self.username)
98 logging.info('Validating username: ' + self.username)
139 logging.info('*** Starting contact sync ***')
159 logging.info('Returning ' + str(len(updated_contacts)) + ' contact records')
166 logging.info('* Processing server changes')
176 logging.info('Client sync state: ' + client_state)
194 logging.info('New sync state: ' + high_water_mark)
215 logging.info('Server-side updates: ' + str(update_count))
216 logging.info('Server-side deletes: ' + str(delete_count)
    [all...]
  /external/chromium_org/chrome/test/functional/perf/
endure_setup.py 39 import logging namespace
115 logging.info('Fetching depot tools...')
117 logging.info('Fetching PyAuto (python code)...')
119 logging.info('Fetching binaries(chrome, pyautolib, chrome driver)...')
122 logging.info('Fetching chrome graphing files...')
184 logging.info('Sync PyAuto python code done.')
221 logging.info('Cleaning %s', binary_dir)
224 logging.info('Downloading binaries...')
229 logging.info('Binaries at revision %s', revision)
247 logging.info
    [all...]
  /external/chromium_org/native_client_sdk/src/tools/
httpd.py 8 import logging namespace
38 logging.error('For security, httpd.py should only be run from within the')
39 logging.error('example directory tree.')
40 logging.error('Attempting to serve from %s.' % abs_serve_dir)
41 logging.error('Run with --no-dir-check to bypass this check.')
62 logging.debug('Looking for cached delegate in %s...' % dirname)
68 logging.debug('Found None.')
70 logging.debug('Found delegate.')
75 logging.debug('Testing file %s for existence...' % handler_script)
77 logging.debug
    [all...]
  /external/chromium_org/tools/valgrind/
common.py 5 import logging namespace
24 logging.info("running %s in the background" % " ".join(proc))
37 logging.info("running %s, timeout %d sec" % (" ".join(proc), timeout))
52 logging.info("started subprocess")
69 logging.info("process timed out")
71 logging.info("process ended, did not time out")
79 logging.error("KILLED %d" % p.pid)
83 logging.error("TIMEOUT waiting for %s" % proc[0])
89 logging.info("flushing stdout")
92 logging.info("collecting result code"
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/
checker.py 33 import logging namespace
55 _log = logging.getLogger(__name__)
292 """Create and return a default list of logging.Handler instances.
294 Format WARNING messages and above to display the logging level, and
301 # Handles logging.WARNING and above.
302 error_handler = logging.StreamHandler(stream)
303 error_handler.setLevel(logging.WARNING)
304 formatter = logging.Formatter("%(levelname)s: %(message)s")
307 # Create a logging.Filter instance that only accepts messages
309 non_error_filter = logging.Filter(
    [all...]
  /external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/
cros_interface.py 5 import logging namespace
40 logging.debug(' '.join(args) + ' ' + (cwd or ''))
60 logging.debug(' '.join(args) + ' ' + (cwd or ''))
66 logging.debug(' > stdout=[%s], stderr=[%s]', stdout, stderr)
73 logging.debug("HasSSH()->True")
76 logging.debug("HasSSH()->False")
155 logging.debug('TryLogin()')
164 raise LoginException('Timed out while logging into %s' % self._hostname)
172 raise LoginException('While logging into %s, got %s' % (
194 logging.debug("FileExistsOnDevice(<text>, %s)->%s" % (file_name, exists)
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/
about_ipc_controller.mm 5 #include "base/logging.h"
22 IPC::Logging::GetMessageText(data_.type, &data_.message_name, NULL, NULL);
105 IPC::Logging::GetInstance()->SetConsumer(NULL);
110 // Running Chrome with the --ipc-logging switch might cause it to
116 IPC::Logging::GetInstance()->SetConsumer(bridge_.get());
126 if (IPC::Logging::GetInstance()->Enabled())
134 !IPC::Logging::GetInstance()->Enabled());
  /external/chromium/chrome/common/extensions/docs/examples/apps/hello-python/
main.py 14 import logging namespace
65 logging.debug('Requesting %s' % url)
68 logging.debug('Got response code %s, content %s' % (resp, content))
87 logging.debug('Attempting to JSON parse: %s' % response_text)
89 logging.debug('Got license server response: %s' % json)
91 logging.exception('Could not parse response as JSON: %s' % response_text)
95 logging.exception('Could not fetch license data')
  /external/chromium_org/chrome/browser/ui/cocoa/
about_ipc_controller.mm 5 #include "base/logging.h"
24 IPC::Logging::GetMessageText(data_.type, &data_.message_name, NULL, NULL);
106 IPC::Logging::GetInstance()->SetConsumer(NULL);
111 // Running Chrome with the --ipc-logging switch might cause it to
117 IPC::Logging::GetInstance()->SetConsumer(bridge_.get());
127 if (IPC::Logging::GetInstance()->Enabled())
134 content::EnableIPCLogging(!IPC::Logging::GetInstance()->Enabled());
  /external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-python/
main.py 14 import logging namespace
66 logging.debug('Requesting %s' % url)
69 logging.debug('Got response code %s, content %s' % (resp, content))
89 logging.debug('Attempting to JSON parse: %s' % response_text)
91 logging.debug('Got license server response: %s' % json)
93 logging.exception('Could not parse response as JSON: %s' % response_text)
97 logging.exception('Could not fetch license data')
  /external/chromium_org/chrome/tools/
inconsistent-eol.py 20 import logging namespace
38 logging.debug(len(split) - 1)
78 logging.debug(filename)
85 logging.warning('File %s not found.' % filename)
122 debug_level = logging.DEBUG
124 debug_level = logging.INFO
125 logging.basicConfig(level=debug_level,
  /external/chromium_org/media/cast/audio_sender/
audio_sender.cc 8 #include "base/logging.h"
111 // TODO(mikhal): Resolve calculation of the audio rtp_timestamp for logging.
113 cast_environment_->Logging()->InsertFrameEvent(kAudioFrameReceived,
124 cast_environment_->Logging()->InsertFrameEvent(kAudioFrameReceived,
130 // Logging already done.
148 // Logging already done.
203 // We don't send audio logging messages since all captured audio frames will
  /external/chromium_org/media/tools/constrained_network_server/
cn.py 15 import logging namespace
19 # Default logging is ERROR. Use --verbose to enable DEBUG logging.
20 _DEFAULT_LOG_LEVEL = logging.ERROR
108 log_level = logging.DEBUG
109 logging.basicConfig(level=log_level, format='%(message)s')
119 logging.error('Error: %s\n\nOutput: %s', e.msg, e.error)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/webgl/
update_webgl_conformance_tests.py 25 import logging namespace
35 _log = logging.getLogger(__name__)
109 """Configures the logging system."""
112 log_level = logging.INFO
116 log_level = logging.DEBUG
117 logging.basicConfig(level=log_level, format=log_fmt,
127 help='include debug-level logging')
  /external/chromium_org/v8/src/
log-utils.h 44 // Disables logging, but preserves acquired resources.
59 // Returns whether logging is enabled.
118 // Opens stdout for logging.
121 // Opens file for logging.
124 // Opens a temporary file for logging.
137 // Whether logging is stopped (e.g. due to insufficient resources).
140 // When logging is active output_handle_ is used to store a pointer to log
  /external/v8/src/
log-utils.h 44 // Disables logging, but preserves acquired resources.
52 // Returns whether logging is enabled.
67 // Opens stdout for logging.
70 // Opens file for logging.
73 // Opens a temporary file for logging.
86 // Whether logging is stopped (e.g. due to insufficient resources).
89 // When logging is active output_handle_ is used to store a pointer to log
  /frameworks/ex/common/java/com/android/common/speech/
LoggingEvents.java 20 * Logging event constants used for Voice Search and VoiceIME. These are the
21 * keys and values of extras to be specified in logging broadcast intents.
26 // The name of the broadcast intent for logging.
49 * Logging event constants for voice search. Below are the extra values for
57 // The app name to be used for logging VoiceSearch events.
74 * Logging event constants for VoiceIME. Below are the extra values for
80 // The app name to be used for logging VoiceIME events.
  /hardware/samsung_slsi/exynos5/mobicore/common/LogWrapper/
log.h 42 * Informative logging, only shown in debug version
46 * Warnings logging, only shown in debug version
50 * Error logging, shown in debug and release version
54 * Verbose logging, shown in debug version if the including file defines LOG_VERBOSE
58 * Binary logging, line-wise output to LOG_I
66 #ifdef NDEBUG // no logging in debug version
97 #ifdef NDEBUG // no logging in debug version
  /external/chromium_org/third_party/npapi/npspy/extern/nspr/
prlog.h 43 ** prlog.h -- Declare interfaces to NSPR's Logging service
45 ** NSPR provides a logging service that is used by NSPR itself and is
87 ** unbuffered logging.
149 ** One of these structures is created for each module that uses logging.
165 ** Set the file to use for logging. Returns PR_FALSE if the file cannot
171 ** Set the size of the logging buffer. If "buffer_size" is zero then the
172 ** logging becomes "synchronous" (or unbuffered).
191 ** various debugging strings so logging is not enabled for it.
202 ** "level" is the desired logging level
  /external/sepolicy/tools/
insertkeys.py 6 import logging namespace
82 logging.info("Skipping " + tag + " : " + option +
136 logging.info("Replacing " + name + " " + value + " with " + key)
199 logging.basicConfig(level=logging.INFO if options.verbose == True else logging.WARN)
208 logging.info("Setting output file to: " + options.output_file)
212 logging.info("Generate key map:")
214 logging.info(k + " : " + str(key_map[k]))
  /frameworks/base/docs/html/sdk/api_diff/3/changes/
java.util.logging.LogManager.html 10 java.util.logging.LogManager
74 Class java.util.logging.<A HREF="../../../../reference/java/util/logging/LogManager.html" target="_top"><font size="+2"><code>LogManager</code></font></A>
86 <A NAME="java.util.logging.LogManager.addPropertyChangeListener_added(java.beans.PropertyChangeListener)"></A>
87 <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/java/util/logging/LogManager.html#addPropertyChangeListener(java.beans.PropertyChangeListener)" target="_top"><code>addPropertyChangeListener</code></A>(<code>PropertyChangeListener</code>)</nobr>
93 <A NAME="java.util.logging.LogManager.getLoggingMXBean_added()"></A>
94 <nobr><code>LoggingMXBean</code>&nbsp;<A HREF="../../../../reference/java/util/logging/LogManager.html#getLoggingMXBean()" target="_top"><code>getLoggingMXBean</code></A>()</nobr>
100 <A NAME="java.util.logging.LogManager.removePropertyChangeListener_added(java.beans.PropertyChangeListener)"></A>
101 <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/java/util/logging/LogManager.html#removePropertyChangeListener(java.beans.PropertyChangeListener)" target="_top"><code>removePropertyChangeListener</code></A>(<code>PropertyChangeListener</code>)</nobr>

Completed in 1441 milliseconds

<<11121314151617181920>>