Symbol: LockWithTimeout
headers/build/os/support/Locker.h
23
status_t LockWithTimeout(bigtime_t timeout);
headers/os/app/Looper.h
78
status_t LockWithTimeout(bigtime_t timeout);
headers/os/support/Locker.h
23
status_t LockWithTimeout(bigtime_t timeout);
src/add-ons/media/media-add-ons/mixer/MixerCore.cpp
492
while (!LockWithTimeout(10000)) {
src/add-ons/media/media-add-ons/mixer/MixerCore.cpp
554
if (!LockWithTimeout(10000)) {
src/add-ons/media/media-add-ons/mixer/MixerCore.h
137
return fLocker->LockWithTimeout(timeout) == B_OK;
src/add-ons/media/media-add-ons/mixer/MixerCore.h
58
bool LockWithTimeout(bigtime_t timeout);
src/add-ons/media/media-add-ons/mixer/MixerSettings.cpp
550
if (B_OK != fLocker->LockWithTimeout(200000))
src/apps/autoraise/AutoRaiseIcon.cpp
439
if (!l || l->LockWithTimeout(500000) != B_OK)
src/apps/cortex/NodeManager/NodeGroup.cpp
877
status_t err = m_lock.LockWithTimeout(timeout);
src/apps/cortex/NodeManager/NodeManager.cpp
1571
status_t err = LockWithTimeout(timeout);
src/apps/cortex/support/SimpleLockable.h
62
return m_lock.LockWithTimeout(timeout) == B_OK;
src/apps/deskbar/ExpandoMenuBar.cpp
965
if (teamMenu->Window()->LockWithTimeout(50000) == B_OK) {
src/apps/haikudepot/process/ProcessCoordinator.cpp
346
if (fLock.LockWithTimeout(LOCK_TIMEOUT_MICROS) != B_OK) {
src/apps/haikudepot/ui/MainWindow.cpp
1731
if (fScreenshotWindow->LockWithTimeout(1000) != B_OK)
src/apps/mediaplayer/Controller.cpp
373
if (LockWithTimeout(5000) != B_OK)
src/apps/mediaplayer/media_node_framework/video/VideoConsumer.cpp
605
if (fManager->LockWithTimeout(10000) == B_OK) {
src/apps/mediaplayer/media_node_framework/video/VideoProducer.cpp
642
status_t err = fManager->LockWithTimeout(10000);
src/apps/mediaplayer/supplier/ProxyAudioSupplier.cpp
100
status_t error = fPlaybackManager->LockWithTimeout(10000);
src/apps/soundrecorder/ScopeView.cpp
209
if (Window()->LockWithTimeout(5000) == B_OK) {
src/apps/soundrecorder/VUView.cpp
170
if (Window()->LockWithTimeout(5000) == B_OK) {
src/bin/mail_utils/spamdbm.cpp
7045
if (MyAppPntr->LockWithTimeout (100000) != B_OK)
src/bin/mail_utils/spamdbm.cpp
7371
if (MyAppPntr == NULL || MyAppPntr->LockWithTimeout (100000) != B_OK)
src/bin/mail_utils/spamdbm.cpp
7714
if (MyAppPntr == NULL || MyAppPntr->LockWithTimeout (2000000) != B_OK)
src/kits/app/Handler.cpp
447
status_t status = looper->LockWithTimeout(timeout);
src/kits/app/Messenger.cpp
139
status_t result = looper->LockWithTimeout(timeout);
src/kits/media/legacy/OldMediaModule.h
206
status_t LockWithTimeout(bigtime_t);
src/kits/screensaver/ScreenSaverRunner.cpp
221
} else if (fWindow->LockWithTimeout(5000LL) == B_OK) {
src/servers/app/DelayedMessage.cpp
800
if (fLock.LockWithTimeout(30000) != B_OK) {
src/servers/app/Desktop.cpp
3696
status_t status = fDirectScreenLock.LockWithTimeout(1000000L);
src/servers/app/Desktop.cpp
971
status_t status = fDirectScreenLock.LockWithTimeout(1000000L);
src/servers/app/drawing/interface/virtual/ViewHWInterface.cpp
342
if (fUpdateLock.LockWithTimeout(2000LL) >= B_OK) {
src/servers/app/drawing/interface/virtual/ViewHWInterface.cpp
393
if (LockWithTimeout(1000000) >= B_OK) {
src/servers/registrar/ShutdownProcess.cpp
587
if (LockWithTimeout(kIconAnimateInterval / lastHeight) != B_OK)
src/tests/kits/game/chart/ChartWindow.cpp
1137
if (window->LockWithTimeout(200000) == B_OK) {
src/tests/kits/game/chart/ChartWindow.cpp
1322
if (LockWithTimeout(timeout) != B_OK)
src/tests/kits/game/chart/ChartWindow.cpp
1387
if (LockWithTimeout(timeout) == B_OK) {
src/tests/kits/game/chart/ChartWindow.cpp
1473
if (LockWithTimeout(200000) == B_OK) {
src/tests/kits/game/chart/ChartWindow.cpp
1567
if (LockWithTimeout(200000) == B_OK) {
src/tests/kits/game/chart/ChartWindow.cpp
1600
if (LockWithTimeout(200000) == B_OK) {
src/tests/kits/game/chart/ChartWindow.cpp
2197
if (w->LockWithTimeout(200000) == B_OK) {
src/tests/kits/game/chart/ChartWindow.cpp
2858
if (LockWithTimeout(200000) != B_OK)
src/tests/kits/support/LockerConcurrencyTest.cpp
106
return fLocker->LockWithTimeout(1000000) == B_OK;
src/tests/kits/support/LockerConcurrencyTest.cpp
187
CPPUNIT_ASSERT(fLocker->LockWithTimeout(SNOOZE_TIME / 10) == B_TIMED_OUT);
src/tests/kits/support/LockerDestructionTest.cpp
139
CPPUNIT_ASSERT(fLocker->LockWithTimeout(SNOOZE_TIME) == B_OK);
src/tests/kits/support/LockerDestructionTest.cpp
144
CPPUNIT_ASSERT(fLocker->LockWithTimeout(SNOOZE_TIME * 10) == B_BAD_SEM_ID);
src/tests/kits/support/LockerDestructionTest.cpp
160
CPPUNIT_ASSERT(fLocker->LockWithTimeout(SNOOZE_TIME / 10) == B_TIMED_OUT);
src/tests/kits/support/LockerDestructionTest.cpp
161
CPPUNIT_ASSERT(fLocker->LockWithTimeout(SNOOZE_TIME * 10) == B_OK);
src/tests/kits/support/LockerLockCountTest.cpp
164
CPPUNIT_ASSERT(fLocker->LockWithTimeout(SNOOZE_TIME / 10) == B_TIMED_OUT);
src/tests/kits/support/LockerLockCountTest.cpp
195
CPPUNIT_ASSERT(fLocker->LockWithTimeout(SNOOZE_TIME / 10) == B_TIMED_OUT);