Lines Matching refs:aLocation
1740 const com::Utf8Str &aLocation,
1764 aLocation,
1783 aLocation,
1800 HRESULT VirtualBox::openMedium(const com::Utf8Str &aLocation,
1807 Guid id(aLocation);
1823 rc = i_findHardDiskByLocation(aLocation,
1834 rc = i_findDVDOrFloppyImage(aDeviceType, NULL, aLocation,
1851 aLocation,
3343 * @param aLocation Full location specification. Must not be empty.
3398 * @param aLocation Full path to the image file (unused when NULL).
3409 const Utf8Str &aLocation,
3413 AssertReturn(aId || !aLocation.isEmpty(), E_INVALIDARG);
3416 if (!aLocation.isEmpty())
3418 int vrc = i_calculateFullPath(aLocation, location);
3422 aLocation.c_str(),
3457 || ( !aLocation.isEmpty()
3490 aLocation.c_str(),
3726 * @param aLocation Location to check.
3733 const Utf8Str &aLocation,
3737 AssertReturn(!aId.isZero() && !aLocation.isEmpty(), E_FAIL);
3752 if (FAILED(rc) && !aLocation.isEmpty())
3753 rc = i_findHardDiskByLocation(aLocation, false /* aSetError */, &pMediumFound);
3759 rc = i_findDVDOrFloppyImage(DeviceType_DVD, &aId, aLocation, false /* aSetError */, &pMediumFound);
3766 rc = i_findDVDOrFloppyImage(DeviceType_Floppy, &aId, aLocation, false /* aSetError */, &pMediumFound);
3779 if ( (RTPathCompare(strLocFound.c_str(), aLocation.c_str()) == 0)