Home | History | Annotate | Download | only in binder

Lines Matching refs:refs

440                     RefBase::weakref_type* refs = mPendingWeakDerefs[i];
441 refs->decWeak(mProcess.get());
899 RefBase::weakref_type* refs;
911 refs = (RefBase::weakref_type*)mIn.readInt32();
913 ALOG_ASSERT(refs->refBase() == obj,
915 refs, obj, refs->refBase());
922 mOut.writeInt32((int32_t)refs);
927 refs = (RefBase::weakref_type*)mIn.readInt32();
929 ALOG_ASSERT(refs->refBase() == obj,
931 refs, obj, refs->refBase());
940 refs = (RefBase::weakref_type*)mIn.readInt32();
942 refs->incWeak(mProcess.get());
944 mOut.writeInt32((int32_t)refs);
949 refs = (RefBase::weakref_type*)mIn.readInt32();
954 //ALOG_ASSERT(refs->refBase() == obj,
956 // refs, obj, refs->refBase());
957 mPendingWeakDerefs.push(refs);
961 refs = (RefBase::weakref_type*)mIn.readInt32();
965 const bool success = refs->attemptIncStrong(mProcess.get());
966 ALOG_ASSERT(success && refs->refBase() == obj,
968 refs, obj, refs->refBase());