summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorMarco Nelissen <marcone@google.com>2015-02-18 22:50:59 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2015-02-18 22:50:59 +0000
commita963dacc1b44ec80742c86ce75611eb9cfa936ea (patch)
tree9b6ff7d4341164e9e8d98b5cebec81eca2dda181 /include
parent6a025acb630a3ac4a84715d188aeb48f1946bc3f (diff)
parent64753517e8ee315654441512a1f59b28fe5c1bc1 (diff)
downloadframeworks_av-a963dacc1b44ec80742c86ce75611eb9cfa936ea.zip
frameworks_av-a963dacc1b44ec80742c86ce75611eb9cfa936ea.tar.gz
frameworks_av-a963dacc1b44ec80742c86ce75611eb9cfa936ea.tar.bz2
am 64753517: Merge "Add dumpsys info"
* commit '64753517e8ee315654441512a1f59b28fe5c1bc1': Add dumpsys info
Diffstat (limited to 'include')
-rw-r--r--include/media/stagefright/foundation/AHandler.h7
-rw-r--r--include/media/stagefright/foundation/ALooperRoster.h3
2 files changed, 9 insertions, 1 deletions
diff --git a/include/media/stagefright/foundation/AHandler.h b/include/media/stagefright/foundation/AHandler.h
index b008b54..41ade77 100644
--- a/include/media/stagefright/foundation/AHandler.h
+++ b/include/media/stagefright/foundation/AHandler.h
@@ -19,6 +19,7 @@
#define A_HANDLER_H_
#include <media/stagefright/foundation/ALooper.h>
+#include <utils/KeyedVector.h>
#include <utils/RefBase.h>
namespace android {
@@ -27,7 +28,8 @@ struct AMessage;
struct AHandler : public RefBase {
AHandler()
- : mID(0) {
+ : mID(0),
+ mMessageCounter(0) {
}
ALooper::handler_id id() const {
@@ -48,6 +50,9 @@ private:
mID = id;
}
+ uint32_t mMessageCounter;
+ KeyedVector<uint32_t, uint32_t> mMessages;
+
DISALLOW_EVIL_CONSTRUCTORS(AHandler);
};
diff --git a/include/media/stagefright/foundation/ALooperRoster.h b/include/media/stagefright/foundation/ALooperRoster.h
index 4d76b64..a0be8eb 100644
--- a/include/media/stagefright/foundation/ALooperRoster.h
+++ b/include/media/stagefright/foundation/ALooperRoster.h
@@ -20,6 +20,7 @@
#include <media/stagefright/foundation/ALooper.h>
#include <utils/KeyedVector.h>
+#include <utils/String16.h>
namespace android {
@@ -42,6 +43,8 @@ struct ALooperRoster {
sp<ALooper> findLooper(ALooper::handler_id handlerID);
+ void dump(int fd, const Vector<String16>& args);
+
private:
struct HandlerInfo {
wp<ALooper> mLooper;