Home
last modified time | relevance | path

Searched refs:handle (Results 26 – 50 of 405) sorted by relevance

12345678910>>...17

/trunk/main/setup_native/source/win32/customactions/shellextensions/
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()
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 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 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()
/trunk/main/sane/inc/
H A Dsane.h224 SANE_Handle * handle);
225 extern void sane_close (SANE_Handle handle);
227 sane_get_option_descriptor (SANE_Handle handle, SANE_Int option);
228 extern SANE_Status sane_control_option (SANE_Handle handle, SANE_Int option,
231 extern SANE_Status sane_get_parameters (SANE_Handle handle,
233 extern SANE_Status sane_start (SANE_Handle handle);
234 extern SANE_Status sane_read (SANE_Handle handle, SANE_Byte * data,
236 extern void sane_cancel (SANE_Handle handle);
237 extern SANE_Status sane_set_io_mode (SANE_Handle handle,
239 extern SANE_Status sane_get_select_fd (SANE_Handle handle,
/trunk/main/dtrans/source/os2/clipb/
H A DOs2Transferable.cxx56 ULONG handle = UWinQueryClipbrdData( hAB, UCLIP_CF_UNICODETEXT); in Os2Transferable() local
57 if (handle) { in Os2Transferable()
62 handle = UWinQueryClipbrdData( hAB, UCLIP_CF_BITMAP); in Os2Transferable()
63 if (handle) { in Os2Transferable()
118 ULONG handle = UWinQueryClipbrdData( hAB, UCLIP_CF_BITMAP); in getTransferData() local
119 if (handle) { in getTransferData()
122 if (OS2HandleToOOoBmp( handle, &winDIBStream)) in getTransferData()
125 handle = 0; in getTransferData()
128 if (handle) in getTransferData()
H A DOs2Clipboard.cxx185 ULONG handle = UWinQueryClipbrdData( hAB, UCLIP_CF_UNICODETEXT); in getContents() local
186 if (handle) { in getContents()
187 if (handle != hText) { in getContents()
188 hText = handle; in getContents()
192 handle = UWinQueryClipbrdData( hAB, UCLIP_CF_BITMAP); in getContents()
193 if (handle) { in getContents()
194 if (handle != hBitmap) { in getContents()
195 hBitmap = handle; in getContents()
/trunk/main/shell/source/unix/misc/
H A Dgnome-open-url.c52 void* handle = dlopen("libglib-2.0.so.0", RTLD_LAZY); in gnome_gconf_get_gnome_libs_settings_relative() local
56 if( NULL != handle ) in gnome_gconf_get_gnome_libs_settings_relative()
58 gchar* (* g_strdup)(const gchar*) = (gchar* (*)(const gchar*)) dlsym(handle, "g_strdup"); in gnome_gconf_get_gnome_libs_settings_relative()
73 void* handle = dlopen("libgnomevfs-2.so.0", RTLD_LAZY); in gnome_url_show() local
78 if( NULL != handle ) in gnome_url_show()
81 (gboolean (*) (void)) dlsym(handle, "gnome_vfs_init"); in gnome_url_show()
86 (GnomeVFSResult (*) (const char *)) dlsym(handle, "gnome_vfs_url_show"); in gnome_url_show()
92 dlclose(handle); in gnome_url_show()
/trunk/main/registry/inc/registry/
H A Dwriter.h86 REGISTRY_DLLPUBLIC void SAL_CALL typereg_writer_destroy(void * handle) SAL_THROW_EXTERN_C();
104 void * handle, sal_uInt16 index, rtl_uString const * typeName)
134 void * handle, sal_uInt16 index, rtl_uString const * documentation,
165 void * handle, sal_uInt16 index, rtl_uString const * documentation,
194 void * handle, sal_uInt16 methodIndex, sal_uInt16 parameterIndex,
217 void * handle, sal_uInt16 methodIndex, sal_uInt16 exceptionIndex,
243 void * handle, sal_uInt16 index, rtl_uString const * documentation,
259 REGISTRY_DLLPUBLIC void const * SAL_CALL typereg_writer_getBlob(void * handle, sal_uInt32 * size)
/trunk/main/sal/rtl/source/
H A Dbootstrap.cxx368 oslFileHandle handle; in Bootstrap_Impl() local
397 osl_closeFile(handle); in Bootstrap_Impl()
691 rtlBootstrapHandle handle in rtl_bootstrap_args_close() argument
694 if (handle == 0) in rtl_bootstrap_args_close()
728 rtlBootstrapHandle handle, in rtl_bootstrap_get_from_handle() argument
739 if (handle == 0) in rtl_bootstrap_get_from_handle()
751 rtlBootstrapHandle handle, in rtl_bootstrap_get_iniName_from_handle() argument
757 if(handle) in rtl_bootstrap_get_iniName_from_handle()
830 rtlBootstrapHandle handle, in rtl_bootstrap_expandMacros_from_handle() argument
834 if (handle == NULL) { in rtl_bootstrap_expandMacros_from_handle()
[all …]
/trunk/main/tools/inc/tools/
H A Dweakbase.hxx104 …ool WeakReference< reference_type >::operator==(const WeakReference<reference_type> & handle) const in operator ==()
106 return mpWeakConnection == handle.mpWeakConnection; in operator ==()
110 …ool WeakReference< reference_type >::operator!=(const WeakReference<reference_type> & handle) const in operator !=()
112 return mpWeakConnection != handle.mpWeakConnection; in operator !=()
116 …Bool WeakReference< reference_type >::operator<(const WeakReference<reference_type> & handle) const in operator <()
118 return mpWeakConnection->mpReference < handle.mpWeakConnection->mpReference; in operator <()
122 …Bool WeakReference< reference_type >::operator>(const WeakReference<reference_type> & handle) const in operator >()
124 return mpWeakConnection->mpReference > handle.mpWeakConnection->mpReference; in operator >()
/trunk/main/setup_native/source/win32/customactions/reg4msdoc/
H A Dregister.hxx51 void Register4MsDoc(MSIHANDLE handle, int Register);
53 void Unregister4MsDoc(MSIHANDLE handle, int Unregister);
57 void Unregister4MsDocAll(MSIHANDLE handle);
61 void RepairRegister4MsDocSettings(MSIHANDLE handle);
64 bool IsRegisteredFor(MSIHANDLE handle, int State);
70 MSIHANDLE handle, int Register);
78 int FixReturnRegistrationState(MSIHANDLE handle);
/trunk/main/connectivity/java/dbtools/src/org/apache/openoffice/comp/sdbc/dbtools/comphelper/
H A DPropertySetAdapter.java137 public void registerProperty(String propertyName, int handle, Type type, short attributes, in registerProperty() argument
139 Property property = new Property(propertyName, handle, type, attributes); in registerProperty()
147 int handle; in registerProperty() local
149 handle = nextHandle.getAndIncrement(); in registerProperty()
150 registerProperty(propertyName, handle, type, attributes, getter, setter); in registerProperty()
189 private PropertyData getPropertyData(int handle) throws UnknownPropertyException { in getPropertyData() argument
190 PropertyData propertyData = propertiesByHandle.get(handle); in getPropertyData()
192 throw new UnknownPropertyException(Integer.toString(handle)); in getPropertyData()
223 PropertyData propertyData = getPropertyData(handle); in getFastPropertyValue()
271 public void setFastPropertyValue(int handle, Object value) in setFastPropertyValue() argument
[all …]
H A DPropertySet.java53 …public void registerProperty(String propertyName, int handle, Type type, short attributes, Propert… in registerProperty() argument
54 impl.registerProperty(propertyName, handle, type, attributes, getter, setter); in registerProperty()
94 …public synchronized Object getFastPropertyValue(int handle) throws UnknownPropertyException, Wrapp… in getFastPropertyValue() argument
96 return impl.getFastPropertyValue(handle); in getFastPropertyValue()
133 public synchronized void setFastPropertyValue(int handle, Object value) in setFastPropertyValue() argument
136 impl.setFastPropertyValue(handle, value); in setFastPropertyValue()
/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/vos/inc/vos/
H A Dref.hxx73 ORef(const ORef<T>& handle);
83 ORef<T>& SAL_CALL operator= (const ORef<T>& handle);
144 sal_Bool SAL_CALL isEqualBody(const ORef<T>& handle) const;
148 sal_Bool SAL_CALL operator== (const ORef<T>& handle) const;
152 sal_Bool SAL_CALL operator!= (const ORef<T>& handle) const;
161 sal_Bool SAL_CALL operator< (const ORef<T>& handle) const;
166 sal_Bool SAL_CALL operator> (const ORef<T>& handle) const;
/trunk/main/setup_native/source/win32/customactions/languagepacks/
H A Dlngpckinsthelper.cxx109 UINT GetInstallProperty(MSIHANDLE handle, LPCTSTR name, CharacterBuffer_t* buffer) in GetInstallProperty() argument
112 UINT ret = MsiGetProperty(handle, name, &(*buffer)[0], &size); in GetInstallProperty()
118 ret = MsiGetProperty(handle, name, &(*buffer)[0], &size); in GetInstallProperty()
132 extern "C" UINT __stdcall SetProductInstallationPath(MSIHANDLE handle) in SetProductInstallationPath() argument
140 GetInstallProperty(handle, TEXT("REGKEYPRODPATH"), &regKeyProdPath); in SetProductInstallationPath()
148 MsiSetProperty(handle, TEXT("INSTALLLOCATION"), path.c_str()); in SetProductInstallationPath()
171 extern "C" UINT __stdcall RegisterLanguagePack(MSIHANDLE handle) in RegisterLanguagePack() argument
176 GetInstallProperty(handle, TEXT("INSTALLLOCATION"), &productPath); in RegisterLanguagePack()
/trunk/main/basic/source/runtime/
H A Ddllmgr.cxx585 FARPROC p = GetProcAddress(handle, reinterpret_cast< LPCSTR >(n)); in getProcData()
598 FARPROC p = GetProcAddress(handle, name8.getStr()); in getProcData()
607 p = GetProcAddress(handle, name8.getStr()); in getProcData()
616 p = GetProcAddress(handle, real.getStr()); in getProcData()
623 p = GetProcAddress(handle, real.getStr()); in getProcData()
640 Dll(): handle(0) {} in Dll()
644 HMODULE handle; member
649 if (handle != 0 && !FreeLibrary(handle)) { in ~Dll()
650 OSL_TRACE("FreeLibrary(%p) failed with %u", handle, GetLastError()); in ~Dll()
660 SbError e = getProcData(handle, name, proc); in getProc()
[all …]
/trunk/main/cppuhelper/qa/propertysetmixin/
H A DJavaSupplier.java152 public void setFastPropertyValue(int handle, Object value) in setFastPropertyValue() argument
156 prop.setFastPropertyValue(handle, value); in setFastPropertyValue()
159 public Object getFastPropertyValue(int handle) in getFastPropertyValue() argument
162 return prop.getFastPropertyValue(handle); in getFastPropertyValue()
280 public void setFastPropertyValue(int handle, Object value) in setFastPropertyValue() argument
284 prop.setFastPropertyValue(handle, value); in setFastPropertyValue()
287 public Object getFastPropertyValue(int handle) in getFastPropertyValue() argument
290 return prop.getFastPropertyValue(handle); in getFastPropertyValue()
/trunk/main/registry/source/
H A Dreflwrit.cxx1254 static_cast< TypeWriter * >(handle)->m_fields[index].setData( in typereg_writer_setFieldData()
1287 static_cast< TypeWriter * >(handle)->m_methods[index].setData( in typereg_writer_setMethodData()
1310 void * handle, sal_uInt16 methodIndex, sal_uInt16 parameterIndex, in typereg_writer_setMethodParameterData() argument
1315 static_cast< TypeWriter * >(handle)-> in typereg_writer_setMethodParameterData()
1336 void * handle, sal_uInt16 methodIndex, sal_uInt16 exceptionIndex, in typereg_writer_setMethodExceptionTypeName() argument
1357 void const * typereg_writer_getBlob(void * handle, sal_uInt32 * size) in typereg_writer_getBlob() argument
1360 TypeWriter * writer = static_cast< TypeWriter * >(handle); in typereg_writer_getBlob()
1427 void typereg_writer_destroy(void * handle) SAL_THROW_EXTERN_C() { in typereg_writer_destroy() argument
1428 delete static_cast< TypeWriter * >(handle); in typereg_writer_destroy()
1432 void * handle, sal_uInt16 index, rtl_uString const * typeName) in typereg_writer_setSuperTypeName() argument
[all …]
/trunk/main/extensions/source/mozbootstrap/
H A DMNSINIParser.cxx38 oslFileHandle handle=NULL; in IniParser() local
42 fileError = osl_openFile(iniUrl.pData, &handle, osl_File_OpenFlag_Read); in IniParser()
57 osl_getFileSize(handle, &nSize); in IniParser()
62 if (osl_File_E_None != osl_getFilePos(handle, &nPos) || nPos >= nSize) in IniParser()
64 if (osl_File_E_None != osl_readLine(handle , (sal_Sequence **) &seq)) in IniParser()
96 osl_closeFile(handle); in IniParser()
/trunk/main/cli_ure/source/native/
H A Dnative_share.h72 ::System::Runtime::InteropServices::GCHandle handle( in to_cli()
74 ::System::Object * ret = handle.get_Target(); in to_cli()
75 handle.Free(); in to_cli()
94 ::System::Runtime::InteropServices::GCHandle handle( in to_uno()
100 ::System::Runtime::InteropServices::GCHandle::op_Explicit( handle ) in to_uno()
111 handle.Free(); in to_uno()
/trunk/main/writerfilter/documentation/
H A DtablesInDoc.txt49 // get handle for start of cell i
51 // get handle for end off cell i
82 handle for current paragraph
88 handle remaining TableData<Handle> on stack
94 handle TableData<Handle> on top of stack
99 handle TableData<Handle> on top of stack
117 handle top of stack
/trunk/main/connectivity/workben/iniParser/
H A Dmain.cxx87 oslFileHandle handle=NULL; in IniParser() local
89 osl_File_E_None == osl_openFile(iniUrl.pData, &handle, osl_File_OpenFlag_Read)) in IniParser()
94 osl_getFileSize(handle, &nSize); in IniParser()
99 if (osl_File_E_None != osl_getFilePos(handle, &nPos) || nPos >= nSize) in IniParser()
101 if (osl_File_E_None != osl_readLine(handle , (sal_Sequence **) &seq)) in IniParser()
133 osl_closeFile(handle); in IniParser()

Completed in 127 milliseconds

12345678910>>...17