Searched refs:aThat (Results 1 - 25 of 41) sorted by relevance

12

/vbox/src/VBox/Main/include/
H A DAudioAdapterImpl.h41 HRESULT init(Machine *aParent, AudioAdapter *aThat);
42 HRESULT initCopy(Machine *aParent, AudioAdapter *aThat);
52 void i_copyFrom(AudioAdapter *aThat);
H A DUSBControllerImpl.h45 HRESULT init(Machine *aParent, USBController *aThat, bool fReshare = false);
46 HRESULT initCopy(Machine *aParent, USBController *aThat);
52 void i_copyFrom(USBController *aThat);
H A DAutoStateDep.h55 AutoStateDependency(Machine *aThat) argument
56 : mThat(aThat), mRC(S_OK),
60 Assert(aThat);
61 mRC = aThat->i_addStateDependency(taDepType, &mMachineState,
H A DBandwidthControlImpl.h42 HRESULT init(Machine *aParent, BandwidthControl *aThat);
43 HRESULT initCopy(Machine *aParent, BandwidthControl *aThat);
51 void i_copyFrom(BandwidthControl *aThat);
H A DParallelPortImpl.h41 HRESULT init (Machine *aParent, ParallelPort *aThat);
42 HRESULT initCopy (Machine *parent, ParallelPort *aThat);
52 void i_copyFrom(ParallelPort *aThat);
H A DUSBDeviceFiltersImpl.h45 HRESULT init(Machine *aParent, USBDeviceFilters *aThat);
46 HRESULT initCopy(Machine *aParent, USBDeviceFilters *aThat);
55 void i_copyFrom(USBDeviceFilters *aThat);
H A DSerialPortImpl.h44 HRESULT init (Machine *aParent, SerialPort *aThat);
45 HRESULT initCopy (Machine *parent, SerialPort *aThat);
55 void i_copyFrom(SerialPort *aThat);
H A DVRDEServerImpl.h40 HRESULT init(Machine *aParent, VRDEServer *aThat);
41 HRESULT initCopy(Machine *aParent, VRDEServer *aThat);
49 void i_copyFrom(VRDEServer *aThat);
H A DUSBDeviceFilterImpl.h45 Data (const Data &aThat) : mName (aThat.mName), mActive (aThat.mActive), argument
46 mRemote (aThat.mRemote), mMaskedIfs (aThat.mMaskedIfs) , mId (aThat.mId)
48 USBFilterClone (&mUSBFilter, &aThat.mUSBFilter);
76 HRESULT init(USBDeviceFilters *aParent, USBDeviceFilter *aThat,
78 HRESULT initCopy(USBDeviceFilters *aParent, USBDeviceFilter *aThat);
H A DBandwidthGroupImpl.h40 HRESULT init(BandwidthControl *aParent, BandwidthGroup *aThat, bool aReshare = false);
41 HRESULT initCopy(BandwidthControl *aParent, BandwidthGroup *aThat);
H A DStorageControllerImpl.h41 StorageController *aThat,
44 StorageController *aThat);
H A DNATEngineImpl.h45 HRESULT init(Machine *aParent, INetworkAdapter *aAdapter, NATEngine *aThat);
46 HRESULT initCopy(Machine *aParent, INetworkAdapter *aAdapter, NATEngine *aThat);
H A DSharedFolderImpl.h38 HRESULT initCopy(Machine *aMachine, SharedFolder *aThat);
/vbox/src/VBox/Main/src-server/
H A DBandwidthGroupImpl.cpp103 * @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;
106 init(BandwidthControl *aParent, BandwidthGroup *aThat, bool aReshare ) argument
151 initCopy(BandwidthControl *aParent, BandwidthGroup *aThat) argument
[all...]
H A DAudioAdapterImpl.cpp121 * @note Locks @a aThat object for reading.
123 HRESULT AudioAdapter::init (Machine *aParent, AudioAdapter *aThat) argument
125 LogFlowThisFunc(("aParent=%p, aThat=%p\n", aParent, aThat));
127 ComAssertRet(aParent && aThat, E_INVALIDARG);
134 unconst(mPeer) = aThat;
136 AutoCaller thatCaller (aThat);
139 AutoReadLock thatLock(aThat COMMA_LOCKVAL_SRC_POS);
141 mData->m.share (aThat->mData->m);
154 * @note Locks @a aThat objec
156 initCopy(Machine *aParent, AudioAdapter *aThat) argument
430 i_copyFrom(AudioAdapter *aThat) argument
[all...]
H A DParallelPortImpl.cpp109 * @note Locks @a aThat object for reading.
111 HRESULT ParallelPort::init(Machine *aParent, ParallelPort *aThat) argument
113 LogFlowThisFunc(("aParent=%p, aThat=%p\n", aParent, aThat));
115 ComAssertRet(aParent && aThat, E_INVALIDARG);
124 unconst(m->pPeer) = aThat;
126 AutoCaller thatCaller (aThat);
129 AutoReadLock thatLock(aThat COMMA_LOCKVAL_SRC_POS);
130 m->bd.share(aThat->m->bd);
143 * @note Locks @a aThat objec
145 initCopy(Machine *aParent, ParallelPort *aThat) argument
478 i_copyFrom(ParallelPort *aThat) argument
[all...]
H A DBandwidthControlImpl.cpp89 * @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
92 init(Machine *aParent, BandwidthControl *aThat) argument
136 initCopy(Machine *aParent, BandwidthControl *aThat) argument
178 i_copyFrom(BandwidthControl *aThat) argument
[all...]
H A DSerialPortImpl.cpp90 * @note Locks @a aThat object for reading.
92 HRESULT SerialPort::init(Machine *aParent, SerialPort *aThat) argument
94 LogFlowThisFunc(("aParent=%p, aThat=%p\n", aParent, aThat));
96 ComAssertRet(aParent && aThat, E_INVALIDARG);
105 unconst(m->pPeer) = aThat;
107 AutoCaller thatCaller (aThat);
110 AutoReadLock thatLock(aThat COMMA_LOCKVAL_SRC_POS);
111 m->bd.share (aThat->m->bd);
124 * @note Locks @a aThat objec
126 initCopy(Machine *aParent, SerialPort *aThat) argument
571 i_copyFrom(SerialPort *aThat) argument
[all...]
H A DVRDEServerImpl.cpp114 * @note Locks @a aThat object for reading.
116 HRESULT VRDEServer::init(Machine *aParent, VRDEServer *aThat) argument
118 LogFlowThisFunc(("aParent=%p, aThat=%p\n", aParent, aThat));
120 ComAssertRet(aParent && aThat, E_INVALIDARG);
127 unconst(mPeer) = aThat;
129 AutoCaller thatCaller(aThat);
132 AutoReadLock thatLock(aThat COMMA_LOCKVAL_SRC_POS);
133 mData.share(aThat->mData);
146 * @note Locks @a aThat objec
148 initCopy(Machine *aParent, VRDEServer *aThat) argument
936 i_copyFrom(VRDEServer *aThat) argument
[all...]
H A DStorageControllerImpl.cpp223 * @note Locks @a aThat object for writing if @a aReshare is @c true, or for
227 StorageController *aThat,
230 LogFlowThisFunc(("aParent=%p, aThat=%p, aReshare=%RTbool\n",
231 aParent, aThat, aReshare));
233 ComAssertRet(aParent && aThat, E_INVALIDARG);
242 AutoCaller thatCaller(aThat);
247 AutoWriteLock thatLock(aThat COMMA_LOCKVAL_SRC_POS);
249 unconst(aThat->m->pPeer) = this;
250 m->bd.attach (aThat->m->bd);
254 unconst(m->pPeer) = aThat;
226 init(Machine *aParent, StorageController *aThat, bool aReshare ) argument
271 initCopy(Machine *aParent, StorageController *aThat) argument
[all...]
H A DNetworkAdapterImpl.cpp118 * @note Locks @a aThat object for reading.
120 HRESULT NetworkAdapter::init(Machine *aParent, NetworkAdapter *aThat, bool aReshare /* = false */) argument
122 LogFlowThisFunc(("aParent=%p, aThat=%p, aReshare=%RTbool\n", aParent, aThat, aReshare));
124 ComAssertRet(aParent && aThat, E_INVALIDARG);
132 mNATEngine->init(aParent, this, aThat->mNATEngine);
135 AutoCaller thatCaller(aThat);
140 AutoWriteLock thatLock(aThat COMMA_LOCKVAL_SRC_POS);
142 unconst(aThat->mPeer) = this;
143 mData.attach(aThat
166 initCopy(Machine *aParent, NetworkAdapter *aThat) argument
1216 i_copyFrom(NetworkAdapter *aThat) argument
[all...]
H A DUSBControllerImpl.cpp141 * @note Locks @a aThat object for writing if @a aReshare is @c true, or for
328 * represented by @a aThat (locked for reading).
330 void USBController::i_copyFrom(USBController *aThat) argument
332 AssertReturnVoid(aThat != NULL);
339 AutoCaller thatCaller(aThat);
348 /* peer is not modified, lock it for reading (aThat is "master" so locked
350 AutoReadLock rl(aThat COMMA_LOCKVAL_SRC_POS);
354 m->bd.assignCopy(aThat->m->bd);
362 * represented by @a aThat (locked for reading).
H A DUSBDeviceFilterImpl.cpp328 * @note Locks @a aThat object for writing if @a aReshare is @c true, or for
331 HRESULT USBDeviceFilter::init (USBDeviceFilters *aParent, USBDeviceFilter *aThat, argument
334 LogFlowThisFunc(("aParent=%p, aThat=%p, aReshare=%RTbool\n",
335 aParent, aThat, aReshare));
337 ComAssertRet(aParent && aThat, E_INVALIDARG);
348 AutoCaller thatCaller (aThat);
353 AutoWriteLock thatLock(aThat COMMA_LOCKVAL_SRC_POS);
355 unconst(aThat->mPeer) = this;
356 mData.attach (aThat->mData);
360 unconst(mPeer) = aThat;
384 initCopy(USBDeviceFilters *aParent, USBDeviceFilter *aThat) argument
[all...]
/vbox/include/VBox/com/
H A DMultiResult.h176 MultiResult (const MultiResult &aThat) : FWResult (aThat) argument
193 MultiResult &operator= (const MultiResult & /* aThat */)
/vbox/src/VBox/Main/src-all/
H A DSharedFolderImpl.cpp128 * @param aThat shared folder object to copy
132 HRESULT SharedFolder::initCopy(Machine *aMachine, SharedFolder *aThat) argument
134 ComAssertRet(aThat, E_INVALIDARG);
143 aThat->m->strName,
144 aThat->m->strHostPath,
145 aThat->m->fWritable,
146 aThat->m->fAutoMount,

Completed in 804 milliseconds

12