Lines Matching defs:aLocation
1009 * @param aLocation Storage unit location.
1016 const Utf8Str &aLocation,
1047 rc = i_setLocation(aLocation);
1117 * @param aLocation Storage unit location.
1123 const Utf8Str &aLocation,
1129 AssertReturn(!aLocation.isEmpty(), E_INVALIDARG);
1157 rc = i_setLocation(aLocation);
1454 * @param aLocation Location of the host drive.
1461 const Utf8Str &aLocation,
1465 ComAssertRet(!aLocation.isEmpty(), E_INVALIDARG);
1483 size_t lenLocation = aLocation.length();
1485 memcpy(&uuid.au8[4], aLocation.c_str() + (lenLocation - 12), 12);
1487 memcpy(&uuid.au8[4 + 12 - lenLocation], aLocation.c_str(), lenLocation);
1499 rc = i_setLocation(aLocation);
1665 HRESULT Medium::getLocation(com::Utf8Str &aLocation)
1669 aLocation = m->strLocationFull;
2848 HRESULT Medium::setLocation(const com::Utf8Str &aLocation, ComPtr<IProgress> &aProgress)
2851 NOREF(aLocation);
6628 * @param aLocation Location of the storage unit. If the location is a FS-path,
6635 HRESULT Medium::i_setLocation(const Utf8Str &aLocation,
6638 AssertReturn(!aLocation.isEmpty(), E_FAIL);
6663 Utf8Str locationFull(aLocation);
6670 if (RTPathFilename(aLocation.c_str()) == NULL)
6688 aLocation.c_str(), id.raw(), strExt.c_str());
6723 && locationFull != aLocation)
6726 locationFull = aLocation;
6790 m->strLocationFull = aLocation;