Lines Matching refs:Bootstrap

85     class Bootstrap::Impl
130 bool initBaseInstallationData(rtl::Bootstrap& _rData);
131 bool initUserInstallationData(rtl::Bootstrap& _rData);
137 static Bootstrap::Impl* s_pData = NULL;
139 Bootstrap::Impl const& Bootstrap::data() in data()
150 rtl::Bootstrap::get( in data()
157 void Bootstrap::reloadData() in reloadData()
169 typedef Bootstrap::PathStatus PathStatus;
189 PathStatus eStatus = Bootstrap::DATA_UNKNOWN; in implCheckStatusOfURL()
196 eStatus = Bootstrap::PATH_EXISTS; in implCheckStatusOfURL()
200 eStatus = Bootstrap::PATH_VALID; in implCheckStatusOfURL()
206 eStatus = Bootstrap::DATA_INVALID; in implCheckStatusOfURL()
214 eStatus = Bootstrap::DATA_UNKNOWN; in implCheckStatusOfURL()
219 eStatus = Bootstrap::DATA_MISSING; in implCheckStatusOfURL()
341 PathStatus eStatus = Bootstrap::DATA_UNKNOWN; in checkStatusAndNormalizeURL()
344 eStatus = Bootstrap::DATA_MISSING; in checkStatusAndNormalizeURL()
347 eStatus = Bootstrap::DATA_INVALID; in checkStatusAndNormalizeURL()
355 if (eStatus == Bootstrap::PATH_EXISTS) in checkStatusAndNormalizeURL()
372 rtl::Bootstrap& _rData, OUString const& _sBootstrapParameter in getDerivedPath()
390 if (aStatus == Bootstrap::PATH_EXISTS) in getDerivedPath()
394 …OSL_ASSERT(aStatus != Bootstrap::PATH_VALID || dbgCheckStatusOfURL(sDerivedURL) == Bootstrap::PATH… in getDerivedPath()
408 OSL_ASSERT( aStatus > Bootstrap::PATH_VALID ); in getDerivedPath()
420 Bootstrap::Impl::PathData const& _aBaseData, in getDerivedPath()
422 rtl::Bootstrap& _rData, OUString const& _sBootstrapParameter in getDerivedPath()
474 Bootstrap::PathStatus updateStatus(Bootstrap::Impl::PathData & _rResult) in updateStatus()
481 Bootstrap::PathStatus implGetBootstrapFile(rtl::Bootstrap& _rData, Bootstrap::Impl::PathData & _rBo… in implGetBootstrapFile()
490 Bootstrap::PathStatus implGetVersionFile(rtl::Bootstrap& _rData, Bootstrap::Impl::PathData & _rVers… in implGetVersionFile()
533 static Bootstrap::FailureCode describeError(OUStringBuffer& _rBuf, Bootstrap::Impl const& _rData) in describeError()
535 Bootstrap::FailureCode eErrCode = Bootstrap::INVALID_BOOTSTRAP_DATA; in describeError()
541 case Bootstrap::PATH_EXISTS: in describeError()
544 case Bootstrap::PATH_VALID: in describeError()
546 eErrCode = Bootstrap::MISSING_INSTALL_DIRECTORY; in describeError()
549 case Bootstrap::DATA_INVALID: in describeError()
553 case Bootstrap::DATA_MISSING: in describeError()
557 case Bootstrap::PATH_EXISTS: // seems to be all fine (?) in describeError()
567 case Bootstrap::PATH_VALID: in describeError()
569 eErrCode = Bootstrap::MISSING_USER_DIRECTORY; in describeError()
573 case Bootstrap::DATA_INVALID: in describeError()
574 if (_rData.aVersionINI_.status == Bootstrap::PATH_EXISTS) in describeError()
577 eErrCode = Bootstrap::INVALID_VERSION_FILE_ENTRY; in describeError()
582 case Bootstrap::DATA_MISSING: in describeError()
585 case Bootstrap::PATH_EXISTS: in describeError()
587 eErrCode = Bootstrap::MISSING_VERSION_FILE_ENTRY; in describeError()
590 case Bootstrap::PATH_VALID: in describeError()
592 eErrCode = Bootstrap::MISSING_VERSION_FILE; in describeError()
598 case Bootstrap::PATH_EXISTS: in describeError()
601 if (_rData.aVersionINI_.status == Bootstrap::DATA_MISSING) in describeError()
602 eErrCode = Bootstrap::MISSING_BOOTSTRAP_FILE_ENTRY; in describeError()
604 eErrCode = Bootstrap::INVALID_BOOTSTRAP_FILE_ENTRY; in describeError()
607 case Bootstrap::DATA_INVALID: OSL_ASSERT(false); in describeError()
608 case Bootstrap::PATH_VALID: in describeError()
610 eErrCode = Bootstrap::MISSING_BOOTSTRAP_FILE; in describeError()
633 OUString Bootstrap::getProductKey() in getProductKey()
643 OUString Bootstrap::getProductKey(OUString const& _sDefault) in getProductKey()
651 OUString Bootstrap::getProductSource(OUString const& _sDefault) in getProductSource()
662 OUString Bootstrap::getBuildIdData(OUString const& _sDefault) in getBuildIdData()
676 OUString Bootstrap::getRevisionInfo() in getRevisionInfo()
692 OUString Bootstrap::getAllUsersValue(OUString const& _sDefault) in getAllUsersValue()
696 …rtl::Bootstrap aData( getExecutableDirectory() + OUString( RTL_CONSTASCII_USTRINGPARAM( "/" SETUP_… in getAllUsersValue()
703 Bootstrap::PathStatus Bootstrap::locateBaseInstallation(OUString& _rURL) in locateBaseInstallation()
712 PathStatus Bootstrap::locateUserInstallation(OUString& _rURL) in locateUserInstallation()
721 PathStatus Bootstrap::locateSharedData(OUString& _rURL) in locateSharedData()
725 rtl::Bootstrap aData( data().getImplName() ); in locateSharedData()
739 PathStatus Bootstrap::locateUserData(OUString& _rURL) in locateUserData()
743 rtl::Bootstrap aData( data().getImplName() ); in locateUserData()
757 PathStatus Bootstrap::locateBootstrapFile(OUString& _rURL) in locateBootstrapFile()
766 PathStatus Bootstrap::locateVersionFile(OUString& _rURL) in locateVersionFile()
775 Bootstrap::Status Bootstrap::checkBootstrapStatus(OUString& _rDiagnosticMessage) in checkBootstrapStatus()
783 Bootstrap::Status Bootstrap::checkBootstrapStatus(rtl::OUString& _rDiagnosticMessage, FailureCode& … in checkBootstrapStatus()
807 bool Bootstrap::Impl::initBaseInstallationData(rtl::Bootstrap& _rData) in initBaseInstallationData()
822 bool Bootstrap::Impl::initUserInstallationData(rtl::Bootstrap& _rData) in initUserInstallationData()
856 Bootstrap::Status Bootstrap::Impl::initialize() in initialize()
858 Bootstrap::Status result; in initialize()
860 rtl::Bootstrap aData( m_aImplName ); in initialize()
896 OUString Bootstrap::Impl::getBootstrapValue(OUString const& _sName, OUString const& _sDefault) const in getBootstrapValue()
898 rtl::Bootstrap aData( m_aImplName ); in getBootstrapValue()
906 sal_Bool Bootstrap::Impl::getVersionValue(OUString const& _sName, OUString& _rValue, OUString const… in getVersionValue()
910 rtl::Bootstrap::get( in getVersionValue()
912 rtl::Bootstrap aData( uri + in getVersionValue()