/frameworks/native/libs/binder/include/binder/ |
Binder.h | 27 class BBinder : public IBinder 30 BBinder(); 58 virtual BBinder* localBinder(); 61 virtual ~BBinder(); 69 BBinder(const BBinder& o); 70 BBinder& operator=(const BBinder& o);
|
IBinder.h | 36 class BBinder; 161 virtual BBinder* localBinder();
|
/frameworks/native/libs/binder/ |
Binder.cpp | 49 BBinder* IBinder::localBinder() 86 class BBinder::Extras 95 BBinder::BBinder() : mExtras(nullptr) 99 bool BBinder::isBinderAlive() const 104 status_t BBinder::pingBinder() 109 const String16& BBinder::getInterfaceDescriptor() const 114 ALOGW("reached BBinder::getInterfaceDescriptor (this=%p)", this); 118 status_t BBinder::transact( 140 status_t BBinder::linkToDeath [all...] |
IAppOpsCallback.cpp | 65 return BBinder::onTransact(code, data, reply, flags);
|
/system/core/libbinderwrapper/include/binderwrapper/ |
binder_wrapper.h | 29 class BBinder; 67 virtual sp<BBinder> CreateLocalBinder() = 0;
|
stub_binder_wrapper.h | 66 // To create a local BBinder object, production code can call 67 // CreateLocalBinder(). Then, a test can get the BBinder's address via 75 const std::vector<sp<BBinder>>& local_binders() const { 99 sp<BBinder> CreateLocalBinder() override; 118 std::vector<sp<BBinder>> local_binders_;
|
/system/core/libbinderwrapper/ |
stub_binder_wrapper.cc | 59 sp<BBinder> StubBinderWrapper::CreateLocalBinder() { 60 sp<BBinder> binder(new BBinder());
|
real_binder_wrapper.cc | 82 sp<BBinder> RealBinderWrapper::CreateLocalBinder() { 83 return sp<BBinder>(new BBinder());
|
real_binder_wrapper.h | 39 sp<BBinder> CreateLocalBinder() override;
|
/frameworks/base/libs/storage/ |
IMountShutdownObserver.cpp | 48 return BBinder::onTransact(code, data, reply, flags);
|
IObbActionListener.cpp | 55 return BBinder::onTransact(code, data, reply, flags);
|
IMountServiceListener.cpp | 62 return BBinder::onTransact(code, data, reply, flags);
|
/frameworks/native/libs/input/ |
IInputFlinger.cpp | 54 return BBinder::onTransact(code, data, reply, flags);
|
/frameworks/native/services/batteryservice/ |
IBatteryPropertiesListener.cpp | 60 return BBinder::onTransact(code, data, reply, flags);
|
/frameworks/av/camera/ |
ICameraServiceProxy.cpp | 70 return BBinder::onTransact(code, data, reply, flags);
|
/frameworks/av/drm/common/ |
IDrmServiceListener.cpp | 58 return BBinder::onTransact(code, data, reply, flags);
|
/frameworks/av/drm/libmediadrm/ |
IDrmClient.cpp | 77 return BBinder::onTransact(code, data, reply, flags);
|
/frameworks/av/media/libaudioclient/ |
IAudioRecord.cpp | 90 return BBinder::onTransact(code, data, reply, flags);
|
/frameworks/av/media/libmedia/ |
IMediaCodecService.cpp | 66 return BBinder::onTransact(code, data, reply, flags);
|
IMediaPlayerClient.cpp | 74 return BBinder::onTransact(code, data, reply, flags);
|
IMediaRecorderClient.cpp | 66 return BBinder::onTransact(code, data, reply, flags);
|
IRemoteDisplay.cpp | 90 return BBinder::onTransact(code, data, reply, flags);
|
IResourceManagerClient.cpp | 86 return BBinder::onTransact(code, data, reply, flags);
|
/frameworks/av/media/utils/ |
ISchedulingPolicyService.cpp | 78 return BBinder::onTransact(code, data, reply, flags);
|
/frameworks/av/radio/ |
IRadioClient.cpp | 69 return BBinder::onTransact(code, data, reply, flags);
|