summaryrefslogtreecommitdiff
path: root/libs/binder/BpBinder.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libs/binder/BpBinder.cpp')
-rw-r--r--libs/binder/BpBinder.cpp14
1 files changed, 0 insertions, 14 deletions
diff --git a/libs/binder/BpBinder.cpp b/libs/binder/BpBinder.cpp
index 54d24457d4..d9b723108e 100644
--- a/libs/binder/BpBinder.cpp
+++ b/libs/binder/BpBinder.cpp
@@ -30,8 +30,6 @@
#include "BuildFlags.h"
-#include <android-base/file.h>
-
//#undef ALOGV
//#define ALOGV(...) fprintf(stderr, __VA_ARGS__)
@@ -301,18 +299,6 @@ status_t BpBinder::pingBinder()
return transact(PING_TRANSACTION, data, &reply);
}
-status_t BpBinder::startRecordingBinder(const android::base::unique_fd& fd) {
- Parcel send, reply;
- send.writeUniqueFileDescriptor(fd);
- return transact(START_RECORDING_TRANSACTION, send, &reply);
-}
-
-status_t BpBinder::stopRecordingBinder() {
- Parcel data, reply;
- data.markForBinder(sp<BpBinder>::fromExisting(this));
- return transact(STOP_RECORDING_TRANSACTION, data, &reply);
-}
-
status_t BpBinder::dump(int fd, const Vector<String16>& args)
{
Parcel send;