Lines Matching defs:aThat
89 * @note Locks @a aThat object for writing if @a aReshare is @c true, or for
93 BandwidthControl *aThat)
95 LogFlowThisFunc(("aParent=%p, aThat=%p\n", aParent, aThat));
97 ComAssertRet(aParent && aThat, E_INVALIDARG);
106 AutoCaller thatCaller(aThat);
109 unconst(m->pPeer) = aThat;
110 AutoWriteLock thatLock(aThat COMMA_LOCKVAL_SRC_POS);
115 for (it = aThat->m->llBandwidthGroups->begin();
116 it != aThat->m->llBandwidthGroups->end();
136 HRESULT BandwidthControl::initCopy(Machine *aParent, BandwidthControl *aThat)
138 LogFlowThisFunc(("aParent=%p, aThat=%p\n", aParent, aThat));
140 ComAssertRet(aParent && aThat, E_INVALIDARG);
149 AutoCaller thatCaller(aThat);
152 AutoReadLock thatlock(aThat COMMA_LOCKVAL_SRC_POS);
157 for (it = aThat->m->llBandwidthGroups->begin();
158 it != aThat->m->llBandwidthGroups->end();
176 * represented by @a aThat (locked for reading).
178 void BandwidthControl::i_copyFrom(BandwidthControl *aThat)
180 AssertReturnVoid(aThat != NULL);
187 AutoCaller thatCaller(aThat);
196 /* peer is not modified, lock it for reading (aThat is "master" so locked
198 AutoReadLock rl(aThat COMMA_LOCKVAL_SRC_POS);
205 for (it = aThat->m->llBandwidthGroups->begin();
206 it != aThat->m->llBandwidthGroups->end();