Home | History | Annotate | Download | only in binder

Lines Matching full:refs

409                     RefBase::weakref_type* refs = mPendingWeakDerefs[i];
410 refs->decWeak(mProcess.get());
841 RefBase::weakref_type* refs;
853 refs = (RefBase::weakref_type*)mIn.readInt32();
855 LOG_ASSERT(refs->refBase() == obj,
857 refs, obj, refs->refBase());
864 mOut.writeInt32((int32_t)refs);
869 refs = (RefBase::weakref_type*)mIn.readInt32();
871 LOG_ASSERT(refs->refBase() == obj,
873 refs, obj, refs->refBase());
882 refs = (RefBase::weakref_type*)mIn.readInt32();
884 refs->incWeak(mProcess.get());
886 mOut.writeInt32((int32_t)refs);
891 refs = (RefBase::weakref_type*)mIn.readInt32();
896 //LOG_ASSERT(refs->refBase() == obj,
898 // refs, obj, refs->refBase());
899 mPendingWeakDerefs.push(refs);
903 refs = (RefBase::weakref_type*)mIn.readInt32();
907 const bool success = refs->attemptIncStrong(mProcess.get());
908 LOG_ASSERT(success && refs->refBase() == obj,
910 refs, obj, refs->refBase());