Lines Matching defs:it

11  * you can redistribute it and/or modify it under the terms of the GNU
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
112 * done, probably... For now it help avoiding deadlocks we don't have
143 for (HostUSBDeviceList::const_iterator it = mDevices.begin(); it != mDevices.end(); ++it, ++i)
144 aUSBDevices[i] = *it;
166 * former case it will temporarily abandon locks because of IPC.
207 * VMs when running filters. In these cases it will temporarily
280 * Make a copy of the list because we cannot hold the lock protecting it.
287 for (HostUSBDeviceList::iterator it = ListCopy.begin();
288 it != ListCopy.end();
289 ++it)
291 ComObjPtr<HostUSBDevice> device = *it;
343 for (HostUSBDeviceList::iterator it = ListCopy.begin();
344 it != ListCopy.end();
345 ++it)
347 ComObjPtr<HostUSBDevice> pHostDevice = *it;
423 for (Host::USBDeviceFilterList::const_iterator it = globalFilters.begin();
424 it != globalFilters.end();
425 ++it)
427 AutoWriteLock filterLock(*it COMMA_LOCKVAL_SRC_POS);
428 const HostUSBDeviceFilter::Data &data = (*it)->i_getData();
432 (*it)->COMGETTER(Action)(&action);
461 for (SessionMachinesList::const_iterator it = llOpenedMachines.begin();
462 it != llOpenedMachines.end();
463 ++it)
465 ComObjPtr<SessionMachine> pMachine = *it;
584 * @param aSuccess Whether it succeeded or failed.
626 * @param aSuccess Whether it succeeded or failed.
688 * Mark the thread for termination and kick it.
752 * First call made on the service thread, use it to do
763 * Last call made on the service thread, use it to do
876 HostUSBDeviceList::iterator it = this->mDevices.begin();
877 while ( it != mDevices.end()
882 if (it != mDevices.end())
883 pHostDevice = *it;
886 * Assert that the object is still alive (we still reference it in
887 * the collection and we're the only one who calls uninit() on it.
931 it++;
957 mDevices.insert(it, NewObj);
971 it++;
974 it = mDevices.erase(it);
1071 * Detach the device from any machine currently using it,
1096 * Just hand it to the device, it knows best what needs to be done.
1209 * @param aDevice The device to fill it with.
1254 for (HostUSBDeviceList::iterator it = mDevices.begin();
1255 it != mDevices.end();
1256 ++it)
1257 if ((*it)->i_getId() == Id)
1259 Dev = (*it);