Lines Matching refs:_rData
130 bool initBaseInstallationData(rtl::Bootstrap& _rData);
131 bool initUserInstallationData(rtl::Bootstrap& _rData);
372 rtl::Bootstrap& _rData, OUString const& _sBootstrapParameter in getDerivedPath() argument
377 …OSL_PRECOND(!_rData.getFrom(_sBootstrapParameter,sDerivedURL),"Setting for derived path is already… in getDerivedPath()
396 _rData.getFrom(_sBootstrapParameter, _rURL, sDerivedURL); in getDerivedPath()
400 …_rData.getFrom(_sBootstrapParameter,sDerivedURL) && sDerivedURL==_rURL,"Use of default did not aff… in getDerivedPath()
422 rtl::Bootstrap& _rData, OUString const& _sBootstrapParameter in getDerivedPath() argument
425 …return getDerivedPath(_rURL,_aBaseData.path,_aBaseData.status,_sRelativeURL,_rData,_sBootstrapPara… in getDerivedPath()
481 Bootstrap::PathStatus implGetBootstrapFile(rtl::Bootstrap& _rData, Bootstrap::Impl::PathData & _rBo… in implGetBootstrapFile() argument
483 _rData.getIniName(_rBootstrapFile.path); in implGetBootstrapFile()
490 Bootstrap::PathStatus implGetVersionFile(rtl::Bootstrap& _rData, Bootstrap::Impl::PathData & _rVers… in implGetVersionFile() argument
494 _rData.getFrom(csVersionFileItem,_rVersionFile.path); in implGetVersionFile()
533 static Bootstrap::FailureCode describeError(OUStringBuffer& _rBuf, Bootstrap::Impl const& _rData) in describeError() argument
539 switch (_rData.aUserInstall_.status) in describeError()
542 switch (_rData.aBaseInstall_.status) in describeError()
545 addMissingDirectoryError(_rBuf, _rData.aBaseInstall_.path); in describeError()
568 addMissingDirectoryError(_rBuf, _rData.aUserInstall_.path); in describeError()
574 if (_rData.aVersionINI_.status == Bootstrap::PATH_EXISTS) in describeError()
576 addFileError(_rBuf, _rData.aVersionINI_.path, IS_INVALID); in describeError()
583 switch (_rData.aVersionINI_.status) in describeError()
586 addFileError(_rBuf, _rData.aVersionINI_.path, "does not support the current version"); in describeError()
591 addFileError(_rBuf, _rData.aVersionINI_.path, IS_MISSING); in describeError()
596 switch (_rData.aBootstrapINI_.status) in describeError()
599 addFileError(_rBuf, _rData.aBootstrapINI_.path, IS_INVALID); in describeError()
601 if (_rData.aVersionINI_.status == Bootstrap::DATA_MISSING) in describeError()
609 addFileError(_rBuf, _rData.aBootstrapINI_.path, IS_MISSING); in describeError()
807 bool Bootstrap::Impl::initBaseInstallationData(rtl::Bootstrap& _rData) in initBaseInstallationData() argument
812 _rData.getFrom(csBaseInstallItem, aBaseInstall_.path, csBaseInstallDefault); in initBaseInstallationData()
816 implGetBootstrapFile(_rData, aBootstrapINI_); in initBaseInstallationData()
822 bool Bootstrap::Impl::initUserInstallationData(rtl::Bootstrap& _rData) in initUserInstallationData() argument
826 if (_rData.getFrom(csUserInstallItem, aUserInstall_.path)) in initUserInstallationData()
839 if (! _rData.getFrom(csUserDirItem, sDummy)) in initUserInstallationData()
843 … if ( PATH_EXISTS == getDerivedPath(sDummy, aBaseInstall_, csUserDir, _rData, csUserDirItem) ) in initUserInstallationData()
850 implGetVersionFile(_rData, aVersionINI_); in initUserInstallationData()