/vbox/src/VBox/Frontends/VirtualBox/src/net/ |
H A D | UIDownloaderAdditions.cpp | 65 const QString &strSource = QString("http://download.virtualbox.org/virtualbox/%1/").arg(vboxGlobal().vboxVersionStringNormalized()) + strName; local 69 setSource(strSource);
|
H A D | UIDownloader.h | 71 void addSource(const QString &strSource) { m_sources << QUrl(strSource); } argument 72 void setSource(const QString &strSource) { m_sources.clear(); addSource(strSource); } argument
|
H A D | UIUpdateManager.cpp | 396 void sltHandleDownloadedExtensionPack(const QString &strSource, const QString &strTarget, QString strDigest) argument 399 if (msgCenter().proposeInstallExtentionPack(GUI_ExtPackName, strSource, QDir::toNativeSeparators(strTarget)))
|
/vbox/src/VBox/Main/include/ |
H A D | GuestSessionImpl.h | 103 const Utf8Str &strSource, const Utf8Str &strDest, uint32_t uFlags); 135 const Utf8Str &strSource, const Utf8Str &strDest, uint32_t uFlags); 160 const Utf8Str &strSource, const ProcessArguments &aArguments, 193 : strSource(aSource), 201 : strSource(aSource), 212 Utf8Str strSource; member in struct:SessionTaskUpdateAdditions::InstallerFile 431 int i_pathRenameInternal(const Utf8Str &strSource, const Utf8Str &strDest, uint32_t uFlags,
|
H A D | GuestCtrlImplPrivate.h | 391 Utf8Str strSource; member in class:GuestTask
|
/vbox/src/VBox/Main/src-all/ |
H A D | QMTranslatorImpl.cpp | 154 com::Utf8Str strSource; member in struct:QMTranslator_Impl::QMMessage 200 message.strSource == pszSource && 291 message.hash = calculateHash(message.strSource.c_str(), message.strComment.c_str()); 330 message->strSource.swap(str);
|
/vbox/src/VBox/Main/src-client/ |
H A D | GuestSessionImplTasks.cpp | 219 const Utf8Str &strSource, const Utf8Str &strDest, uint32_t uFlags) 221 mSource(strSource), 555 LogFlowThisFunc(("strDesc=%s, strSource=%s, strDest=%s, mCopyFileFlags=%x\n", 579 const Utf8Str &strSource, const Utf8Str &strDest, uint32_t uFlags) 582 mSource = strSource; 827 LogFlowThisFunc(("strDesc=%s, strSource=%s, strDest=%s, uFlags=%x\n", 851 const Utf8Str &strSource, 856 mSource = strSource; 1427 rc = i_copyFileToGuest(pSession, &iso, itFiles->strSource, itFiles->strDest, 1433 itFiles->strSource 218 SessionTaskCopyTo(GuestSession *pSession, const Utf8Str &strSource, const Utf8Str &strDest, uint32_t uFlags) argument 578 SessionTaskCopyFrom(GuestSession *pSession, const Utf8Str &strSource, const Utf8Str &strDest, uint32_t uFlags) argument 850 SessionTaskUpdateAdditions(GuestSession *pSession, const Utf8Str &strSource, const ProcessArguments &aArguments, uint32_t uFlags) argument [all...] |
H A D | GuestSessionImpl.cpp | 1737 int GuestSession::i_pathRenameInternal(const Utf8Str &strSource, const Utf8Str &strDest, argument 1742 LogFlowThisFunc(("strSource=%s, strDest=%s, uFlags=0x%x\n", 1743 strSource.c_str(), strDest.c_str(), uFlags)); 1757 paParms[i++].setPointer((void*)strSource.c_str(), 1758 (ULONG)strSource.length() + 1);
|
/vbox/src/VBox/Frontends/VirtualBox/src/runtime/ |
H A D | UISession.cpp | 496 void UISession::sltInstallGuestAdditionsFrom(const QString &strSource) argument 508 CProgress progressInstall = guest().UpdateGuestAdditions(strSource, 547 CMedium image = vbox.OpenMedium(strSource, KDeviceType_DVD, KAccessMode_ReadWrite, false /* fForceNewUuid */); 552 msgCenter().cannotOpenMedium(vbox, UIMediumType_DVD, strSource, mainMachineWindow());
|
/vbox/src/VBox/Frontends/VBoxManage/ |
H A D | VBoxManageGuestCtrl.cpp | 2437 Utf8Str strSource; local 3247 Utf8Str strSource; local 3269 strSource = ValueUnion.psz; 3277 if (aArgs.size() == 0 && strSource.isEmpty()) 3278 strSource = ValueUnion.psz; 3292 while (strSource.isEmpty()) 3298 strSource = strISO; 3303 if (strSource.isEmpty()) 3308 else if (!RTFileExists(strSource.c_str())) 3310 RTMsgError("Source \"%s\" does not exist!\n", strSource [all...] |
/vbox/src/VBox/Main/src-server/ |
H A D | VirtualBoxImpl.cpp | 3690 * Copies strSource to strTarget, making it relative to the VirtualBox config folder 3693 * @param strSource Path to evalue and copy. 3696 void VirtualBox::i_copyPathRelativeToConfig(const Utf8Str &strSource, argument 3706 if (RTPathStartsWith(strSource.c_str(), strTarget.c_str())) 3708 strTarget.append(strSource.c_str() + strTarget.length()); // include '/' 3711 strTarget = strSource;
|
H A D | MachineImpl.cpp | 7219 * Copies strSource to strTarget, making it relative to the machine folder 7222 * @param strSource Path to evaluate and copy. 7227 void Machine::i_copyPathRelativeToMachine(const Utf8Str &strSource, argument 7239 if (RTPathStartsWith(strSource.c_str(), strTarget.c_str())) 7242 strTarget = strSource.substr(strTarget.length() + 1); // skip '/' 7250 strTarget = strSource;
|