Searched refs:log (Results 76 - 100 of 2002) sorted by relevance

1234567891011>>

/external/okhttp/okio/src/test/java/okio/
H A DMockSink.java30 private final List<String> log = new ArrayList<String>(); field in class:MockSink
34 assertEquals(Arrays.asList(messages), log);
38 assertTrue(log.contains(message));
46 IOException exception = callThrows.get(log.size() - 1);
51 log.add("write(" + source + ", " + byteCount + ")");
57 log.add("flush()");
62 log.add("deadline()");
67 log.add("close()");
/external/valgrind/main/gdbserver_tests/
H A Dnlsigvgdb.stderr.exp6 Reset valgrind output to log (orderly_finish)
/external/apache-http/src/org/apache/http/impl/conn/
H A DIdleConnectionHandler.java59 private final Log log = LogFactory.getLog(getClass()); field in class:IdleConnectionHandler
82 if (log.isDebugEnabled()) {
83 log.debug("Adding connection at: " + timeAdded);
100 log.warn("Removing a connection that never existed!");
125 if (log.isDebugEnabled()) {
126 log.debug("Checking for connections, idleTimeout: " + idleTimeout);
137 if (log.isDebugEnabled()) {
138 log.debug("Closing connection, connection time: " + connectionTime);
144 log.debug("I/O error closing connection", ex);
153 if (log
[all...]
/external/lldb/source/API/
H A DSBFileSpec.cpp70 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
74 if (log)
75 log->Printf ("SBFileSpec(%p)::Exists () => %s", m_opaque_ap.get(), (result ? "true" : "false"));
97 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
98 if (log)
101 log->Printf ("SBFileSpec(%p)::GetFilename () => \"%s\"", m_opaque_ap.get(), s);
103 log->Printf ("SBFileSpec(%p)::GetFilename () => NULL", m_opaque_ap.get());
113 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
114 if (log)
117 log
[all...]
H A DSBProcess.cpp146 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
147 if (log) {
148 log->Printf ("SBProcess(%p)::RemoteLaunch (argv=%p, envp=%p, stdin=%s, stdout=%s, stderr=%s, working-dir=%s, launch_flags=0x%x, stop_at_entry=%i, &error (%p))...",
193 if (log) {
196 log->Printf ("SBProcess(%p)::RemoteLaunch (...) => SBError (%p): %s", process_sp.get(), error.get(), sstr.GetData());
225 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
226 if (log) {
229 log->Printf ("SBProcess(%p)::RemoteAttachToProcessWithID (%" PRIu64 ") => SBError (%p): %s", process_sp.get(), pid, error.get(), sstr.GetData());
239 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
252 if (log)
[all...]
/external/chromium_org/chrome/common/extensions/docs/examples/api/desktopCapture/
H A Dapp.js6 console.log("Received local stream");
10 stream.onended = function() { console.log("Ended"); };
14 console.log("getUserMedia() failed.");
19 console.log("Access rejected.");
45 {}, function(response) { console.log(response.farewell); });
/external/chromium_org/ui/accessibility/extensions/alt/
H A Dbackground.js10 console.log('successfully injected axs_testing.js');
15 console.log('successfully injected script', opt_tab ? opt_tab.url : '');
20 console.log('successfully injected css', opt_tab ? opt_tab.url : '');
25 console.log('created infobar');
36 console.log('command: ', command);
/external/chromium_org/v8/test/mjsunit/es6/debug-promises/
H A Dthrow-caught-all.js14 var log = []; variable
17 log.push("resolve");
23 log.push("throw");
49 log.push("end main");
56 assertEquals(["resolve", "end main", "throw"], log);
H A Dreject-caught-by-default-reject-handler.js16 var log = []; variable
21 log.push("p0.then");
25 log.push("p1.then");
29 log.push("resolve q");
34 log.push("resolve p");
64 log.push("end main");
71 assertEquals(["resolve q", "end main", "resolve p", "p0.then"], log);
H A Dreject-with-throw-in-reject.js16 var log = []; variable
19 log.push("resolve");
25 log.push("throw in reject");
29 log.push("construct");
38 log.push("reject caught");
64 log.push("end main");
72 "reject caught", "throw in reject"], log);
H A Dthrow-caught-by-default-reject-handler.js16 var log = []; variable
21 log.push("p0.then");
25 log.push("p1.then");
29 log.push("resolve q");
34 log.push("resolve p");
65 log.push("end main");
72 assertEquals(["resolve q", "end main", "resolve p", "p0.then"], log);
/external/deqp/modules/egl/
H A DteglNegativeApiTests.cpp99 TestLog& log = m_testCtx.getLog();
100 log << TestLog::Section("Test1", "EGL_BAD_PARAMETER is generated if api is not one of the accepted tokens");
111 log << TestLog::EndSection;
113 log << TestLog::Section("Test2", "EGL_BAD_PARAMETER is generated if the specified client API is not supported by the EGL implementation");
124 log << TestLog::EndSection;
129 TestLog& log = m_testCtx.getLog();
132 log << TestLog::Section("Test1", "EGL_BAD_DISPLAY is generated if display is not an EGL display connection");
140 log << TestLog::EndSection;
142 log << TestLog::Section("Test2", "EGL_BAD_SURFACE is generated if surface is not an EGL surface");
150 log << TestLo
[all...]
/external/chromium_org/extensions/browser/api/web_request/
H A Dweb_request_time_tracker.cc122 RequestTimeLog& log = request_time_logs_[request_id]; local
123 DCHECK(!log.completed);
126 RequestTimeLog& log = request_time_logs_[request_id]; local
127 log.request_start_time = start_time;
128 log.url = url;
129 log.profile = profile;
137 RequestTimeLog& log = request_time_logs_[request_id];
138 if (log.completed)
141 log.request_duration = end_time - log
165 RequestTimeLog& log = request_time_logs_[request_id]; local
[all...]
/external/chromium_org/chrome/browser/resources/media/
H A Dwebrtc_logs.css21 #log-banner {
29 #log-list h3 {
33 #log-list > div > * {
37 #log-list a:visited {
41 #log-list > div:not(:last-child) {
/external/chromium_org/third_party/webrtc/tools/rtcbot/test/
H A Dwebrtc_video_streaming.js29 test.log("RTC Peers created.");
40 test.log("User has granted access to local media.");
49 test.log("On Add stream.");
55 test.log(event.candidate.candidate);
61 test.log("Candidate added successfully");
66 test.log("Creating offer.");
70 test.log("Got offer");
74 test.log("Creating answer");
79 test.log("Got answer");
87 test.log("Se
[all...]
/external/chromium_org/components/invalidation/
H A Dinvalidation_logger_unittest.cc71 InvalidationLogger log; local
74 log.RegisterObserver(&observer_test);
75 log.OnStateChange(syncer::INVALIDATIONS_ENABLED);
85 log.OnInvalidation(syncer::ObjectIdInvalidationMap());
93 log.UnregisterObserver(&observer_test);
100 InvalidationLogger log; local
103 log.RegisterObserver(&observer_test);
104 log.UnregisterObserver(&observer_test);
106 log.OnInvalidation(syncer::ObjectIdInvalidationMap());
107 log
123 InvalidationLogger log; local
160 InvalidationLogger log; local
222 InvalidationLogger log; local
262 InvalidationLogger log; local
[all...]
/external/chromium_org/chrome/common/extensions/docs/examples/api/eventPage/basic/
H A Dcontent.js15 function log(str) { function
16 console.log(str);
26 log("Background page responded: " + response);
32 log("In-memory counter is: " + response.counter);
33 log("Persisted counter is: " + response.persistentCounter);
42 log("Got message from background page: " + msg);
50 log("Ready.");
/external/chromium_org/native_client_sdk/src/gonacl_appengine/static/bullet/
H A Dworld.js45 console.log('Body needs a shapename.');
49 console.log('Body needs a mass.');
53 console.log('Body needs a friction.');
57 console.log('Body needs a transform.');
61 console.log('Body needs a transform array.');
69 console.log('Shape needs a name.');
79 console.log('Shape type - ' + type + ' not supported.');
/external/libexif/libexif/
H A Dexif-log.h1 /*! \file exif-log.h
43 void exif_log_ref (ExifLog *log);
44 void exif_log_unref (ExifLog *log);
49 * \param[in] log #ExifLog
52 void exif_log_free (ExifLog *log);
61 /*! Return a textual description of the given class of error log.
64 * \return textual description of the log class
68 /*! Return a verbose description of the given class of error log.
71 * \return verbose description of the log class
77 typedef void (* ExifLogFunc) (ExifLog *log, ExifLogCod
[all...]
/external/chromium_org/content/shell/tools/plugin/Tests/
H A DLeakWindowScriptableObject.cpp26 log("Fail: Cannot fetch window script object");
34 log("Fail: Cannot query window.self");
38 log("Fail: window.self is not an object");
/external/chromium_org/third_party/WebKit/Tools/qunit/test/
H A Dlogs.js9 log = 0,
37 QUnit.log = function(context) {
38 log++;
42 var logs = ["begin", "testStart", "testDone", "log", "moduleStart", "moduleDone", "done"];
45 var log = logs[i],
46 logger = QUnit[log];
47 QUnit[log] = function() {
48 console.log(log, arguments);
85 equal(log, 1
[all...]
/external/deqp/framework/common/
H A DtcuImageCompare.hpp39 COMPARE_LOG_EVERYTHING = 0, //!< Always log both reference, result and error mask.
40 COMPARE_LOG_RESULT, //!< If comparison passes, log result only. If fails, everything is written to log.
41 COMPARE_LOG_ON_ERROR, //!< If comparison passes, nothing is logged. If fails, everything is written to log.
47 bool pixelThresholdCompare (TestLog& log, const char* imageSetName, const char* imageSetDesc, const Surface& reference, const Surface& result, const RGBA& threshold, CompareLogMode logMode);
48 bool fuzzyCompare (TestLog& log, const char* imageSetName, const char* imageSetDesc, const Surface& reference, const Surface& result, float threshold, CompareLogMode logMode);
49 int measurePixelDiffAccuracy (TestLog& log, const char* imageSetName, const char* imageSetDesc, const Surface& reference, const Surface& result, int bestScoreDiff, int worstScoreDiff, CompareLogMode logMode);
51 bool fuzzyCompare (TestLog& log, const char* imageSetName, const char* imageSetDesc, const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, float threshold, CompareLogMode logMode);
52 bool floatUlpThresholdCompare (TestLog& log, const char* imageSetName, const char* imageSetDesc, const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, const UVec4& threshold, CompareLogMode logMode);
53 bool floatThresholdCompare (TestLog& log, cons
[all...]
/external/libnl/src/
H A Dnf-log.c2 * src/nf-log.c Monitor netfilter log events
18 #include <netlink/netfilter/log.h>
22 struct nfnl_log *log; local
24 log = nfnl_log_alloc();
25 if (!log)
26 nl_cli_fatal(ENOMEM, "Unable to allocate log object");
28 return log;
56 struct nfnl_log *log; local
67 printf("Usage: nf-log famil
[all...]
/external/chromium_org/third_party/skia/experimental/LightSymbolsUtil/lightsymbols/
H A Dlightsymbols.cc58 FILE* log = fopen("d:\\edisonn\\log.txt", "wt"); local
60 if (log) { fprintf(log, "build\n");fflush(log); }
93 if (log) { fprintf(log, "entries: %i\n", entries);fflush(log); }
105 if (log) { fprintf(log, "
[all...]
/external/skia/experimental/LightSymbolsUtil/lightsymbols/
H A Dlightsymbols.cc58 FILE* log = fopen("d:\\edisonn\\log.txt", "wt"); local
60 if (log) { fprintf(log, "build\n");fflush(log); }
93 if (log) { fprintf(log, "entries: %i\n", entries);fflush(log); }
105 if (log) { fprintf(log, "
[all...]

Completed in 692 milliseconds

1234567891011>>