/aoo41x/main/sal/rtl/source/ |
H A D | alloc_impl.h | 202 #define RTL_MEMORY_LOCK_INIT(lock) pthread_mutex_init((lock), NULL) argument 203 #define RTL_MEMORY_LOCK_DESTROY(lock) pthread_mutex_destroy((lock)) argument 205 #define RTL_MEMORY_LOCK_ACQUIRE(lock) pthread_mutex_lock((lock)) argument 206 #define RTL_MEMORY_LOCK_RELEASE(lock) pthread_mutex_unlock((lock)) argument 221 #define RTL_MEMORY_LOCK_INIT(lock) InitializeCriticalSection((lock)) argument 222 #define RTL_MEMORY_LOCK_DESTROY(lock) DeleteCriticalSection((lock)) argument 224 #define RTL_MEMORY_LOCK_ACQUIRE(lock) EnterCriticalSection((lock)) argument 225 #define RTL_MEMORY_LOCK_RELEASE(lock) LeaveCriticalSection((lock)) argument
|
/aoo41x/main/configmgr/source/ |
H A D | access.cxx | 849 osl::MutexGuard g(lock); in getTypes() 898 osl::MutexGuard g(lock); in getImplementationId() 906 osl::MutexGuard g(lock); in getImplementationName() 916 osl::MutexGuard g(lock); in supportsService() 931 osl::MutexGuard g(lock); in getSupportedServiceNames() 1043 osl::MutexGuard g(lock); in removeEventListener() 1053 osl::MutexGuard g(lock); in getElementType() 1077 osl::MutexGuard g(lock); in hasElements() 1088 osl::MutexGuard g(lock); in getByName() 1102 osl::MutexGuard g(lock); in getElementNames() [all …]
|
H A D | rootaccess.cxx | 127 osl::MutexGuard g(lock); in ~RootAccess() 225 osl::MutexGuard g(lock); in queryInterface() 249 osl::MutexGuard g(lock); in addChangesListener() 272 osl::MutexGuard g(lock); in removeChangesListener() 286 osl::MutexGuard g(lock); in commitChanges() 304 osl::MutexGuard g(lock); in hasPendingChanges() 316 osl::MutexGuard g(lock); in getPendingChanges()
|
H A D | update.cxx | 103 osl::MutexGuard g(lock); in insertExtensionXcsFile() 113 osl::MutexGuard g(lock); in insertExtensionXcuFile() 128 osl::MutexGuard g(lock); in removeExtensionXcuFile() 146 osl::MutexGuard g(lock); in insertModificationXcuFile()
|
H A D | childaccess.cxx | 167 osl::MutexGuard g(lock); in getParent() 176 osl::MutexGuard g(lock); in setParent() 188 osl::MutexGuard g(lock); in getSomething() 358 osl::MutexGuard g(lock); in ~ChildAccess() 388 osl::MutexGuard g(lock); in queryInterface()
|
/aoo41x/main/offapi/com/sun/star/ucb/ |
H A D | Lock.idl | 38 /** defines a lock. 43 /** defines the lock's depth. 48 /** the owner of the lock. 53 owns the lock. 58 /** a timeout value for the lock. 61 of the lock and the automatic removal of that lock. The value 63 stands for an infinit lock, that will never be removed automatically. 68 /** the lock tokens. 70 <p>Each lock token is a URI.
|
H A D | LockType.idl | 32 /** specifies the access type of a lock. 39 /** specifies a write lock. 44 // /** read lock. 49 // /** readwrite lock.
|
H A D | InteractiveLockingLockedException.idl | 43 /** The owner of the lock. 45 <true/>, the lock has been obtained by this OpenOffice session. 46 <false/> the lock has been obtained by another principal. 50 /** The owner of the lock.
|
/aoo41x/main/jurt/test/com/sun/star/lib/uno/environments/remote/ |
H A D | JobQueue_Test.java | 220 synchronized (lock) { in run() 222 lock.notifyAll(); in run() 232 synchronized (lock) { in run() 234 lock.notifyAll(); in run() 240 synchronized (lock) { in waitToStart() 242 lock.wait(); in waitToStart() 248 synchronized (lock) { in waitToTerminate() 250 lock.wait(); in waitToTerminate() 258 private final Object lock = new Object(); field in JobQueue_Test.TestThread
|
/aoo41x/main/sd/source/ui/view/ |
H A D | Outliner.cxx | 283 ::boost::shared_ptr<ViewShell> pViewShell (mpWeakViewShell.lock()); in PrepareSpelling() 328 ::boost::shared_ptr<ViewShell> pViewShell (mpWeakViewShell.lock()); in EndSpelling() 392 ::boost::shared_ptr<ViewShell> pViewShell (mpWeakViewShell.lock()); in SpellNextDocument() 509 ::boost::shared_ptr<ViewShell> pViewShell (mpWeakViewShell.lock()); in StartSearchAndReplace() 632 ::boost::shared_ptr<ViewShell> pViewShell (mpWeakViewShell.lock()); in SearchAndReplaceAll() 687 ::boost::shared_ptr<ViewShell> pViewShell (mpWeakViewShell.lock()); in SearchAndReplaceOnce() 777 ::boost::shared_ptr<ViewShell> pViewShell (mpWeakViewShell.lock()); in DetectChange() 875 ::boost::shared_ptr<ViewShell> pViewShell (mpWeakViewShell.lock()); in RememberStartPosition() 934 ::boost::shared_ptr<ViewShell> pViewShell (mpWeakViewShell.lock()); in RestoreStartPosition() 1062 ::boost::shared_ptr<ViewShell> pViewShell (mpWeakViewShell.lock()); in EndOfSearch() [all …]
|
/aoo41x/main/scripting/java/org/openoffice/netbeans/modules/office/loader/ |
H A D | ParcelContentsFolder.java | 107 FileLock lock = null; 113 lock = fo.lock(); 114 if (lock != null) { 115 fo.rename(lock, fo.getName(), fo.getExt()); 127 if (lock != null) { 128 lock.releaseLock();
|
/aoo41x/main/vcl/unx/generic/app/ |
H A D | sm.cxx | 167 static void lock(); 439 ICEConnectionObserver::lock(); in saveDone() 459 ICEConnectionObserver::lock(); in open() 523 ICEConnectionObserver::lock(); in close() 539 ICEConnectionObserver::lock(); in queryInteraction() 551 ICEConnectionObserver::lock(); in interactionDone() 590 void ICEConnectionObserver::lock() in lock() function in ICEConnectionObserver 623 lock(); in deactivate() 661 ICEConnectionObserver::lock(); in ICEConnectionWorker() 687 ICEConnectionObserver::lock(); in ICEConnectionWorker()
|
/aoo41x/main/sal/qa/osl/mutex/ |
H A D | osl_Mutex.cxx | 105 Mutex lock; member 124 pResource->lock.acquire( ); in run() 132 pResource->lock.release(); in run() 152 pResource->lock.acquire( ); in run() 160 pResource->lock.release(); in run() 169 Mutex lock; member 191 pChain->lock.acquire( ); in run() 207 pChain->lock.release(); in run()
|
/aoo41x/main/offapi/com/sun/star/util/ |
H A D | XLockable.idl | 37 <p><code>lock</code> and <code>unlock</code> calls can be nested. However, they must be in 38 …pairs. As long as there has been one more call to <code>lock</code> than to <code>unlock</code>, t… 48 void lock(); 55 @see lock 64 @see lock
|
/aoo41x/main/sal/osl/w32/ |
H A D | file.cxx | 753 FileHandle_Impl::Guard lock (&(pImpl->m_mutex)); in osl_syncFile() local 899 FileHandle_Impl::Guard lock (&(pImpl->m_mutex)); in osl_readLine() local 920 FileHandle_Impl::Guard lock (&(pImpl->m_mutex)); in osl_readFile() local 942 FileHandle_Impl::Guard lock (&(pImpl->m_mutex)); in osl_writeFile() local 972 FileHandle_Impl::Guard lock (&(pImpl->m_mutex)); in osl_readFileAt() local 998 FileHandle_Impl::Guard lock (&(pImpl->m_mutex)); in osl_writeFileAt() local 1011 FileHandle_Impl::Guard lock (&(pImpl->m_mutex)); in osl_isEndOfFile() local 1024 FileHandle_Impl::Guard lock (&(pImpl->m_mutex)); in osl_getFilePos() local 1042 FileHandle_Impl::Guard lock (&(pImpl->m_mutex)); in osl_setFilePos() local 1082 FileHandle_Impl::Guard lock (&(pImpl->m_mutex)); in osl_getFileSize() local [all …]
|
/aoo41x/main/framework/source/helper/ |
H A D | statusindicatorfactory.cxx | 463 aReadLock.lock(); in impl_createProgress() 485 xLayoutManager->lock(); in impl_createProgress() 500 aWriteLock.lock(); in impl_createProgress() 514 aReadLock.lock(); in impl_showProgress() 544 aWriteLock.lock(); in impl_showProgress() 559 aReadLock.lock(); in impl_hideProgress() 612 aGlobalLock.lock(); in impl_reschedule()
|
/aoo41x/main/sal/osl/unx/ |
H A D | file.cxx | 1006 FileHandle_Impl::Guard lock (&(pImpl->m_mutex)); in osl_syncFile() local 1140 FileHandle_Impl::Guard lock (&(pImpl->m_mutex)); in osl_readLine() local 1169 FileHandle_Impl::Guard lock (&(pImpl->m_mutex)); in osl_readFile() local 1200 FileHandle_Impl::Guard lock (&(pImpl->m_mutex)); in osl_writeFile() local 1237 FileHandle_Impl::Guard lock (&(pImpl->m_mutex)); in osl_readFileAt() local 1272 FileHandle_Impl::Guard lock (&(pImpl->m_mutex)); in osl_writeFileAt() local 1287 FileHandle_Impl::Guard lock (&(pImpl->m_mutex)); in osl_isEndOfFile() local 1303 FileHandle_Impl::Guard lock (&(pImpl->m_mutex)); in osl_getFilePos() local 1324 FileHandle_Impl::Guard lock (&(pImpl->m_mutex)); in osl_setFilePos() local 1366 FileHandle_Impl::Guard lock (&(pImpl->m_mutex)); in osl_getFileSize() local
|
/aoo41x/main/offapi/com/sun/star/frame/ |
H A D | LayoutManagerEvents.idl | 44 /** specifies that the layout manager processed a lock call, which 48 This event sends the current lock count as additional 56 admit layouts when the lock count is zero. 59 This event sends the current lock count as additional
|
H A D | XModel.idl | 158 there is at least one lock remaining, some notifications 172 there is at least one lock remaining, some notifications for 179 /** determines if there is at least one lock remaining. 182 While there is at least one lock remaining, some notifications 187 <TRUE/> if any lock exist
|
/aoo41x/main/setup_native/scripts/ |
H A D | install_solaris.sh | 91 if [ -f /tmp/.ai.pkg.zone.lock-afdb66cf-1dd1-11b2-a049-000d560ddc3e ] 97 ls -l /tmp/.ai.pkg.zone.lock-afdb66cf-1dd1-11b2-a049-000d560ddc3e 342 rm -f /tmp/.ai.pkg.zone.lock* 347 rm -f ${LOCAL_TMP}/.ai.pkg.zone.lock*
|
/aoo41x/main/framework/inc/threadhelp/ |
H A D | readguard.hxx | 101 lock(); in ReadGuard() 109 lock(); in ReadGuard() 139 inline void lock() in lock() function in framework::ReadGuard
|
H A D | resetableguard.hxx | 101 lock(); in ResetableGuard() 109 lock(); in ResetableGuard() 146 inline void lock() in lock() function in framework::ResetableGuard
|
H A D | writeguard.hxx | 99 lock(); in WriteGuard() 107 lock(); in WriteGuard() 137 inline void lock() in lock() function in framework::WriteGuard
|
/aoo41x/main/slideshow/source/engine/ |
H A D | sp_debug.cxx | 180 mutex_type::scoped_lock lock(get_mutex()); in find_unreachable_objects() local 229 mutex_type::scoped_lock lock(get_mutex()); in free_unreachable_objects() local 261 mutex_type::scoped_lock lock(get_mutex()); in sp_scalar_constructor_hook() local 276 mutex_type::scoped_lock lock(get_mutex()); in sp_scalar_destructor_hook() local
|
/aoo41x/main/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/nativelib/unix/ |
H A D | nativeview.c | 63 jint lock ; in Java_NativeView_getNativeWindow() local 81 lock = ds->Lock(ds); in Java_NativeView_getNativeWindow() 82 MY_ASSERT((lock & JAWT_LOCK_ERROR)==0,"can't lock the drawing surface"); in Java_NativeView_getNativeWindow()
|