/drivers/hdf_core/adapter/khdf/linux/osal/src/ |
D | osal_timer.c | 59 OsalMutexTimedLock(&ktimer->mutex, HDF_WAIT_FOREVER); in osal_timer_callback() 66 OsalMutexTimedLock(&ktimer->mutex, HDF_WAIT_FOREVER); in osal_timer_callback() 154 OsalMutexTimedLock(&ktimer->mutex, HDF_WAIT_FOREVER); in OsalTimerSetTimeout() 172 OsalMutexTimedLock(&ktimer->mutex, HDF_WAIT_FOREVER); in OsalTimerDelete()
|
D | osal_sem.c | 58 if (millisec == HDF_WAIT_FOREVER) { in OsalSemWait()
|
/drivers/hdf_core/framework/model/network/wifi/platform/src/message/ |
D | message_router.c | 82 HDF_STATUS status = OsalMutexTimedLock(&g_routerMutex, HDF_WAIT_FOREVER); in RefDispatcherInner() 118 status = OsalMutexTimedLock(&g_routerMutex, HDF_WAIT_FOREVER); in RegDispatcher() 282 if (OsalMutexTimedLock(&g_routerMutex, HDF_WAIT_FOREVER) != HDF_SUCCESS) { in RegistServiceInner() 354 status = OsalMutexTimedLock(&g_routerMutex, HDF_WAIT_FOREVER); in RegistRemoteService() 380 status = OsalMutexTimedLock(&g_routerMutex, HDF_WAIT_FOREVER); in UnregistServiceInner() 457 status = OsalMutexTimedLock(&g_routerMutex, HDF_WAIT_FOREVER); in RefRemoteService() 633 status = OsalMutexTimedLock(&g_routerMutex, HDF_WAIT_FOREVER); in StartMessageRouter() 690 status = OsalMutexTimedLock(&g_routerMutex, HDF_WAIT_FOREVER); in ShutdownMessageRouter() 715 status = OsalMutexTimedLock(&g_routerMutex, HDF_WAIT_FOREVER); in RefMessageNode()
|
D | message_dispatcher.c | 295 status = OsalMutexTimedLock(&dispatcher->mutex, HDF_WAIT_FOREVER); in StartDispatcher() 351 status = OsalMutexTimedLock(&dispatcher->mutex, HDF_WAIT_FOREVER); in ShutdownDispatcher()
|
/drivers/hdf_core/framework/support/posix/src/ |
D | osal_mutex.c | 73 return OsalMutexTimedLock(mutex, HDF_WAIT_FOREVER); in OsalMutexLock() 85 if (ms == HDF_WAIT_FOREVER) { in OsalMutexTimedLock()
|
D | osal_sem.c | 55 if (ms == HDF_WAIT_FOREVER) { in OsalSemWait()
|
/drivers/peripheral/codec/hal/v1.0/buffer_manager/src/ |
D | buffer_manager.cpp | 42 if (timeoutMs == HDF_WAIT_FOREVER) { in GetBuffer() 65 if (timeoutMs == HDF_WAIT_FOREVER) { in GetUsedBuffer()
|
/drivers/hdf_core/interfaces/inner_api/utils/ |
D | hdf_base.h | 82 #define HDF_WAIT_FOREVER 0xFFFFFFFF macro
|
/drivers/hdf_core/framework/support/platform/src/fwk/ |
D | platform_queue.c | 56 ret = OsalSemWait(&queue->sem, HDF_WAIT_FOREVER); in PlatformQueueWorker() 188 (void)OsalSemWait(&queue->sem, HDF_WAIT_FOREVER); // consume the semaphore after get in PlatformQueueGetMsg()
|
D | platform_device.c | 238 ret = PlatformDeviceWaitEvent(device, PLAT_EVENT_DEVICE_DEAD, HDF_WAIT_FOREVER, NULL); in PlatformDeviceDel()
|
/drivers/hdf_core/framework/test/unittest/osal/ |
D | osal_list_test.c | 294 ret = OsalSemWait(&g_hdfSem, HDF_WAIT_FOREVER); in ThreadTestWaitSem() 319 ret = OsalSemWait(&hdfSem, HDF_WAIT_FOREVER); in OsalOsalSemInterface() 329 ret = OsalSemWait(&hdfSem, HDF_WAIT_FOREVER); in OsalOsalSemInterface()
|
D | osal_all_test.c | 95 g_waitMutexTime = HDF_WAIT_FOREVER; in ThreadTest1() 862 ret = OsalMutexTimedLock(&mutex, HDF_WAIT_FOREVER); in OsaMutexTest()
|
/drivers/hdf_core/adapter/khdf/liteos_m/osal/src/ |
D | osal_spinlock.c | 89 ret = LOS_MuxPend((uint32_t)(uintptr_t)spinlock->realSpinlock, LOS_MS2Tick(HDF_WAIT_FOREVER)); in OsalSpinLock()
|
D | osal_mutex.c | 89 ret = LOS_MuxPend((uint32_t)(uintptr_t)mutex->realMutex, LOS_MS2Tick(HDF_WAIT_FOREVER)); in OsalMutexLock()
|
/drivers/hdf_core/adapter/khdf/liteos/osal/src/ |
D | osal_mutex.c | 97 ret = LOS_MuxLock((LosMux *)mutex->realMutex, LOS_MS2Tick(HDF_WAIT_FOREVER)); in OsalMutexLock()
|
/drivers/hdf_core/framework/model/network/wifi/platform/src/message/nodes/ |
D | local_node.c | 201 status = OsalMutexTimedLock(&node->mutex, HDF_WAIT_FOREVER); in InitLocalNode() 227 status = OsalMutexTimedLock(&node->mutex, HDF_WAIT_FOREVER); in InitLocalNode()
|
/drivers/hdf_core/framework/utils/src/ |
D | hdf_task_queue.c | 171 ret = OsalSemWait(&queue->sem, HDF_WAIT_FOREVER); in HdfThreadTasker()
|
/drivers/hdf_core/framework/support/platform/src/can/ |
D | can_manager.c | 56 ret = OsalSemWait(&cntlr->sem, HDF_WAIT_FOREVER); in CanIrqThreadWorker()
|
/drivers/hdf_core/framework/model/network/wifi/platform/src/qos/ |
D | flow_control_task.c | 96 if (OsalSemWait(&fcm->sem[dir], HDF_WAIT_FOREVER) != HDF_SUCCESS) { in RunWiFiFlowControl()
|
/drivers/hdf_core/framework/test/unittest/platform/common/ |
D | platform_event_test.c | 48 (void)OsalSemWait(&pe->sem, HDF_WAIT_FOREVER); in PlatformEventTestInitAndUninit()
|
/drivers/hdf_core/framework/support/platform/src/hdmi/ |
D | hdmi_event.c | 34 ret = OsalSemWait(&event->sem, HDF_WAIT_FOREVER); in HdmiEventPostMsg()
|
/drivers/peripheral/usb/sample/host/src/ |
D | usbhost_nosdk_speed.c | 161 OsalSemWait(&sem, HDF_WAIT_FOREVER); in SendProcess()
|
/drivers/peripheral/usb/ddk/host/src/ |
D | usb_io_manage.c | 209 ret = OsalSemWait((struct OsalSem *)&msgQueue->sem, HDF_WAIT_FOREVER); in UsbIoGetRequest()
|
/drivers/hdf_core/framework/support/platform/src/gpio/ |
D | gpio_core.c | 154 ret = OsalSemWait(&irqRecord->sem, HDF_WAIT_FOREVER); in GpioCntlrIrqThreadHandler()
|
/drivers/peripheral/usb/sample/host/liteos_test/src/ |
D | usbhost_nosdk_speed.c | 108 OsalSemWait(&g_sem, HDF_WAIT_FOREVER); in SendProcess()
|