Searched defs:strTarget (Results 1 - 9 of 9) sorted by relevance

/vbox/src/VBox/Frontends/VirtualBox/src/net/
H A DUIDownloaderAdditions.cpp66 const QString &strTarget = QDir(vboxGlobal().homeFolder()).absoluteFilePath(strName); local
70 setTarget(strTarget);
110 QString strTarget = QIFileDialog::getExistingDirectory(QFileInfo(target()).absolutePath(), local
115 if (!strTarget.isNull())
116 setTarget(QDir(strTarget).absoluteFilePath(QFileInfo(target()).fileName()));
H A DUIDownloaderExtensionPack.cpp74 QString strTarget(QDir(strTargetPath).absoluteFilePath(strTargetName));
78 setTarget(strTarget);
128 QString strTarget = QIFileDialog::getExistingDirectory(QFileInfo(target()).absolutePath(), local
133 if (!strTarget.isNull())
134 setTarget(QDir(strTarget).absoluteFilePath(QFileInfo(target()).fileName()));
H A DUIDownloaderUserManual.cpp114 QString strTarget = QIFileDialog::getExistingDirectory(QFileInfo(target()).absolutePath(), local
119 if (!strTarget.isNull())
120 setTarget(QDir(strTarget).absoluteFilePath(QFileInfo(target()).fileName()));
H A DUIDownloader.h78 void setTarget(const QString &strTarget) { m_strTarget = strTarget; } argument
H A DUIUpdateManager.cpp396 void sltHandleDownloadedExtensionPack(const QString &strSource, const QString &strTarget, QString strDigest) argument
399 if (msgCenter().proposeInstallExtentionPack(GUI_ExtPackName, strSource, QDir::toNativeSeparators(strTarget)))
400 UIGlobalSettingsExtension::doInstallation(strTarget, strDigest, windowManager().networkManagerOrMainWindowShown(), NULL);
/vbox/src/VBox/Frontends/VirtualBox/src/platform/darwin/
H A DVBoxUtils-darwin.cpp542 QString strTarget; local
558 strTarget = QString::fromUtf8(pszPath);
561 strTarget = strFile;
564 return strTarget;
/vbox/src/VBox/Main/xml/
H A DSettings.cpp636 Utf8Str strUser, strServer, strPort, strTarget, strLun; local
654 if (pelmImage->getAttributeValue("target", strTarget))
657 med.strLocation.append(strTarget);
667 if (strTarget.length())
668 med.properties["TargetName"] = strTarget;
/vbox/src/VBox/Main/src-server/
H A DVirtualBoxImpl.cpp3690 * Copies strSource to strTarget, making it relative to the VirtualBox config folder
3694 * @param strTarget Buffer to receive target path.
3697 Utf8Str &strTarget)
3704 // use strTarget as a temporary buffer to hold the machine settings dir
3705 strTarget = m->strHomeDir;
3706 if (RTPathStartsWith(strSource.c_str(), strTarget.c_str()))
3708 strTarget.append(strSource.c_str() + strTarget.length()); // include '/'
3711 strTarget = strSource;
3696 i_copyPathRelativeToConfig(const Utf8Str &strSource, Utf8Str &strTarget) argument
H A DMachineImpl.cpp7219 * Copies strSource to strTarget, making it relative to the machine folder
7223 * @param strTarget Buffer to receive target path.
7228 Utf8Str &strTarget)
7236 // use strTarget as a temporary buffer to hold the machine settings dir
7237 strTarget = mData->m_strConfigFileFull;
7238 strTarget.stripFilename();
7239 if (RTPathStartsWith(strSource.c_str(), strTarget.c_str()))
7242 strTarget = strSource.substr(strTarget.length() + 1); // skip '/'
7245 if (strTarget
7227 i_copyPathRelativeToMachine(const Utf8Str &strSource, Utf8Str &strTarget) argument
[all...]

Completed in 105 milliseconds