summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorGlenn Kasten <gkasten@google.com>2014-04-28 22:43:21 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2014-04-28 22:43:21 +0000
commitf131f87369ec06fc27fc1f14ea72f0ca1a066509 (patch)
treec2df92dbe30769db409737fd29fdb96b4546fa17 /include
parent4513aa2cda9e636e4ac675dab9a1353b22e951ae (diff)
parent92dfd8e67e099577d07eaeb28aad533fd5514d8a (diff)
downloadframeworks_av-f131f87369ec06fc27fc1f14ea72f0ca1a066509.zip
frameworks_av-f131f87369ec06fc27fc1f14ea72f0ca1a066509.tar.gz
frameworks_av-f131f87369ec06fc27fc1f14ea72f0ca1a066509.tar.bz2
Merge "Add private method NBLog::Reader::dumpLine()"
Diffstat (limited to 'include')
-rw-r--r--include/media/nbaio/NBLog.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/media/nbaio/NBLog.h b/include/media/nbaio/NBLog.h
index 6d59ea7..bcbbc04 100644
--- a/include/media/nbaio/NBLog.h
+++ b/include/media/nbaio/NBLog.h
@@ -25,6 +25,8 @@
namespace android {
+class String8;
+
class NBLog {
public:
@@ -187,6 +189,10 @@ private:
const Shared* const mShared; // raw pointer to shared memory
const sp<IMemory> mIMemory; // ref-counted version
int32_t mFront; // index of oldest acknowledged Entry
+ int mFd; // file descriptor
+ int mIndent; // indentation level
+
+ void dumpLine(const String8& timestamp, String8& body);
static const size_t kSquashTimestamp = 5; // squash this many or more adjacent timestamps
};