Searched refs:mLog (Results 1 - 3 of 3) sorted by relevance

/system/tools/aidl/tests/java_app/src/android/aidl/tests/
H A DNullableTests.java27 private TestLogger mLog; field in class:NullableTests
31 mLog = logger;
35 mLog.log("Checking that sending null strings reports an error...");
38 mLog.logAndThrow("Expected to fail on null string input!");
40 mLog.log("Caught an exception on null string parameter (expected)");
41 mLog.log("null strings behave as expected");
44 mLog.logAndThrow("Expected to receive NullPointerException on " +
47 mLog.logAndThrow("Expected to receive NullPointerException on " +
52 mLog.log("Checking that service handles @nullable IBinder...");
55 mLog
[all...]
H A DTestServiceClient.java51 private TestLogger mLog; field in class:TestServiceClient
57 mLog = new TestLogger(this);
58 mLog.log("Reading sentinels from intent...");
64 mLog.close();
73 mLog.logAndThrow("Failed to obtain binder...");
77 mLog.logAndThrow("Failed to cast IBinder instance.");
84 mLog.log("Checking that service can repeat primitives back...");
90 mLog.logAndThrow("Repeat with " + query +
98 mLog.logAndThrow("Repeat with " + query +
106 mLog
[all...]
/system/media/audio_utils/include/audio_utils/
H A DSimpleLog.h140 mLog.emplace_back(nowNs, std::string(buffer));
141 if (mLog.size() > mMaxLogLines) {
142 mLog.pop_front();
158 lines = mLog.size();
163 auto it = mLog.begin();
166 if (mLog.size() > lines) {
167 it += (mLog.size() - lines);
169 for (; it != mLog.end(); ++it) {
206 std::deque<std::pair<int64_t, std::string>> mLog; // circular buffer is backed by deque. member in class:android::SimpleLog

Completed in 69 milliseconds