Home
last modified time | relevance | path

Searched refs:mRemote (Results 1 – 9 of 9) sorted by relevance

/system/libhwbinder/
DBinder.cpp239 : 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/
DIDeprecated.java65 private android.os.IBinder mRemote; field in IDeprecated.Stub.Proxy
68 mRemote = remote; in Proxy()
72 return mRemote; in asBinder()
DINewName.java75 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()
DINamedCallback.java75 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()
DIOldName.java75 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()
DITestService.java945 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/
DBinder.h108 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/
DILoggableInterface.java150 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/
Dgenerate_java_binder.cpp312 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()