Changeset 35755 in vbox for trunk/src/VBox/Main/src-server
- Timestamp:
- Jan 28, 2011 11:36:42 AM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 69715
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/MachineImpl.cpp
r35676 r35755 7032 7032 * must be called from under the object's lock! 7033 7033 */ 7034 HRESULT Machine::findSharedFolder( CBSTRaName,7034 HRESULT Machine::findSharedFolder(const Utf8Str &aName, 7035 7035 ComObjPtr<SharedFolder> &aSharedFolder, 7036 7036 bool aSetError /* = false */) 7037 7037 { 7038 bool found = false;7038 HRESULT rc = VBOX_E_OBJECT_NOT_FOUND; 7039 7039 for (HWData::SharedFolderList::const_iterator it = mHWData->mSharedFolders.begin(); 7040 !found &&it != mHWData->mSharedFolders.end();7040 it != mHWData->mSharedFolders.end(); 7041 7041 ++it) 7042 7042 { 7043 AutoWriteLock alock(*it COMMA_LOCKVAL_SRC_POS); 7044 found = (*it)->getName() == aName; 7045 if (found) 7046 aSharedFolder = *it; 7047 } 7048 7049 HRESULT rc = found ? S_OK : VBOX_E_OBJECT_NOT_FOUND; 7050 7051 if (aSetError && !found) 7052 setError(rc, tr("Could not find a shared folder named '%ls'"), aName); 7043 SharedFolder *pSF = *it; 7044 AutoCaller autoCaller(pSF); 7045 if (pSF->getName() == aName) 7046 { 7047 aSharedFolder = pSF; 7048 rc = S_OK; 7049 break; 7050 } 7051 } 7052 7053 if (aSetError && FAILED(rc)) 7054 setError(rc, tr("Could not find a shared folder named '%s'"), aName.c_str()); 7053 7055 7054 7056 return rc; … … 8502 8504 ++it) 8503 8505 { 8504 ComObjPtr<SharedFolder> pFolder = *it; 8506 SharedFolder *pSF = *it; 8507 AutoCaller sfCaller(pSF); 8508 AutoReadLock sfLock(pSF COMMA_LOCKVAL_SRC_POS); 8505 8509 settings::SharedFolder sf; 8506 sf.strName = p Folder->getName();8507 sf.strHostPath = p Folder->getHostPath();8508 sf.fWritable = !!p Folder->isWritable();8509 sf.fAutoMount = !!p Folder->isAutoMounted();8510 sf.strName = pSF->getName(); 8511 sf.strHostPath = pSF->getHostPath(); 8512 sf.fWritable = !!pSF->isWritable(); 8513 sf.fAutoMount = !!pSF->isAutoMounted(); 8510 8514 8511 8515 data.llSharedFolders.push_back(sf);
Note:
See TracChangeset
for help on using the changeset viewer.