Home
last modified time | relevance | path

Searched refs:handle (Results 51 – 75 of 405) sorted by relevance

12345678910>>...17

/trunk/main/tools/inc/tools/
H A Dweakbase.h110 inline sal_Bool operator== (const WeakReference<reference_type> & handle) const;
113 inline sal_Bool operator!= (const WeakReference<reference_type> & handle) const;
116 inline sal_Bool operator< (const WeakReference<reference_type> & handle) const;
119 inline sal_Bool operator> (const WeakReference<reference_type> & handle) const;
122 inline WeakReference<reference_type>& operator= (const WeakReference<reference_type> & handle);
/trunk/main/desktop/source/deployment/manager/
H A Ddp_commandenvironments.cxx81 void BaseCommandEnv::handle( in handle() function in dp_manager::BaseCommandEnv
94 m_forwardHandler->handle(xRequest); in handle_()
158 void TmpRepositoryCommandEnv::handle( in handle() function in dp_manager::TmpRepositoryCommandEnv
192 void LicenseCommandEnv::handle( in handle() function in dp_manager::LicenseCommandEnv
231 void NoLicenseCommandEnv::handle( in handle() function in dp_manager::NoLicenseCommandEnv
260 void SilentCheckPrerequisitesCommandEnv::handle( in handle() function in dp_manager::SilentCheckPrerequisitesCommandEnv
H A Ddp_commandenvironments.hxx68 virtual void SAL_CALL handle(
87 virtual void SAL_CALL handle(
110 virtual void SAL_CALL handle(
128 virtual void SAL_CALL handle(
147 virtual void SAL_CALL handle(
/trunk/main/sal/osl/os2/
H A Dpipeimpl.h50 #define IsValidHandle( handle ) ((DWORD)(handle) + 1 > 1) argument
54 inline bool IsValidHandle( HANDLE handle ) in IsValidHandle() argument
56 return INVALID_HANDLE_VALUE != handle && NULL != handle; in IsValidHandle()
/trunk/main/sal/osl/w32/
H A Dpipeimpl.h56 #define IsValidHandle( handle ) ((DWORD)(handle) + 1 > 1) argument
60 inline bool IsValidHandle( HANDLE handle ) in IsValidHandle() argument
62 return INVALID_HANDLE_VALUE != handle && NULL != handle; in IsValidHandle()
/trunk/main/setup_native/source/win32/customactions/shellextensions/
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 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()
/trunk/main/ucbhelper/source/provider/
H A Dhandleinteractionrequest.cxx53 handle(uno::Reference< task::XInteractionRequest > const & rRequest, in handle() function
63 xHandler->handle(rRequest.get()); in handle()
77 handle(rRequest.get(), rEnvironment); in handleInteractionRequest()
102 handle(rRequest.get(), rEnvironment); in handleInteractionRequest()
142 handle(rRequest.get(), rEnvironment); in handleInteractionRequest()
/trunk/main/vcl/qa/complex/persistent_window_states/
H A DPersistentWindowTest.java164 DocumentHandle handle = loadDocument(getMSF(), settings[0]); in checkPersistentWindowState() local
167 Rectangle rect1 = handle.getDocumentPosSize(); in checkPersistentWindowState()
170 handle.resizeDocument(); in checkPersistentWindowState()
172 Rectangle rect2 = handle.getDocumentPosSize(); in checkPersistentWindowState()
185 handle = loadDocument(getMSF(), settings[0]); in checkPersistentWindowState()
187 Rectangle newRect = handle.getDocumentPosSize(); in checkPersistentWindowState()
/trunk/main/ucb/source/ucp/gvfs/
H A Dgvfs_content.cxx975 GnomeVFSHandle *handle = NULL; in insert() local
981 result = gnome_vfs_open( &handle, aURI.getStr(), in insert()
1000 result = gnome_vfs_close( handle ); in insert()
1006 new gvfs::Stream( handle, &m_info ); in insert()
1439 GnomeVFSHandle *handle = NULL; in createTempStream() local
1467 GnomeVFSHandle *handle = NULL; in createInputStream() local
1480 result = gnome_vfs_open( &handle, aURI.getStr(), in createInputStream()
1493 gnome_vfs_close( handle ); in createInputStream()
1500 if (handle != NULL) in createInputStream()
1501 xIn = new ::gvfs::Stream( handle, &m_info ); in createInputStream()
[all …]
/trunk/main/sal/inc/rtl/
H A Dbootstrap.h172 void SAL_CALL rtl_bootstrap_args_close(rtlBootstrapHandle handle)
183 sal_Bool SAL_CALL rtl_bootstrap_get_from_handle(rtlBootstrapHandle handle, rtl_uString *pName, rtl_…
191 void SAL_CALL rtl_bootstrap_get_iniName_from_handle(rtlBootstrapHandle handle, rtl_uString ** ppIni…
200 rtlBootstrapHandle handle, rtl_uString ** macro )
/trunk/main/shell/source/win32/sysmail/
H A Dsysmailprov.cxx59 HMODULE handle = LoadLibrary("mapi32.dll"); in queryMailClient() local
60 if ((handle != INVALID_HANDLE_VALUE) && (handle != NULL)) { in queryMailClient()
62 FreeLibrary(handle); in queryMailClient()
/trunk/main/jurt/java/jurt/src/main/java/com/sun/star/lib/uno/environments/remote/
H A DJavaThreadPool.java70 public void detach( Object handle, ThreadId id ) in detach() argument
72 ((JobQueue)handle).release(); in detach()
86 public Object enter( Object handle, ThreadId threadId ) throws Throwable { in enter() argument
87 return ((JobQueue)handle).enter(this); in enter()
/trunk/main/javaunohelper/com/sun/star/lib/uno/helper/
H A DPropertySetMixin.java465 public void setFastPropertyValue(int handle, Object value) in setFastPropertyValue() argument
469 setProperty(translateHandle(handle), value, false, false, (short) 1); in setFastPropertyValue()
476 public Object getFastPropertyValue(int handle) in getFastPropertyValue() argument
479 return getProperty(translateHandle(handle), null); in getFastPropertyValue()
711 private String translateHandle(int handle) throws UnknownPropertyException { in translateHandle() argument
712 if (handle < 0 || handle >= handleMap.length) { in translateHandle()
713 throw new UnknownPropertyException("bad handle " + handle, object); in translateHandle()
715 return handleMap[handle]; in translateHandle()
/trunk/main/vcl/unx/gtk/app/
H A Dgtkdata.cxx549 YieldFunc handle );
906 YieldFunc handle; member
945 watch->handle (watch->pollfd.fd, watch->user_data); in sal_source_dispatch()
970 YieldFunc handle, in sal_source_create_watch() argument
985 watch->handle = handle; in sal_source_create_watch()
1001 YieldFunc handle ) in Insert() argument
1006 pending, handle, data ); in Insert()
/trunk/main/ucb/source/ucp/ftp/
H A Dftpurl.cxx421 CURL *curl = m_pFCP->handle(); in open()
455 CURL *curl = m_pFCP->handle(); in list()
540 CURL *curl = m_pFCP->handle(); in net_title()
677 CURL *curl = m_pFCP->handle(); in insert()
729 CURL *curl = m_pFCP->handle(); in mkdir()
752 CURL *curl = m_pFCP->handle(); in ren()
819 CURL *curl = m_pFCP->handle(); in del()
/trunk/main/desktop/source/app/
H A Dofficeipcthread.cxx227 rtlDigest handle = rtl_digest_create( rtl_Digest_AlgorithmMD5 ); in CreateMD5FromString() local
228 if ( handle != NULL ) in CreateMD5FromString()
232 sal_uInt32 nMD5KeyLen = rtl_digest_queryLength( handle ); in CreateMD5FromString()
235 rtl_digest_init( handle, pData, nSize ); in CreateMD5FromString()
236 rtl_digest_update( handle, pData, nSize ); in CreateMD5FromString()
237 rtl_digest_get( handle, pMD5KeyBuffer, nMD5KeyLen ); in CreateMD5FromString()
238 rtl_digest_destroy( handle ); in CreateMD5FromString()
/trunk/main/setup_native/source/win32/customactions/quickstarter/
H A Dquickstarter.hxx36 std::string GetOfficeInstallationPath(MSIHANDLE handle);
37 std::string GetOfficeProductName(MSIHANDLE handle);
38 std::string GetQuickstarterLinkName(MSIHANDLE handle);
/trunk/main/vcl/unx/generic/app/
H A Dsaldata.cxx586 YieldFunc handle; // handle pending events member
590 inline void HandleNextEvent() const { handle( fd, data ); } in HandleNextEvent()
600 YieldFunc handle ) in Insert() argument
609 yieldTable[nFD].handle = handle; in Insert()
/trunk/main/solenv/bin/
H A Dmacosx-dylib-link-list.pl42 sub handle($$) subroutine
62 handle($1, $loc) if defined $loc && otoolD($loc) =~ m'^(@.+/.+)\n$';
77 handle($full, $loc) unless defined $done{$full};
/trunk/main/sal/inc/systools/win32/
H A Duwinapi.h107 inline bool IsValidHandle(HANDLE handle) in IsValidHandle() argument
109 return handle != INVALID_HANDLE_VALUE && handle != NULL; in IsValidHandle()
/trunk/main/odk/examples/DevelopersGuide/Forms/
H A DComponentTreeTraversal.java33 public abstract void handle( Object aFormComponent ) throws java.lang.Exception; in handle() method
66 public void handle( Object aFormComponent ) throws com.sun.star.uno.Exception in handle() method in ComponentTreeTraversal
75 handle( xCont.getByIndex( i ) ); in handle()
H A DDataAwareness.java65 public void handle( Object aFormComponent ) throws com.sun.star.uno.Exception in handle() method in PrintComponentTree
92 super.handle( aFormComponent ); in handle()
109 public void handle( Object aFormComponent ) throws com.sun.star.uno.Exception in handle() method in RevokeButtons
127 super.handle( aFormComponent ); in handle()
184 aPrinter.handle( xContainer ); in enumFormComponents()
891 aRevoke.handle( m_document.getFormComponentTreeRoot( ) ); in cleanUp()
/trunk/main/offapi/com/sun/star/rendering/
H A DXCanvas.idl239 @return a handle to the cached rendering output.
272 @return a handle to the cached rendering output.
310 @return a handle to the cached rendering output.
358 @return a handle to the cached rendering output.
421 @return a handle to the cached rendering output.
451 @return a handle to the cached rendering output.
491 @return a handle to the cached rendering output.
605 @return a handle to the cached rendering output.
637 @return a handle to the cached rendering output.
666 @return a handle to the cached rendering output.
[all …]
/trunk/main/cppuhelper/source/
H A Dpropertysetmixin.cxx440 sal_Int32 handle) const;
531 sal_Int32 handle) const in translateHandle()
533 if (handle < 0 || handle >= handleMap.getLength()) { in translateHandle()
536 + rtl::OUString::valueOf(handle)), in translateHandle()
539 return handleMap[handle]; in translateHandle()
1322 sal_Int32 handle, css::uno::Any const & value) in setFastPropertyValue() argument
1332 static_cast< css::beans::XPropertySet * >(this), handle), in setFastPropertyValue()
1341 css::uno::Any PropertySetMixinImpl::getFastPropertyValue(sal_Int32 handle) in getFastPropertyValue() argument
1350 static_cast< css::beans::XPropertySet * >(this), handle), in getFastPropertyValue()

Completed in 151 milliseconds

12345678910>>...17