Lines Matching defs:aParent
50 * @param aParent Pointer to our parent object.
55 HRESULT BandwidthGroup::init(BandwidthControl *aParent,
60 LogFlowThisFunc(("aParent=%p aName=\"%s\"\n",
61 aParent, aName.c_str()));
63 ComAssertRet(aParent && !aName.isEmpty(), E_INVALIDARG);
73 m = new Data(aParent);
106 HRESULT BandwidthGroup::init(BandwidthControl *aParent,
110 LogFlowThisFunc(("aParent=%p, aThat=%p, aReshare=%RTbool\n",
111 aParent, aThat, aReshare));
113 ComAssertRet(aParent && aThat, E_INVALIDARG);
119 m = new Data(aParent);
151 HRESULT BandwidthGroup::initCopy(BandwidthControl *aParent, BandwidthGroup *aThat)
153 LogFlowThisFunc(("aParent=%p, aThat=%p\n", aParent, aThat));
155 ComAssertRet(aParent && aThat, E_INVALIDARG);
161 m = new Data(aParent);