Lines Matching defs:it

12  * you can redistribute it and/or modify it under the terms of the GNU
14 * Foundation, in version 2 as it comes in the "COPYING" file of the
16 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
113 EUSBSettingsMap::const_iterator it;
114 for (it = pSettings->begin(); it != pSettings->end(); ++it)
117 if ( RTStrCmp(it->first.c_str(), "MaxPayloadTransferSize") == 0
118 || RTStrCmp(it->first.c_str(), "MaxFramerate") == 0)
121 rc = RTStrToUInt32Full(it->second.c_str(), 10, &u32);
124 rc = CFGMR3InsertInteger(pConfig, it->first.c_str(), u32);
136 rc = CFGMR3InsertString(pConfig, it->first.c_str(), it->second.c_str());
292 EUSBSettingsMap::const_iterator it;
293 for (it = mDevSettings.begin(); it != mDevSettings.end(); ++it)
294 LogRelFlowFunc(("[dev:%s] = [%s]\n", it->first.c_str(), it->second.c_str()));
295 for (it = mDrvSettings.begin(); it != mDrvSettings.end(); ++it)
296 LogRelFlowFunc(("[drv:%s] = [%s]\n", it->first.c_str(), it->second.c_str()));
385 * Called either from FinalRelease() or by the parent when it gets destroyed.
394 WebcamsMap::iterator it = m.webcams.begin();
395 while (it != m.webcams.end())
397 EUSBWEBCAM *p = it->second;
398 m.webcams.erase(it++);
431 WebcamsMap::const_iterator it;
432 for (i = 0, it = m.webcams.begin(); it != m.webcams.end(); ++it)
433 aWebcams[i++] = it->first;
466 WebcamsMap::const_iterator it = m.webcams.find(path);
467 if (it == m.webcams.end())
541 WebcamsMap::iterator it = m.webcams.find(path);
542 if (it != m.webcams.end())
544 if (it->second->enmStatus == EUSBDEVICE_ATTACHED)
546 p = it->second;
547 m.webcams.erase(it);
667 WebcamsMap::const_iterator it;
668 for (it = m.webcams.begin(); it != m.webcams.end(); ++it)
670 EUSBWEBCAM *p = it->second;
673 *pPath = it->first;
678 if (it == m.webcams.end())