Home
last modified time | relevance | path

Searched refs:handle (Results 1 – 25 of 403) sorted by relevance

12345678910>>...17

/trunk/main/configmgr/source/
H A Dwritemodfile.cxx87 oslFileHandle handle; member
90 TempFile(): handle(0), closed(false) {} in TempFile()
96 if (handle != 0) { in ~TempFile()
98 oslFileError e = osl_closeFile(handle); in ~TempFile()
111 void writeData(oslFileHandle handle, char const * begin, sal_Int32 length) { in writeData() argument
114 if ((osl_writeFile(handle, begin, static_cast< sal_uInt32 >(length), &n) != in writeData()
124 void writeData(oslFileHandle handle, rtl::OString const & text) { in writeData() argument
125 writeData(handle, text.getStr(), text.getLength()); in writeData()
128 void writeAttributeValue(oslFileHandle handle, rtl::OUString const & value) { in writeAttributeValue() argument
137 writeData(handle, convertToUtf8(value, i, j - i)); in writeAttributeValue()
[all …]
/trunk/main/sal/qa/rtl/digest/
H A Drtl_digest.cxx41 rtlDigest handle = rtl_digest_create( rtl_Digest_AlgorithmMD5 ); in CreateMD5FromString() local
42 if ( handle != NULL ) in CreateMD5FromString()
46 sal_uInt32 nMD5KeyLen = rtl_digest_queryLength( handle ); in CreateMD5FromString()
49 rtl_digest_init( handle, pData, nSize ); in CreateMD5FromString()
50 rtl_digest_update( handle, pData, nSize ); in CreateMD5FromString()
51 rtl_digest_get( handle, pMD5KeyBuffer, nMD5KeyLen ); in CreateMD5FromString()
52 rtl_digest_destroy( handle ); in CreateMD5FromString()
95 rtlDigest handle = rtl_digest_create( rtl_Digest_AlgorithmMD5 ); in TEST_F() local
96 ASSERT_TRUE(handle != 0) << "create with rtl_Digest_AlgorithmMD5"; in TEST_F()
97 rtl_digest_destroy( handle ); in TEST_F()
[all …]
/trunk/main/setup_native/source/win32/customactions/reg4msdoc/
H A Dreg4msdocmsi.cxx43 void DetermineWordPreselectionState(MSIHANDLE handle) in DetermineWordPreselectionState() argument
45 if (query_preselect_registration_for_ms_application(handle, MSWORD)) in DetermineWordPreselectionState()
46 SetMsiProp(handle, TEXT("SELECT_WORD")); in DetermineWordPreselectionState()
49 void DetermineExcelPreselectionState(MSIHANDLE handle) in DetermineExcelPreselectionState() argument
51 if (query_preselect_registration_for_ms_application(handle, MSEXCEL)) in DetermineExcelPreselectionState()
52 SetMsiProp(handle, TEXT("SELECT_EXCEL")); in DetermineExcelPreselectionState()
55 void DeterminePowerPointPreselectionState(MSIHANDLE handle) in DeterminePowerPointPreselectionState() argument
57 if (query_preselect_registration_for_ms_application(handle, MSPOWERPOINT)) in DeterminePowerPointPreselectionState()
58 SetMsiProp(handle, TEXT("SELECT_POWERPOINT")); in DeterminePowerPointPreselectionState()
61 extern "C" UINT __stdcall InstallUiSequenceEntry(MSIHANDLE handle) in InstallUiSequenceEntry() argument
[all …]
H A Dmsihelper.cxx29 bool GetMsiProp(MSIHANDLE handle, LPCTSTR name, /*out*/std::wstring& value) in GetMsiProp() argument
33 if (MsiGetProperty(handle, name, dummy, &sz) == ERROR_MORE_DATA) in GetMsiProp()
39 MsiGetProperty(handle, name, buff, &sz); in GetMsiProp()
46 void SetMsiProp(MSIHANDLE handle, LPCTSTR name) in SetMsiProp() argument
48 MsiSetProperty(handle, name, TEXT("1")); in SetMsiProp()
51 void UnsetMsiProp(MSIHANDLE handle, LPCTSTR name) in UnsetMsiProp() argument
53 MsiSetProperty(handle, name, TEXT("")); in UnsetMsiProp()
56 bool IsSetMsiProp(MSIHANDLE handle, LPCTSTR name) in IsSetMsiProp() argument
59 GetMsiProp(handle, name, val); in IsSetMsiProp()
63 bool IsMsiPropNotEmpty(MSIHANDLE handle, LPCTSTR name) in IsMsiPropNotEmpty() argument
[all …]
H A Dregister.cxx64 bool query_preselect_registration_for_ms_application(MSIHANDLE handle, int Register) in query_preselect_registration_for_ms_application() argument
70 RegistrationContextInformation RegContext(handle, GetOfficeExecutablePath(handle)); in query_preselect_registration_for_ms_application()
71 RegistrarPtr CurrentRegistrar = CreateRegistrar(IsAllUserInstallation(handle), RegContext); in query_preselect_registration_for_ms_application()
93 void Register4MsDoc(MSIHANDLE handle, int Register) in Register4MsDoc() argument
97 RegistrationContextInformation RegContext(handle, GetOfficeExecutablePath(handle)); in Register4MsDoc()
98 RegistrarPtr CurrentRegistrar = CreateRegistrar(IsAllUserInstallation(handle), RegContext); in Register4MsDoc()
127 void Unregister4MsDoc(MSIHANDLE handle, int Unregister) in Unregister4MsDoc() argument
131 RegistrationContextInformation RegContext(handle, GetOfficeExecutablePath(handle)); in Unregister4MsDoc()
132 RegistrarPtr CurrentRegistrar = CreateRegistrar(IsAllUserInstallation(handle), RegContext); in Unregister4MsDoc()
189 void Unregister4MsDocAll(MSIHANDLE handle) in Unregister4MsDocAll() argument
[all …]
H A Dmsihelper.hxx54 bool GetMsiProp(MSIHANDLE handle, LPCTSTR name, /*out*/std::wstring& value);
66 void SetMsiProp(MSIHANDLE handle, LPCTSTR name);
78 void UnsetMsiProp(MSIHANDLE handle, LPCTSTR name);
90 bool IsSetMsiProp(MSIHANDLE handle, LPCTSTR name);
101 bool IsMsiPropNotEmpty(MSIHANDLE handle, LPCTSTR name);
112 bool IsAllUserInstallation(MSIHANDLE handle);
125 std::wstring GetOfficeInstallationPath(MSIHANDLE handle);
138 std::wstring GetOfficeExecutablePath(MSIHANDLE handle);
149 std::wstring GetProductName(MSIHANDLE handle);
163 bool IsModuleInstalled(MSIHANDLE handle, LPCTSTR name);
[all …]
/trunk/main/setup_native/source/win32/customactions/reg4allmsdoc/
H A Dreg4allmsi.cxx266 bool GetMsiProp( MSIHANDLE handle, LPCSTR name, /*out*/std::string& value ) in GetMsiProp() argument
270 if (MsiGetPropertyA(handle, name, dummy, &sz) == ERROR_MORE_DATA) in GetMsiProp()
276 MsiGetPropertyA(handle, name, buff, &sz); in GetMsiProp()
284 bool IsSetMsiProp( MSIHANDLE handle, LPCSTR name ) in IsSetMsiProp() argument
287 GetMsiProp( handle, name, val ); in IsSetMsiProp()
292 static void registerForExtension( MSIHANDLE handle, const int nIndex, bool bRegister ) in registerForExtension() argument
300 MsiSetPropertyA( handle, sPropName, "1" ); in registerForExtension()
303 MsiSetPropertyA( handle, sPropName, "0" ); in registerForExtension()
309 static void registerForExtensions( MSIHANDLE handle, BOOL bRegisterAll ) in registerForExtensions() argument
316 registerForExtension( handle, nIndex, true ); in registerForExtensions()
[all …]
/trunk/main/registry/inc/registry/
H A Dreader.h81 REGISTRY_DLLPUBLIC void SAL_CALL typereg_reader_acquire(void * handle) SAL_THROW_EXTERN_C();
92 REGISTRY_DLLPUBLIC void SAL_CALL typereg_reader_release(void * handle) SAL_THROW_EXTERN_C();
105 REGISTRY_DLLPUBLIC enum typereg_Version SAL_CALL typereg_reader_getVersion(void * handle)
120 void * handle, rtl_uString ** result) SAL_THROW_EXTERN_C();
134 REGISTRY_DLLPUBLIC void SAL_CALL typereg_reader_getFileName(void * handle, rtl_uString ** result)
152 REGISTRY_DLLPUBLIC enum RTTypeClass SAL_CALL typereg_reader_getTypeClass(void * handle)
165 REGISTRY_DLLPUBLIC sal_Bool SAL_CALL typereg_reader_isPublished(void * handle)
179 REGISTRY_DLLPUBLIC void SAL_CALL typereg_reader_getTypeName(void * handle, rtl_uString ** result)
192 REGISTRY_DLLPUBLIC sal_uInt16 SAL_CALL typereg_reader_getSuperTypeCount(void * handle)
210 void * handle, rtl_uString ** result, sal_uInt16 index)
[all …]
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/ifc/beans/
H A D_XFastPropertySet.java63 private int handle = -1; field in _XFastPropertySet
97 if ( handle == -1) { in _setFastPropertyValue()
102 gValue = oObj.getFastPropertyValue(handle); in _setFastPropertyValue()
104 oObj.setFastPropertyValue(handle, sValue); in _setFastPropertyValue()
105 sValue = oObj.getFastPropertyValue(handle); in _setFastPropertyValue()
107 … log.println("Exception occurred while trying to change property with handle = " + handle); in _setFastPropertyValue()
110 … log.println("Exception occurred while trying to change property with handle = " + handle); in _setFastPropertyValue()
113 … log.println("Exception occurred while trying to change property with handle = " + handle); in _setFastPropertyValue()
116 … log.println("Exception occurred while trying to change property with handle = " + handle); in _setFastPropertyValue()
143 oObj.getFastPropertyValue(handle); in _getFastPropertyValue()
[all …]
/trunk/main/setup_native/source/win32/customactions/languagepacks/
H A Drespintest.cxx50 string GetMsiProperty(MSIHANDLE handle, const string& 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()
67 inline bool IsSetMsiProperty(MSIHANDLE handle, const string& sProperty) in IsSetMsiProperty() argument
69 return (GetMsiProperty(handle, sProperty).length() > 0); in IsSetMsiProperty()
72 inline void UnsetMsiProperty(MSIHANDLE handle, const string& sProperty) in UnsetMsiProperty() argument
74 MsiSetProperty(handle, sProperty.c_str(), NULL); in UnsetMsiProperty()
77 inline void SetMsiProperty(MSIHANDLE handle, const string& sProperty, const string&) in SetMsiProperty() argument
79 MsiSetProperty(handle, sProperty.c_str(), TEXT("1")); in SetMsiProperty()
83 extern "C" UINT __stdcall GetUserInstallMode(MSIHANDLE handle) in GetUserInstallMode() argument
[all …]
H A Dcheckrunningofficelanguagepack.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 inline bool IsSetMsiProperty(MSIHANDLE handle, const std::_tstring& sProperty) in IsSetMsiProperty() argument
90 std::_tstring value = GetMsiProperty(handle, sProperty); in IsSetMsiProperty()
94 static inline void UnsetMsiProperty(MSIHANDLE handle, const std::_tstring& sProperty) in UnsetMsiProperty() argument
96 MsiSetProperty(handle, sProperty.c_str(), NULL); in UnsetMsiProperty()
99 static inline void SetMsiProperty(MSIHANDLE handle, const std::_tstring& sProperty) in SetMsiProperty() argument
101 MsiSetProperty(handle, sProperty.c_str(), TEXT("1")); in SetMsiProperty()
172 extern "C" UINT __stdcall IsOfficeRunning( MSIHANDLE handle ) in IsOfficeRunning() argument
[all …]
/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()
70 static std::string GetMsiProperty(MSIHANDLE handle, const std::string& 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()
125 static BOOL rebaseImagesInFolder( MSIHANDLE handle, const std::string& sPath, LPVOID address, Exclu… in rebaseImagesInFolder() argument
143 rebaseImage( handle, sLibFile, address ); in rebaseImagesInFolder()
160 static BOOL rebaseImages( MSIHANDLE handle, LPVOID pAddress, ExcludeLibsMap& rMap ) in rebaseImages() argument
162 std::string sInstallPath = GetMsiProperty(handle, TEXT("INSTALLLOCATION")); in rebaseImages()
168 BOOL bResult = rebaseImagesInFolder( handle, sBasisDir, pAddress, rMap ); in rebaseImages()
[all …]
/trunk/main/setup_native/source/win32/customactions/patch/
H A Dswappatchfiles.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()
159 static inline bool IsSetMsiProperty(MSIHANDLE handle, const std::_tstring& sProperty) in IsSetMsiProperty() argument
161 std::_tstring value = GetMsiProperty(handle, sProperty); in IsSetMsiProperty()
165 static inline void UnsetMsiProperty(MSIHANDLE handle, const std::_tstring& sProperty) in UnsetMsiProperty() argument
167 MsiSetProperty(handle, sProperty.c_str(), NULL); in UnsetMsiProperty()
170 static inline void SetMsiProperty(MSIHANDLE handle, const std::_tstring& sProperty) in SetMsiProperty() argument
172 MsiSetProperty(handle, sProperty.c_str(), TEXT("1")); in SetMsiProperty()
540 extern "C" UINT __stdcall InstallPatchedFiles( MSIHANDLE handle ) in InstallPatchedFiles() argument
[all …]
/trunk/main/offapi/com/sun/star/drawing/
H A DEnhancedCustomShapeHandle.idl42 /** Specifies if the x position of the handle is mirrored.
46 /** Specifies if the y position of the handle is mirrored.
50 /** Specifies if the handle directions are swapped if the shape is taller than wide.
55 … parameter the angle of the handle. Otherwise, if the handle is not polar, the first parameter
56 specifies the horizontal handle position, the vertical handle position is described by the
61 /** If this attribute is set, the handle is a polar handle. The property specifies the center
62 … position of the handle. If this attribute is set, the attributes RangeX and RangeY are ignored,
68 value which is connected to the horizontal position of the handle
73 value which is connected to the vertical position of the handle
78 value which is connected to the angle of the handle
[all …]
/trunk/main/setup_native/source/win32/customactions/shellextensions/
H A Ddotnetcheck.cxx52 string GetMsiProperty(MSIHANDLE handle, const string& sProperty) in GetMsiProperty() argument
58 if (MsiGetProperty(handle, sProperty.c_str(), szDummy, &nChars) == ERROR_MORE_DATA) in GetMsiProperty()
63 MsiGetProperty(handle, sProperty.c_str(), buffer, &nChars); in GetMsiProperty()
69 inline void SetMsiProperty(MSIHANDLE handle, const string& sProperty, const string& sValue) in SetMsiProperty() argument
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()
134 string required(GetMsiProperty(handle, TEXT("REQUIRED_DOTNET_VERSION"))); in DotNetCheck()
142 handle, TEXT("DOTNET_SUFFICIENT"), in DotNetCheck()
154 extern "C" UINT __stdcall ShowProperties(MSIHANDLE handle) in ShowProperties() argument
[all …]
H A Dupgrade.cxx118 string GetMsiProperty(MSIHANDLE handle, const string& sProperty) in GetMsiProperty() argument
124 if (MsiGetProperty(handle, sProperty.c_str(), szDummy, &nChars) == ERROR_MORE_DATA) in GetMsiProperty()
129 MsiGetProperty(handle, sProperty.c_str(), buffer, &nChars); in GetMsiProperty()
135 inline bool IsSetMsiProperty(MSIHANDLE handle, const string& sProperty) in IsSetMsiProperty() argument
137 return (GetMsiProperty(handle, sProperty).length() > 0); in IsSetMsiProperty()
140 inline void UnsetMsiProperty(MSIHANDLE handle, const string& sProperty) in UnsetMsiProperty() argument
142 MsiSetProperty(handle, sProperty.c_str(), NULL); in UnsetMsiProperty()
145 inline void SetMsiProperty(MSIHANDLE handle, const string& sProperty) in SetMsiProperty() argument
147 MsiSetProperty(handle, sProperty.c_str(), TEXT("1")); in SetMsiProperty()
176 extern "C" UINT __stdcall SetProductInstallMode(MSIHANDLE handle) in SetProductInstallMode() argument
[all …]
H A Dlayerlinks.cxx52 string GetMsiProperty(MSIHANDLE handle, const string& sProperty) in GetMsiProperty() argument
58 if (MsiGetProperty(handle, sProperty.c_str(), szDummy, &nChars) == ERROR_MORE_DATA) in GetMsiProperty()
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()
79 inline void SetMsiProperty(MSIHANDLE handle, const string& sProperty, const string&) in SetMsiProperty() argument
81 MsiSetProperty(handle, sProperty.c_str(), TEXT("1")); in SetMsiProperty()
95 extern "C" UINT __stdcall CreateLayerLinks(MSIHANDLE handle) in CreateLayerLinks() argument
[all …]
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()
76 static void SetMsiProperty(MSIHANDLE handle, const std::_tstring& sProperty, const std::_tstring&) in SetMsiProperty() argument
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()
[all …]
H A Dcheckrunningoffice.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()
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
[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 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()
/trunk/main/sal/inc/rtl/
H A Dref.hxx79 inline Reference (const Reference<reference_type> & handle) in Reference() argument
80 : m_pBody (handle.m_pBody) in Reference()
115 SAL_CALL operator= (const Reference<reference_type> & handle) in operator =() argument
117 return set( handle.m_pBody ); in operator =()
194 SAL_CALL operator== (const Reference<reference_type> & handle) const in operator ==()
196 return (m_pBody == handle.m_pBody); in operator ==()
203 SAL_CALL operator!= (const Reference<reference_type> & handle) const in operator !=()
205 return (m_pBody != handle.m_pBody); in operator !=()
212 SAL_CALL operator< (const Reference<reference_type> & handle) const in operator <()
214 return (m_pBody < handle.m_pBody); in operator <()
[all …]
/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
75 if (MsiGetProperty(handle, TEXT("Quickstarterlinkname"), dummy, &sz) == ERROR_MORE_DATA) in GetQuickstarterLinkName()
81 MsiGetProperty(handle, TEXT("Quickstarterlinkname"), buff, &sz); in GetQuickstarterLinkName()
84 else if (MsiGetProperty(handle, TEXT("ProductName"), dummy, &sz) == ERROR_MORE_DATA) in GetQuickstarterLinkName()
[all …]
/trunk/main/vos/inc/vos/
H A Dref.inl47 inline ORef<T>::ORef(const ORef<T>& handle) argument
49 m_refBody= handle.m_refBody;
63 inline ORef<T>& ORef<T>::operator= (const ORef<T>& handle) argument
68 m_refBody= handle.m_refBody;
153 inline sal_Bool ORef<T>::isEqualBody(const ORef<T>& handle) const
155 return m_refBody == handle.m_refBody;
159 inline sal_Bool ORef<T>::operator== (const ORef<T>& handle) const
161 return m_refBody == handle.m_refBody;
165 inline sal_Bool ORef<T>::operator!= (const ORef<T>& handle) const
167 return m_refBody != handle.m_refBody;
[all …]
/trunk/main/framework/qa/complex/path_settings/
H A DPathSettingsTest.java470 int handle = property.Handle; in checkStringListProperty() local
475 oValue = xFPS.getFastPropertyValue(handle); in checkStringListProperty()
525 xFPS.setFastPropertyValue(handle, aNewValues); in checkStringListProperty()
529 …System.out.println(" FAIL: setFastPropertyValue(handle:=" + handle + ", name:='" + name + "')" + e… in checkStringListProperty()
536 Object oObj = xFPS.getFastPropertyValue(handle); in checkStringListProperty()
547 xFPS.setFastPropertyValue(handle, oValue); in checkStringListProperty()
571 Object checkVal3 = xFPS.getFastPropertyValue(handle); in checkStringListProperty()
580 …System.out.println(" FAIL: getFastPropertyValue(handle:=" + handle + ", name:='" + name + "')" + e… in checkStringListProperty()
591 int handle = property.Handle; in checkStringProperty() local
595 oValue = xFPS.getFastPropertyValue(handle); in checkStringProperty()
[all …]

12345678910>>...17