/system/libhwbinder/ |
D | Binder.cpp | 239 : mRemote(o.get()), mRefs(nullptr), mState(0) in BpHwRefBase() 241 if (mRemote) { in BpHwRefBase() 242 mRemote->incStrong(this); // Removed on first IncStrong(). in BpHwRefBase() 248 if (mRemote) { in ~BpHwRefBase() 250 mRemote->decStrong(this); in ~BpHwRefBase() 262 if (mRemote) { in onLastStrongRef() 263 mRemote->decStrong(this); in onLastStrongRef()
|
/system/tools/aidl/tests/golden_output/aidl-test-interface-java-source/gen/android/aidl/tests/ |
D | IDeprecated.java | 65 private android.os.IBinder mRemote; field in IDeprecated.Stub.Proxy 68 mRemote = remote; in Proxy() 72 return mRemote; in asBinder()
|
D | INewName.java | 75 private android.os.IBinder mRemote; field in INewName.Stub.Proxy 78 mRemote = remote; in Proxy() 82 return mRemote; in asBinder() 95 boolean _status = mRemote.transact(Stub.TRANSACTION_RealName, _data, _reply, 0); in RealName()
|
D | INamedCallback.java | 75 private android.os.IBinder mRemote; field in INamedCallback.Stub.Proxy 78 mRemote = remote; in Proxy() 82 return mRemote; in asBinder() 95 boolean _status = mRemote.transact(Stub.TRANSACTION_GetName, _data, _reply, 0); in GetName()
|
D | IOldName.java | 75 private android.os.IBinder mRemote; field in IOldName.Stub.Proxy 78 mRemote = remote; in Proxy() 82 return mRemote; in asBinder() 95 boolean _status = mRemote.transact(Stub.TRANSACTION_RealName, _data, _reply, 0); in RealName()
|
D | ITestService.java | 945 private android.os.IBinder mRemote; field in ITestService.Stub.Proxy 948 mRemote = remote; in Proxy() 952 return mRemote; in asBinder() 977 …boolean _status = mRemote.transact(Stub.TRANSACTION_UnimplementedMethod, _data, _reply, android.os… in UnimplementedMethod() 1002 …boolean _status = mRemote.transact(Stub.TRANSACTION_Deprecated, _data, _reply, android.os.IBinder.… in Deprecated() 1021 …boolean _status = mRemote.transact(Stub.TRANSACTION_TestOneway, _data, null, android.os.IBinder.FL… in TestOneway() 1042 …boolean _status = mRemote.transact(Stub.TRANSACTION_RepeatBoolean, _data, _reply, android.os.IBind… in RepeatBoolean() 1065 …boolean _status = mRemote.transact(Stub.TRANSACTION_RepeatByte, _data, _reply, android.os.IBinder.… in RepeatByte() 1088 …boolean _status = mRemote.transact(Stub.TRANSACTION_RepeatChar, _data, _reply, android.os.IBinder.… in RepeatChar() 1111 …boolean _status = mRemote.transact(Stub.TRANSACTION_RepeatInt, _data, _reply, android.os.IBinder.F… in RepeatInt() [all …]
|
/system/libhwbinder/include/hwbinder/ |
D | Binder.h | 108 inline IBinder* remote() const { return mRemote; } in remote() 114 IBinder* const mRemote; variable
|
/system/tools/aidl/tests/golden_output/aidl_test_loggable_interface-java-source/gen/android/aidl/loggable/ |
D | ILoggableInterface.java | 150 private android.os.IBinder mRemote; field in ILoggableInterface.Stub.Proxy 153 mRemote = remote; in Proxy() 157 return mRemote; in asBinder() 204 boolean _status = mRemote.transact(Stub.TRANSACTION_LogThis, _data, _reply, 0); in LogThis()
|
/system/tools/aidl/ |
D | generate_java_binder.cpp | 312 std::shared_ptr<Variable> mRemote; member in android::aidl::java::ProxyClass 322 mRemote = std::make_shared<Variable>("android.os.IBinder", "mRemote"); in ProxyClass() 323 this->elements.push_back(std::make_shared<Field>(PRIVATE, mRemote)); in ProxyClass() 331 ctor->statements->Add(std::make_shared<Assignment>(mRemote, remote)); in ProxyClass() 351 asBinder->statements->Add(std::make_shared<ReturnStatement>(mRemote)); in ProxyClass() 669 proxyClass->mRemote, "transact", in generate_proxy_method()
|