Lines Matching defs:aThat
103 * @note Locks @a aThat object for writing if @a aReshare is @c true, or for
107 BandwidthGroup *aThat,
110 LogFlowThisFunc(("aParent=%p, aThat=%p, aReshare=%RTbool\n",
111 aParent, aThat, aReshare));
113 ComAssertRet(aParent && aThat, E_INVALIDARG);
122 AutoCaller thatCaller(aThat);
127 AutoWriteLock thatLock(aThat COMMA_LOCKVAL_SRC_POS);
129 unconst(aThat->m->pPeer) = this;
130 m->bd.attach(aThat->m->bd);
134 unconst(m->pPeer) = aThat;
136 AutoReadLock thatLock(aThat COMMA_LOCKVAL_SRC_POS);
137 m->bd.share(aThat->m->bd);
151 HRESULT BandwidthGroup::initCopy(BandwidthControl *aParent, BandwidthGroup *aThat)
153 LogFlowThisFunc(("aParent=%p, aThat=%p\n", aParent, aThat));
155 ComAssertRet(aParent && aThat, E_INVALIDARG);
164 AutoCaller thatCaller(aThat);
167 AutoReadLock thatlock(aThat COMMA_LOCKVAL_SRC_POS);
168 m->bd.attachCopy(aThat->m->bd);
301 * represented by @a aThat (locked for reading).