Home
last modified time | relevance | path

Searched refs:handle (Results 176 – 200 of 405) sorted by last modified time

12345678910>>...17

/trunk/main/sfx2/source/appl/
H A Dshutdowniconaqua.mm230 // Do handle file URL differently => convert it to a system
/trunk/main/setup_native/source/win32/customactions/shellextensions/
H A Dcheckrunningoffice.cxx83 MsiGetProperty(handle, sProperty.c_str(), buffer, &nChars); in GetMsiProperty()
90 static inline bool IsSetMsiProperty(MSIHANDLE handle, const std::_tstring& sProperty) in IsSetMsiProperty() argument
92 std::_tstring value = GetMsiProperty(handle, sProperty); in IsSetMsiProperty()
96 static inline void UnsetMsiProperty(MSIHANDLE handle, const std::_tstring& sProperty) in UnsetMsiProperty() argument
98 MsiSetProperty(handle, sProperty.c_str(), NULL); in UnsetMsiProperty()
101 static inline void SetMsiProperty(MSIHANDLE handle, const std::_tstring& sProperty) in SetMsiProperty() argument
103 MsiSetProperty(handle, sProperty.c_str(), TEXT("1")); in SetMsiProperty()
174 extern "C" UINT __stdcall IsOfficeRunning( MSIHANDLE handle ) in IsOfficeRunning() argument
183 std::_tstring sInstDir = GetMsiProperty( handle, TEXT("INSTALLLOCATION") ); in IsOfficeRunning()
218 MsiSetProperty(handle, TEXT("OFFICERUNS"), TEXT("1")); in IsOfficeRunning()
[all …]
H A Dcompleteinstallpath.cxx50 std::_tstring GetMsiProperty( MSIHANDLE handle, const std::_tstring& sProperty ) in GetMsiProperty() argument
56 if ( MsiGetProperty( handle, sProperty.c_str(), szDummy, &nChars ) == ERROR_MORE_DATA ) in GetMsiProperty()
61 MsiGetProperty(handle, sProperty.c_str(), buffer, &nChars); in GetMsiProperty()
69 extern "C" UINT __stdcall CompleteInstallPath( MSIHANDLE handle ) in CompleteInstallPath() argument
87 std::_tstring sInstallLocation = GetMsiProperty( handle, TEXT("INSTALLLOCATION") ); in CompleteInstallPath()
88 std::_tstring sOfficeDirHostname = GetMsiProperty( handle, TEXT("OFFICEDIRHOSTNAME_") ); in CompleteInstallPath()
107 std::_tstring sManufacturer = GetMsiProperty( handle, TEXT("Manufacturer") ); in CompleteInstallPath()
108 std::_tstring sDefinedName = GetMsiProperty( handle, TEXT("DEFINEDPRODUCT") ); in CompleteInstallPath()
109 std::_tstring sUpgradeCode = GetMsiProperty( handle, TEXT("UpgradeCode") ); in CompleteInstallPath()
166 MsiSetProperty(handle, TEXT("INSTALLLOCATION"), sInstallLocation.c_str()); in CompleteInstallPath()
H A Dcopyextensiondata.cxx55 static std::_tstring GetMsiProperty( MSIHANDLE handle, const std::_tstring& sProperty ) in GetMsiProperty() argument
61 if ( MsiGetProperty( handle, sProperty.c_str(), szDummy, &nChars ) == ERROR_MORE_DATA ) in GetMsiProperty()
66 MsiGetProperty(handle, sProperty.c_str(), buffer, &nChars); in GetMsiProperty()
73 extern "C" UINT __stdcall copyExtensionData(MSIHANDLE handle) { in copyExtensionData() argument
75 std::_tstring sSourceDir = GetMsiProperty( handle, TEXT("SourceDir") ); in copyExtensionData()
92 std::_tstring sDestDir = GetMsiProperty( handle, TEXT("INSTALLLOCATION") ); in copyExtensionData()
H A Ddotnetcheck.cxx52 string GetMsiProperty(MSIHANDLE handle, const string& sProperty) in GetMsiProperty() argument
63 MsiGetProperty(handle, sProperty.c_str(), buffer, &nChars); in GetMsiProperty()
71 MsiSetProperty(handle, sProperty.c_str(), sValue.c_str()); in SetMsiProperty()
132 extern "C" UINT __stdcall DotNetCheck(MSIHANDLE handle) { in DotNetCheck() argument
133 string present(GetMsiProperty(handle, TEXT("MsiNetAssemblySupport"))); in DotNetCheck()
142 handle, TEXT("DOTNET_SUFFICIENT"), in DotNetCheck()
154 extern "C" UINT __stdcall ShowProperties(MSIHANDLE handle) in ShowProperties() argument
160 property = GetMsiProperty(handle, TEXT("Installed")); in ShowProperties()
164 property = GetMsiProperty(handle, TEXT("PATCH")); in ShowProperties()
168 property = GetMsiProperty(handle, TEXT("REMOVE")); in ShowProperties()
[all …]
H A Dlayerlinks.cxx52 string GetMsiProperty(MSIHANDLE handle, const string& sProperty) in GetMsiProperty() argument
63 MsiGetProperty(handle, sProperty.c_str(), buffer, &nChars); in GetMsiProperty()
69 inline bool IsSetMsiProperty(MSIHANDLE handle, const string& sProperty) in IsSetMsiProperty() argument
71 return (GetMsiProperty(handle, sProperty).length() > 0); in IsSetMsiProperty()
74 inline void UnsetMsiProperty(MSIHANDLE handle, const string& sProperty) in UnsetMsiProperty() argument
76 MsiSetProperty(handle, sProperty.c_str(), NULL); in UnsetMsiProperty()
81 MsiSetProperty(handle, sProperty.c_str(), TEXT("1")); in SetMsiProperty()
95 extern "C" UINT __stdcall CreateLayerLinks(MSIHANDLE handle) in CreateLayerLinks() argument
97 string sInstallPath = GetMsiProperty(handle, TEXT("INSTALLLOCATION")); in CreateLayerLinks()
106 if ( IsSetMsiProperty(handle, TEXT("ADMININSTALL")) ) in CreateLayerLinks()
[all …]
H A Dmigrateinstallpath.cxx50 std::_tstring GetMsiProperty( MSIHANDLE handle, const std::_tstring& sProperty ) in GetMsiProperty() argument
56 if ( MsiGetProperty( handle, sProperty.c_str(), szDummy, &nChars ) == ERROR_MORE_DATA ) in GetMsiProperty()
61 MsiGetProperty(handle, sProperty.c_str(), buffer, &nChars); in GetMsiProperty()
69 extern "C" UINT __stdcall MigrateInstallPath( MSIHANDLE handle ) in MigrateInstallPath() argument
76 std::_tstring sManufacturer = GetMsiProperty( handle, TEXT("Manufacturer") ); in MigrateInstallPath()
77 std::_tstring sDefinedName = GetMsiProperty( handle, TEXT("DEFINEDPRODUCT") ); in MigrateInstallPath()
78 std::_tstring sUpdateVersion = GetMsiProperty( handle, TEXT("DEFINEDVERSION") ); in MigrateInstallPath()
79 std::_tstring sUpgradeCode = GetMsiProperty( handle, TEXT("UpgradeCode") ); in MigrateInstallPath()
93 MsiSetProperty(handle, TEXT("INSTALLLOCATION"), sInstDir.c_str()); in MigrateInstallPath()
104 MsiSetProperty(handle, TEXT("INSTALLLOCATION"), sInstDir.c_str()); in MigrateInstallPath()
H A Dpostuninstall.cxx48 static std::_tstring GetMsiProperty( MSIHANDLE handle, const std::_tstring& sProperty ) in GetMsiProperty() argument
54 if ( MsiGetProperty( handle, sProperty.c_str(), szDummy, &nChars ) == ERROR_MORE_DATA ) in GetMsiProperty()
59 MsiGetProperty(handle, sProperty.c_str(), buffer, &nChars); in GetMsiProperty()
101 extern "C" UINT __stdcall ExecutePostUninstallScript( MSIHANDLE handle ) in ExecutePostUninstallScript() argument
108 std::_tstring sProductKey = GetMsiProperty( handle, TEXT("FINDPRODUCT") ); in ExecutePostUninstallScript()
H A Dregisterextensions.cxx166 static std::_tstring GetMsiProperty( MSIHANDLE handle, const std::_tstring& sProperty ) in GetMsiProperty() argument
172 if ( MsiGetProperty( handle, sProperty.c_str(), szDummy, &nChars ) == ERROR_MORE_DATA ) in GetMsiProperty()
177 MsiGetProperty(handle, sProperty.c_str(), buffer, &nChars); in GetMsiProperty()
314 extern "C" UINT __stdcall RegisterExtensions(MSIHANDLE handle) in RegisterExtensions() argument
317 std::_tstring sInstDir = GetMsiProperty( handle, TEXT("CustomActionData") ); in RegisterExtensions()
372 extern "C" UINT __stdcall RemoveExtensions(MSIHANDLE handle) in RemoveExtensions() argument
384 std::_tstring sProductKey = GetMsiProperty( handle, TEXT("FINDPRODUCT") ); in RemoveExtensions()
H A Dsetadmininstall.cxx53 static void SetMsiProperty(MSIHANDLE handle, const std::_tstring& sProperty) in SetMsiProperty() argument
55 MsiSetProperty(handle, sProperty.c_str(), TEXT("1")); in SetMsiProperty()
58 extern "C" UINT __stdcall SetAdminInstallProperty(MSIHANDLE handle) in SetAdminInstallProperty() argument
60 SetMsiProperty(handle, TEXT("ADMININSTALL")); in SetAdminInstallProperty()
H A Dstartmenuicon.cxx48 std::_tstring GetMsiProperty( MSIHANDLE handle, const std::_tstring& sProperty ) in GetMsiProperty() argument
54 if ( MsiGetProperty( handle, sProperty.c_str(), szDummy, &nChars ) == ERROR_MORE_DATA ) in GetMsiProperty()
59 MsiGetProperty(handle, sProperty.c_str(), buffer, &nChars); in GetMsiProperty()
70 extern "C" UINT __stdcall InstallStartmenuFolderIcon( MSIHANDLE handle ) in InstallStartmenuFolderIcon() argument
72 std::_tstring sOfficeMenuFolder = GetMsiProperty( handle, TEXT("OfficeMenuFolder") ); in InstallStartmenuFolderIcon()
77 …std::_tstring sIconFile = GetMsiProperty( handle, TEXT("INSTALLLOCATION") ) + TEXT("program\\soffi… in InstallStartmenuFolderIcon()
127 extern "C" UINT __stdcall DeinstallStartmenuFolderIcon(MSIHANDLE handle) in DeinstallStartmenuFolderIcon() argument
129 std::_tstring sOfficeMenuFolder = GetMsiProperty( handle, TEXT("OfficeMenuFolder") ); in DeinstallStartmenuFolderIcon()
H A Dvistaspecial.cxx72 static std::_tstring GetMsiProperty( MSIHANDLE handle, const std::_tstring& sProperty ) in GetMsiProperty() argument
78 if ( MsiGetProperty( handle, sProperty.c_str(), szDummy, &nChars ) == ERROR_MORE_DATA ) in GetMsiProperty()
83 MsiGetProperty(handle, sProperty.c_str(), buffer, &nChars); in GetMsiProperty()
180 extern "C" UINT __stdcall RenamePrgFolder( MSIHANDLE handle ) in RenamePrgFolder() argument
182 std::_tstring sOfficeInstallPath = GetMsiProperty(handle, TEXT("INSTALLLOCATION")); in RenamePrgFolder()
213 extern "C" UINT __stdcall RemovePrgFolder( MSIHANDLE handle ) in RemovePrgFolder() argument
215 std::_tstring sOfficeInstallPath = GetMsiProperty(handle, TEXT("INSTALLLOCATION")); in RemovePrgFolder()
H A Dcheckdirectory.cxx53 static std::_tstring GetMsiProperty( MSIHANDLE handle, const std::_tstring& sProperty ) in GetMsiProperty() argument
59 if ( MsiGetProperty( handle, sProperty.c_str(), szDummy, &nChars ) == ERROR_MORE_DATA ) in GetMsiProperty()
64 MsiGetProperty(handle, sProperty.c_str(), buffer, &nChars); in GetMsiProperty()
71 static void UnsetMsiProperty(MSIHANDLE handle, const std::_tstring& sProperty) in UnsetMsiProperty() argument
73 MsiSetProperty(handle, sProperty.c_str(), NULL); in UnsetMsiProperty()
78 MsiSetProperty(handle, sProperty.c_str(), TEXT("1")); in SetMsiProperty()
81 extern "C" UINT __stdcall CheckInstallDirectory(MSIHANDLE handle) in CheckInstallDirectory() argument
83 std::_tstring sInstallPath = GetMsiProperty(handle, TEXT("INSTALLLOCATION")); in CheckInstallDirectory()
84 std::_tstring sOfficeHostnamePath = GetMsiProperty(handle, TEXT("OFFICEDIRHOSTNAME")); in CheckInstallDirectory()
90 UnsetMsiProperty( handle, TEXT("DIRECTORY_NOT_EMPTY") ); in CheckInstallDirectory()
[all …]
H A Dcheckpatches.cxx70 static std::_tstring GetMsiProperty( MSIHANDLE handle, const std::_tstring& sProperty ) in GetMsiProperty() argument
76 if ( MsiGetProperty( handle, sProperty.c_str(), szDummy, &nChars ) == ERROR_MORE_DATA ) in GetMsiProperty()
81 MsiGetProperty(handle, sProperty.c_str(), buffer, &nChars); in GetMsiProperty()
88 static void SetMsiProperty( MSIHANDLE handle, const std::_tstring& sProperty ) in SetMsiProperty() argument
90 MsiSetProperty( handle, sProperty.c_str(), TEXT("1") ); in SetMsiProperty()
93 extern "C" UINT __stdcall CheckPatchList( MSIHANDLE handle ) in CheckPatchList() argument
95 std::_tstring sPatchList = GetMsiProperty( handle, TEXT("PATCH") ); in CheckPatchList()
96 std::_tstring sRequiredPatch = GetMsiProperty( handle, TEXT("PREREQUIREDPATCH") ); in CheckPatchList()
104 SetMsiProperty( handle, TEXT("IGNOREPREREQUIREDPATCH") ); in CheckPatchList()
/trunk/main/setup_native/source/win32/customactions/reg4msdoc/
H A Dreg4msdocmsi.cxx132 if (IsSetMsiProp(handle, TEXT("SELECT_WORD")) && !IsRegisteredFor(handle, MSWORD)) in InstallExecSequenceEntry()
134 else if (!IsSetMsiProp(handle, TEXT("SELECT_WORD")) && IsRegisteredFor(handle, MSWORD)) in InstallExecSequenceEntry()
137 if (IsSetMsiProp(handle, TEXT("SELECT_EXCEL")) && !IsRegisteredFor(handle, MSEXCEL)) in InstallExecSequenceEntry()
139 else if (!IsSetMsiProp(handle, TEXT("SELECT_EXCEL")) && IsRegisteredFor(handle, MSEXCEL)) in InstallExecSequenceEntry()
142 if (IsSetMsiProp(handle, TEXT("SELECT_POWERPOINT")) && !IsRegisteredFor(handle, MSPOWERPOINT)) in InstallExecSequenceEntry()
144 …else if (!IsSetMsiProp(handle, TEXT("SELECT_POWERPOINT")) && IsRegisteredFor(handle, MSPOWERPOINT)) in InstallExecSequenceEntry()
149 Register4MsDoc(handle, reg4); in InstallExecSequenceEntry()
154 Unregister4MsDoc(handle, unreg4); in InstallExecSequenceEntry()
163 if (IsCompleteDeinstallation(handle)) in DeinstallExecSequenceEntry()
165 Unregister4MsDocAll(handle); in DeinstallExecSequenceEntry()
[all …]
/trunk/main/setup_native/source/win32/customactions/relnotes/
H A Drelnotes.cxx59 inline bool IsValidHandle( HANDLE handle ) in IsValidHandle() argument
61 return (NULL != handle) && (INVALID_HANDLE_VALUE != handle); in IsValidHandle()
65 static bool GetMsiProp(MSIHANDLE handle, LPCTSTR name, /*out*/std::wstring& value) in GetMsiProp() argument
69 if (MsiGetProperty(handle, name, dummy, &sz) == ERROR_MORE_DATA) in GetMsiProp()
75 MsiGetProperty(handle, name, buff, &sz); in GetMsiProp()
156 extern "C" UINT __stdcall ShowSurveyAfter( MSIHANDLE handle ) in ShowSurveyAfter() argument
160 GetMsiProp( handle, TEXT("ProductName"), prodname ); in ShowSurveyAfter()
/trunk/main/setup_native/source/win32/customactions/quickstarter/
H A Dquickstarter.cxx33 std::string GetOfficeInstallationPath(MSIHANDLE handle) in GetOfficeInstallationPath() argument
39 if (MsiGetProperty(handle, TEXT("INSTALLLOCATION"), dummy, &sz) == ERROR_MORE_DATA) in GetOfficeInstallationPath()
45 MsiGetProperty(handle, TEXT("INSTALLLOCATION"), buff, &sz); in GetOfficeInstallationPath()
51 std::string GetOfficeProductName(MSIHANDLE handle) in GetOfficeProductName() argument
57 if (MsiGetProperty(handle, TEXT("ProductName"), dummy, &sz) == ERROR_MORE_DATA) in GetOfficeProductName()
63 MsiGetProperty(handle, TEXT("ProductName"), buff, &sz); in GetOfficeProductName()
69 std::string GetQuickstarterLinkName(MSIHANDLE handle) in GetQuickstarterLinkName() argument
81 MsiGetProperty(handle, TEXT("Quickstarterlinkname"), buff, &sz); in GetQuickstarterLinkName()
90 MsiGetProperty(handle, TEXT("ProductName"), buff, &sz); in GetQuickstarterLinkName()
96 inline bool IsValidHandle( HANDLE handle ) in IsValidHandle() argument
[all …]
H A Dquickstarter.hxx36 std::string GetOfficeInstallationPath(MSIHANDLE handle);
37 std::string GetOfficeProductName(MSIHANDLE handle);
38 std::string GetQuickstarterLinkName(MSIHANDLE handle);
/trunk/main/setup_native/source/win32/customactions/rebase/
H A Drebase.cxx65 static bool IsValidHandle( HANDLE handle ) in IsValidHandle() argument
67 return NULL != handle && INVALID_HANDLE_VALUE != handle; in IsValidHandle()
81 MsiGetProperty(handle, sProperty.c_str(), buffer, &nChars); in GetMsiProperty()
143 rebaseImage( handle, sLibFile, address ); in rebaseImagesInFolder()
168 BOOL bResult = rebaseImagesInFolder( handle, sBasisDir, pAddress, rMap ); in rebaseImages()
169 bResult &= rebaseImagesInFolder( handle, sOfficeDir, pAddress, rMap ); in rebaseImages()
170 bResult &= rebaseImagesInFolder( handle, sUreDir, pAddress, rMap ); in rebaseImages()
223 extern "C" BOOL __stdcall RebaseLibrariesOnProperties( MSIHANDLE handle ) in RebaseLibrariesOnProperties() argument
235 if ( !IsServerSystem( handle )) in RebaseLibrariesOnProperties()
238 InitExcludeFromRebaseList( handle, aExcludeLibsMap ); in RebaseLibrariesOnProperties()
[all …]
/trunk/main/sdext/source/pdfimport/misc/
H A Dpwdinteract.cxx143 xHandler->handle( xReq ); in getPassword()
/trunk/main/sd/source/filter/
H A Dsddetect.cxx269 xInteraction->handle( xRequest ); in detect()
306 xInteraction->handle( aRequest.GetRequest() ); in detect()
314 xInteraction->handle( aNotifyRequest.GetRequest() ); in detect()
/trunk/main/sd/source/filter/grf/
H A Dsdgrffilter.cxx119 …virtual void SAL_CALL handle( const com::sun::star::uno::Reference< com::sun::star::task::XInterac…
127 void SdGRFFilter_ImplInteractionHdl::handle( const com::sun::star::uno::Reference< com::sun::star::… in handle() function in SdGRFFilter_ImplInteractionHdl
137 m_xInter->handle( xRequest ); in handle()
/trunk/main/scp2/source/ooo/
H A Dmodule_systemint.scp40 * Hardcode name as 'openoffice' to handle Beta and Dev builds which
/trunk/main/sc/source/ui/unoobj/
H A Dwarnpassword.cxx71 xHandler->handle( xRequest.get() ); in WarningOnPassword()
H A Dscdetect.cxx397 xInteraction->handle( xRequest ); in detect()
430 xInteraction->handle( aRequest.GetRequest() ); in detect()
438 xInteraction->handle( aNotifyRequest.GetRequest() ); in detect()

Completed in 81 milliseconds

12345678910>>...17