Lines Matching refs:pInst
820 CMtaOleClipboard* pInst = in oleThreadProc() local
822 OSL_ASSERT( NULL != pInst ); in oleThreadProc()
824 return pInst->run( ); in oleThreadProc()
833 CMtaOleClipboard* pInst = reinterpret_cast< CMtaOleClipboard* >( pParam ); in clipboardChangedNotifierThreadProc() local
834 OSL_ASSERT( NULL != pInst ); in clipboardChangedNotifierThreadProc()
840 while ( pInst->m_bRunClipboardNotifierThread ) in clipboardChangedNotifierThreadProc()
843 WaitForMultipleObjects( 2, pInst->m_hClipboardChangedNotifierEvents, false, INFINITE ); in clipboardChangedNotifierThreadProc()
845 ClearableMutexGuard aGuard( pInst->m_ClipboardChangedEventCountMutex ); in clipboardChangedNotifierThreadProc()
847 if ( pInst->m_ClipboardChangedEventCount > 0 ) in clipboardChangedNotifierThreadProc()
849 pInst->m_ClipboardChangedEventCount--; in clipboardChangedNotifierThreadProc()
850 if ( 0 == pInst->m_ClipboardChangedEventCount ) in clipboardChangedNotifierThreadProc()
851 ResetEvent( pInst->m_hClipboardChangedEvent ); in clipboardChangedNotifierThreadProc()
856 MutexGuard aClipViewerGuard( pInst->m_pfncClipViewerCallbackMutex ); in clipboardChangedNotifierThreadProc()
859 if ( pInst->m_pfncClipViewerCallback ) in clipboardChangedNotifierThreadProc()
860 pInst->m_pfncClipViewerCallback( ); in clipboardChangedNotifierThreadProc()