Home
last modified time | relevance | path

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

/system/libhwbinder/
DBinder.cpp186 : mRemote(o.get()), mRefs(NULL), mState(0) in BpHwRefBase()
190 if (mRemote) { in BpHwRefBase()
191 mRemote->incStrong(this); // Removed on first IncStrong(). in BpHwRefBase()
192 mRefs = mRemote->createWeak(this); // Held for our entire lifetime. in BpHwRefBase()
198 if (mRemote) { in ~BpHwRefBase()
200 mRemote->decStrong(this); in ~BpHwRefBase()
213 if (mRemote) { in onLastStrongRef()
214 mRemote->decStrong(this); in onLastStrongRef()
220 return mRemote ? mRefs->attemptIncStrong(this) : false; in onIncStrongAttempted()
/system/libhwbinder/include/hwbinder/
DBinder.h91 inline IBinder* remote() { return mRemote; } in remote()
92 inline IBinder* remote() const { return mRemote; } in remote()
98 IBinder* const mRemote; variable
/system/tools/aidl/
Dgenerate_java_binder.cpp183 Variable* mRemote; member in android::aidl::java::ProxyClass
198 mRemote = new Variable(types->IBinderType(), "mRemote"); in ProxyClass()
199 this->elements.push_back(new Field(PRIVATE, mRemote)); in ProxyClass()
207 ctor->statements->Add(new Assignment(mRemote, remote)); in ProxyClass()
216 asBinder->statements->Add(new ReturnStatement(mRemote)); in ProxyClass()
452 proxyClass->mRemote, "transact", 4, in generate_method()