HomeSort by relevance Sort by last modified time
    Searched full:_log (Results 1 - 25 of 147) sorted by null

1 2 3 4 5 6

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
log.py 19 def _log(self, level, msg, args): member in class:Log
34 self._log(level, msg, args)
37 self._log(DEBUG, msg, args)
40 self._log(INFO, msg, args)
43 self._log(WARN, msg, args)
46 self._log(ERROR, msg, args)
49 self._log(FATAL, msg, args)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
log.py 19 def _log(self, level, msg, args): member in class:Log
34 self._log(level, msg, args)
37 self._log(DEBUG, msg, args)
40 self._log(INFO, msg, args)
43 self._log(WARN, msg, args)
46 self._log(ERROR, msg, args)
49 self._log(FATAL, msg, args)
  /external/chromium_org/ppapi/generators/
idl_log.py 25 self._log = []
32 self._log.append(msg)
39 self._log.append(msg)
48 out = self._log
49 self._log = []
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/
commitannouncer.py 35 _log = logging.getLogger(__name__) variable
52 _log.info("Bot started")
58 _log.error("Terminated by keyboard interrupt")
60 _log.error("Unexpected error:")
61 _log.error(traceback.format_exc())
64 _log.info("Disconnecting bot")
67 _log.info("Bot offline")
68 _log.info("Done")
rebaseline.py 50 _log = logging.getLogger(__name__) variable
147 _log.debug("No existing baseline for %s." % test_name)
152 _log.debug("Existing baseline at %s, not copying over it." % new_baseline)
157 _log.debug("%s is skipped on %s." % (test_name, port.name()))
167 _log.debug("Copying baseline from %s to %s." % (old_baseline, new_baseline))
188 _log.debug("No baseline data to save.")
203 _log.debug("Retrieving %s." % source_baseline)
209 _log.warning("Cannot rebaseline reftest: %s", options.test)
252 _log.info("Optimizing %s" % test_name)
325 _log.warning(line
    [all...]
  /development/tools/axl/
log.py 38 def _log(self, *logstrs): member in class:Log
45 self._log("D", *logstrs)
47 self._log("I", *logstrs)
49 self._log("W", *logstrs)
51 self._log("E", *logstrs)
  /system/core/debuggerd/
utility.h 35 void _LOG(log_t* log, int scopeFlags, const char *fmt, ...)
47 #define LOG(fmt...) _LOG(NULL, SCOPE_AT_FAULT, fmt)
51 #define XLOG(fmt...) _LOG(NULL, SCOPE_AT_FAULT, fmt)
58 #define XLOG2(fmt...) _LOG(NULL, SCOPE_AT_FAULT, fmt)
backtrace.c 54 _LOG(log, SCOPE_AT_FAULT, "\n\n----- pid %d at %s -----\n", pid, timestr);
57 _LOG(log, SCOPE_AT_FAULT, "Cmd line: %s\n", procname);
62 _LOG(log, SCOPE_AT_FAULT, "\n----- end %d -----\n", pid);
84 _LOG(log, SCOPE_AT_FAULT, "\n\"%s\" sysTid=%d\n",
88 _LOG(log, SCOPE_AT_FAULT, "Could not attach to thread: %s\n", strerror(errno));
97 _LOG(log, SCOPE_AT_FAULT, "Could not obtain stack trace for thread.\n");
105 _LOG(log, SCOPE_AT_FAULT, " %s\n", line);
tombstone.c 166 _LOG(log, SCOPE_AT_FAULT, "Revision: '%s'\n", revision);
175 _LOG(log, SCOPE_AT_FAULT, "Build fingerprint: '%s'\n", fingerprint);
184 _LOG(log, SCOPE_AT_FAULT, "cannot get siginfo: %s\n", strerror(errno));
186 _LOG(log, SCOPE_AT_FAULT, "signal %d (%s), code %d (%s), fault addr %08x\n",
191 _LOG(log, SCOPE_AT_FAULT, "signal %d (%s), code %d (%s), fault addr --------\n",
224 _LOG(log, SCOPE_AT_FAULT, "pid: %d, tid: %d, name: %s >>> %s <<<\n", pid, tid,
228 _LOG(log, 0, "pid: %d, tid: %d, name: %s\n",
237 _LOG(log, scopeFlags, "\nbacktrace:\n");
245 _LOG(log, scopeFlags, " %s\n", line);
268 _LOG(log, scopeFlags, " #%02d %08x %08x %s (%s+%u)\n"
    [all...]
  /system/core/debuggerd/arm/
machine.c 105 _LOG(log, scopeFlags, " %s %s\n", code_buffer, ascii_buffer);
137 _LOG(log, scopeFlags | SCOPE_SENSITIVE, "\nmemory near %.2s:\n", &REG_NAMES[reg * 2]);
143 _LOG(log, scopeFlags, "\ncode around pc:\n");
147 _LOG(log, scopeFlags, "\ncode around lr:\n");
159 _LOG(log, scopeFlags, "cannot get registers: %s\n", strerror(errno));
163 _LOG(log, scopeFlags, " r0 %08x r1 %08x r2 %08x r3 %08x\n",
165 _LOG(log, scopeFlags, " r4 %08x r5 %08x r6 %08x r7 %08x\n",
167 _LOG(log, scopeFlags, " r8 %08x r9 %08x sl %08x fp %08x\n",
169 _LOG(log, scopeFlags, " ip %08x sp %08x lr %08x pc %08x cpsr %08x\n",
178 _LOG(log, scopeFlags, "cannot get registers: %s\n", strerror(errno))
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
outputcapture_unittest.py 29 _log = logging.getLogger(__name__) variable
37 _log.info('INFO')
38 _log.warning('WARN')
39 _log.error('ERROR')
40 _log.critical('CRITICAL')
logutils_unittest.py 82 self._log = logger
92 logger = self._log
109 self._log.info("test message")
113 self._log.debug("test message")
121 self._log.log(level, "test message")
125 self._log.info("message1")
126 self._log.info("message2")
136 self._log.info("test message")
140 self._log.debug("test message")
153 self._log.log(self._level, "test message"
    [all...]
user_mock.py 31 _log = logging.getLogger(__name__) variable
57 _log.info(message)
66 _log.info("MOCK: user.open_url: file://...")
68 _log.info("MOCK: user.open_url: %s" % url)
  /system/core/debuggerd/x86/
machine.c 44 _LOG(log, scopeFlags, "cannot get registers: %s\n", strerror(errno));
50 _LOG(log, scopeFlags, " eax %08x ebx %08x ecx %08x edx %08x\n",
52 _LOG(log, scopeFlags, " esi %08x edi %08x\n",
54 _LOG(log, scopeFlags, " xcs %08x xds %08x xes %08x xfs %08x xss %08x\n",
56 _LOG(log, scopeFlags, " eip %08x ebp %08x esp %08x flags %08x\n",
  /system/core/debuggerd/mips/
machine.c 95 _LOG(log, scopeFlags, " %s %s\n", code_buffer, ascii_buffer);
133 _LOG(log, scopeFlags | SCOPE_SENSITIVE, "\nmemory near %.2s:\n", &REG_NAMES[reg * 2]);
141 _LOG(log, scopeFlags, "\ncode around pc:\n");
145 _LOG(log, scopeFlags, "\ncode around ra:\n");
157 _LOG(log, scopeFlags, "cannot get registers: %s\n", strerror(errno));
161 _LOG(log, scopeFlags, " zr %08x at %08x v0 %08x v1 %08x\n",
163 _LOG(log, scopeFlags, " a0 %08x a1 %08x a2 %08x a3 %08x\n",
165 _LOG(log, scopeFlags, " t0 %08x t1 %08x t2 %08x t3 %08x\n",
167 _LOG(log, scopeFlags, " t4 %08x t5 %08x t6 %08x t7 %08x\n",
169 _LOG(log, scopeFlags, " s0 %08x s1 %08x s2 %08x s3 %08x\n"
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/
lint_test_expectations.py 46 _log = logging.getLogger(__name__) variable
77 _log.error('')
79 _log.error(warning)
80 _log.error('')
84 _log.error('Lint failed.')
87 _log.info('Lint succeeded.')
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/bot/
commitannouncer.py 37 _log = logging.getLogger(__name__) variable
69 _log.info('%s Posting commit %s' % (self._time(), commit))
70 _log.info('%s Posted message: %s' % (self._time(), repr(commit_detail)))
73 _log.error('Malformed commit log for %s' % commit)
106 _log.error('Failed to clean repository: %s' % e)
117 _log.info('Waiting %s seconds' % wait)
119 _log.info('Waiting %s minutes' % (wait / 60))
121 _log.info('Pull attempt %s out of %s' % (attempts, retry_attempts))
126 _log.error('Error pulling from server: %s' % e)
127 _log.error('Output: %s' % e.output
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/breakpad/
dump_reader_multipart.py 36 _log = logging.getLogger(__name__) variable
74 _log.warning('Failed to execute "%s"' % ' '.join(cmd))
101 _log.error('Unable to find %s' % binary)
102 _log.error(' at %s' % full_path)
105 _log.error(" Could not find breakpad tools, unexpected crashes won't be symbolized")
106 _log.error(' Did you build the target blink_tests?')
107 _log.error('')
132 _log.debug("Regenerating breakpad symbols")
146 _log.error('Failed to execute "%s"' % ' '.join(cmd))
dump_reader_win.py 36 _log = logging.getLogger(__name__) variable
65 _log.warning('Failed to execute "%s"' % ' '.join(cmd))
116 _log.warning("CDB is not installed; can't symbolize minidumps.")
117 _log.warning('')
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/test/
finder.py 30 _log = logging.getLogger(__name__) variable
67 _log.debug("Cleaning orphaned *.pyc files from: %s" % self.search_directory)
71 _log.info("Deleting orphan *.pyc file: %s" % filename)
122 _log.error("%s is not in one of the test trees." % arg)
134 _log.error("%s is not a python name or an existing file or directory." % arg)
155 _log.debug("Found: %s" % module)
164 _log.info('Skipping tests in the following modules or packages because they %s:' % reason)
166 _log.info(' %s' % prefix)
170 _log.debug(' %s' % m)
172 _log.info(' (https://bugs.webkit.org/show_bug.cgi?id=%d; use --all to include)' % bugid
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/
baselineoptimizer.py 34 _log = logging.getLogger(__name__) variable
217 _log.debug(" Deleting:")
219 _log.debug(" " + platform_dir)
222 _log.debug(" (Nothing to delete)")
233 _log.debug(" Adding:")
235 _log.debug(" " + platform_dir)
238 _log.debug(" (Nothing to add)")
250 _log.debug(" %s: (already optimal)" % basename)
251 self.write_by_directory(results_by_directory, _log.debug, " ")
253 _log.debug(" %s: (no baselines found)" % basename
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
linux.py 40 _log = logging.getLogger(__name__) variable
81 _log.warning('Could not determine architecture from "file" output: %s' % file_output)
123 _log.error('For complete Linux build requirements, please see:')
124 _log.error('')
125 _log.error(' http://code.google.com/p/chromium/wiki/LinuxBuildInstructions')
157 _log.error(' Please install using: "sudo apt-get install apache2 libapache2-mod-php5"')
158 _log.error('')
167 _log.error(' Please install using: "sudo apt-get install lighttpd php5-cgi"')
168 _log.error('')
180 _log.error("Could not find apache. Not installed or unknown path."
    [all...]
win.py 40 _log = logging.getLogger(__name__) variable
135 _log.error('For complete Windows build requirements, please see:')
136 _log.error('')
137 _log.error(' http://dev.chromium.org/developers/how-tos/build-instructions-windows')
195 _log.error(" Could not find crash service, unexpected crashes won't be symbolized.")
196 _log.error(' Did you build the target all_webkit?')
197 _log.error('')
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/servers/
http_server_base.py 39 _log = logging.getLogger(__name__) variable
93 _log.debug("%s successfully started (pid = %d)" % (self._name, self._pid))
115 _log.warning('Failed to stop %s: pid file is missing' % self._name)
118 _log.warning('Failed to stop %s: pid file contains %d, not %d' %
125 _log.debug("Attempting to shut down %s server at pid %d" % (self._name, self._pid))
127 _log.debug("%s server at pid %d stopped" % (self._name, self._pid))
176 _log.debug("Waiting for action: %s" % action)
184 _log.debug("Server isn't running at all")
192 _log.debug("Server running on %d" % port)
196 _log.debug("Server NOT running on %d: %s" % (port, e)
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/performance_tests/
perftestsrunner.py 47 _log = logging.getLogger(__name__) variable
154 _log.warn('Path was not found:' + arg)
187 _log.error("Build not up to date for %s" % self._port._path_to_driver())
197 _log.info("Running %d tests%s" % (len(tests), runs))
311 _log.error("Missing slave configuration JSON file: %s" % slave_config_json_path)
321 _log.error("Failed to merge slave configuration JSON file %s: %s" % (slave_config_json_path, error))
331 _log.error("Failed to merge output JSON file %s: %s" % (output_json_path, error))
340 _log.error("Failed to upload JSON file to %s in 120s: %s" % (url, error))
348 _log.error("Uploaded JSON to %s but got a bad response:" % url)
350 _log.error(line
    [all...]

Completed in 915 milliseconds

1 2 3 4 5 6