Searched defs:log (Results 126 - 150 of 613) sorted by relevance

1234567891011>>

/external/llvm/tools/llvm-diff/
H A DDifferenceEngine.h66 void log(StringRef text) { function in class:llvm::DifferenceEngine
67 consumer.log(text);
/external/openssl/
H A Dcheck-all-builds.sh36 log () { function
45 log "COMMAND: $*"
246 log "Host OS: $HOST_OS"
247 log "Host arch: $HOST_ARCH"
248 log "Host CPU count: $NUM_CORES"
253 log "Build types: $BUILD_TYPES"
260 log "Cleaning up temporary directory: $BUILD_DIR"
266 log "Using temporary build directory: $BUILD_DIR"
268 log "Using user build directory: $BUILD_DIR"
624 log "Makefil
[all...]
/external/qemu/android/build/
H A Dcommon.sh25 log () function
160 TMPL=/tmp/android-$$-test.log
190 log "Check32Bits: Forcing generation of 32-bit binaries (--try-64 to disable)"
201 log "Mingw : Checking for Linux host"
207 log "Mingw64 : Checking for mingw64 installation"
214 log "Mingw : Checking for mingw32 installation"
286 log "CC : compiler check ok ($CC)"
298 log "LD : linker check ok ($LD)"
303 log "AR : archiver ($AR)"
308 # stores the error log int
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/
H A DSDL_gamma.c35 #define log(x) __ieee754_log(x) macro
84 sum += (float) ( log(A) / log(B) );
/external/apache-http/src/org/apache/http/impl/conn/
H A DDefaultClientConnection.java74 private final Log log = LogFactory.getLog(getClass()); field in class:DefaultClientConnection
152 log.debug("Connection shut down");
165 log.debug("Connection closed");
H A DSingleClientConnManager.java79 private final Log log = LogFactory.getLog(getClass()); field in class:SingleClientConnManager
219 if (log.isDebugEnabled()) {
220 log.debug("Get connection for route " + route);
251 log.debug("Problem shutting down connection.", iox);
267 log.debug("Problem tagging socket.", iox);
287 if (log.isDebugEnabled()) {
288 log.debug("Releasing connection " + conn);
314 if (log.isDebugEnabled()) {
315 log.debug
325 //@@@ log a
[all...]
/external/apache-http/src/org/apache/http/impl/conn/tsccm/
H A DAbstractConnPool.java65 private final Log log = LogFactory.getLog(getClass()); field in class:AbstractConnPool
213 if (log.isDebugEnabled()) {
214 log.debug("Connection garbage collected. " + route);
327 log.debug("I/O error closing connection", ex);
H A DRouteSpecificPool.java57 private final Log log = LogFactory.getLog(getClass()); field in class:RouteSpecificPool
172 log.debug("I/O error closing connection", ex);
H A DThreadSafeClientConnManager.java76 private final Log log = LogFactory.getLog(getClass()); field in class:ThreadSafeClientConnManager
176 if (log.isDebugEnabled()) {
177 log.debug("ThreadSafeClientConnManager.getConnection: "
191 log.debug("Problem tagging socket.", iox);
229 if (log.isDebugEnabled()) {
230 log.debug
244 //@@@ log as warning? let pass?
245 if (log.isDebugEnabled())
246 log.debug("Exception shutting down released connection.",
/external/chromium_org/chrome/browser/chromeos/file_system_provider/fileapi/
H A Dfile_stream_writer_unittest.cc40 // Pushes a value to the passed log vector.
41 void LogValue(std::vector<int>* log, int value) { argument
42 log->push_back(value);
/external/chromium_org/chrome/browser/ui/webui/sync_file_system_internals/
H A Dsync_file_system_internals_handler.cc136 const std::vector<EventLogger::Event> log = local
145 for (std::vector<EventLogger::Event>::const_iterator log_entry = log.begin();
146 log_entry != log.end();
181 const sync_file_system::TaskLogger::LogList& log = local
184 for (sync_file_system::TaskLogger::LogList::const_iterator itr = log.begin();
185 itr != log.end(); ++itr)
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/irc/servlet/
H A Dirc.js13 function log(message) { console.log(message); }; function
63 log("<< " + message);
184 log(">> " + line);
/external/chromium_org/chrome/test/chromedriver/
H A Dperformance_logger.cc18 #include "chrome/test/chromedriver/chrome/log.h"
63 PerformanceLogger::PerformanceLogger(Log* log, const Session* session) argument
64 : log_(log),
69 PerformanceLogger::PerformanceLogger(Log* log, argument
72 : log_(log),
182 // Add each one as an individual log entry of method Tracing.dataCollected.
211 // Expose error to client via perf log using same format as other entries.
/external/chromium_org/cloud_print/gcp20/prototype/
H A Ddns_sd_server.cc197 std::string log; local
202 log = "Processing PTR query";
226 log = "Processing SRV query";
235 log = "Processing A query";
243 log = "Processing AAAA query";
251 log = "Processing TXT query";
259 base::SStringPrintf(&log, "Unknown query type (%d)", query.qtype);
261 log += responded ? ": responded" : ": ignored";
262 VLOG(1) << log;
/external/chromium_org/components/autofill/core/common/
H A Dsave_password_progress_logger.cc231 DictionaryValue log; local
232 log.SetString(GetStringFromID(STRING_SCHEME_MESSAGE),
234 log.SetString(GetStringFromID(STRING_SCHEME_MESSAGE),
236 log.SetString(GetStringFromID(STRING_SIGNON_REALM),
238 log.SetString(GetStringFromID(STRING_ORIGINAL_SIGNON_REALM),
240 log.SetString(GetStringFromID(STRING_ORIGIN), ScrubURL(form.origin));
241 log.SetString(GetStringFromID(STRING_ACTION), ScrubURL(form.action));
242 log.SetString(GetStringFromID(STRING_USERNAME_ELEMENT),
244 log.SetString(GetStringFromID(STRING_PASSWORD_ELEMENT),
246 log
264 DictionaryValue log; local
300 LogValue(StringID label, const Value& log) argument
[all...]
/external/chromium_org/components/rappor/
H A Dlog_uploader.cc19 // longer before sending the next log. This backoff process helps reduce load
21 // The following is the multiplier we use to expand that inter-log duration.
28 // TODO(holte): Limit based on log size instead.
55 void LogUploader::QueueLog(const std::string& log) { argument
56 queued_logs_.push(log);
124 // Determine whether this log should be retransmitted.
141 // Error 400 indicates a problem with the log, not with the server, so
/external/chromium_org/content/browser/media/
H A Dwebrtc_internals_unittest.cc248 base::ListValue* log = NULL; local
249 EXPECT_TRUE(dict->GetList("log", &log));
250 EXPECT_EQ(1U, log->GetSize());
252 EXPECT_TRUE((*log->begin())->GetAsDictionary(&dict));
/external/chromium_org/net/cert/
H A Dmulti_log_ct_verifier_unittest.cc41 scoped_ptr<CTLogVerifier> log(
43 ASSERT_TRUE(log); variable
46 verifier_->AddLog(log.Pass());
122 // not match the log used in the tests
/external/chromium_org/net/proxy/
H A Dproxy_resolver_v8_unittest.cc150 CapturingBoundNetLog log; local
152 kQueryUrl, &proxy_info, CompletionCallback(), NULL, log.bound());
161 log.GetEntries(&entries);
162 // No bindings were called, so no log entries.
/external/chromium_org/remoting/webapp/
H A Dlog_to_server.js7 * Module for sending log entries to the server.
71 // Maybe clear the session start time, and log the session duration.
80 this.log(entry);
120 * Whether the duration should be added to the log entry for this state.
127 // Duration is added to log entries at the end of the session, as well as at
152 * Moves connection statistics from the accumulator to the log server.
155 * but the statistics are not sent to the log server.
167 this.log(entry);
173 * Sends a log entry to the server.
178 remoting.LogToServer.prototype.log
[all...]
/external/chromium_org/third_party/WebKit/Tools/Scripts/
H A Dvalidate-committer-lists42 from webkitpy.common.system.deprecated_logging import log, error namespace
164 git_log_args = ['git', 'log', '--reverse', '--pretty=format:%ae %at']
194 # No known email mapping, likely not an active committer. We could log here.
197 # log("%s -> %s" % (author, author_email)) # For sanity checking.
/external/chromium_org/third_party/cython/src/Cython/Distutils/
H A Dbuild_ext.py17 from distutils import log namespace
300 log.info("cythoning %s to %s", source, target)
321 log.info("skipping '%s' Cython extension (up-to-date)", target)
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dwindttst.cpp69 void Win32DateTimeTest::testLocales(TestLog *log) argument
158 log->errln("DateTime format error for locale " + baseName + ": expected date \"" + expected +
166 log->errln("DateTime format error for locale " + baseName + ": expected time \"" + expected +
174 log->errln("Date format error for locale " + baseName + ": expected \"" + expected +
182 log->errln("Time format error for locale " + baseName + ": expected \"" + expected +
/external/chromium_org/third_party/icu/source/tools/ctestfw/
H A Dtstdtmod.cpp72 TestDataModule *TestDataModule::getTestDataModule(const char* name, TestLog& log, UErrorCode &status) argument
82 result = new RBTestDataModule(name, log, status);
91 TestDataModule::TestDataModule(const char* name, TestLog& log, UErrorCode& /*status*/) argument
94 fLog(log)
119 RBTestDataModule::RBTestDataModule(const char* name, TestLog& log, UErrorCode& status) argument
120 : TestDataModule(name, log, status),
134 log.errln(UNICODE_STRING_SIMPLE("Unable to initalize test data - missing mandatory description resources!"));
/external/chromium_org/third_party/leveldatabase/src/db/
H A Dlog_reader.cc13 namespace log { namespace in namespace:leveldb
80 // Handle bug in earlier versions of log::Writer where
98 // Handle bug in earlier versions of log::Writer where
242 // fragment of a real log record that just happens to look
243 // like a valid log record.
265 } // namespace log

Completed in 3328 milliseconds

1234567891011>>