Searched refs:msgQueue (Results 1 - 7 of 7) sorted by relevance
/drivers/peripheral/usb/ddk/host/src/ |
H A D | usb_io_manage.c | 193 int32_t UsbIoSendRequest(const struct UsbMessageQueue *msgQueue, const struct UsbHostRequest *request) in UsbIoSendRequest() argument 195 if ((msgQueue == NULL) || (request == NULL)) { in UsbIoSendRequest() 200 OsalMutexLock((struct OsalMutex *)&msgQueue->mutex); in UsbIoSendRequest() 201 DListInsertTail((struct DListHead *)&request->list, (struct DListHead *)&msgQueue->entry); in UsbIoSendRequest() 202 OsalMutexUnlock((struct OsalMutex *)&msgQueue->mutex); in UsbIoSendRequest() 204 OsalSemPost((struct OsalSem *)&msgQueue->sem); in UsbIoSendRequest() 209 HDF_STATUS UsbIoGetRequest(const struct UsbMessageQueue *msgQueue, struct UsbHostRequest **request) in UsbIoGetRequest() argument 214 if ((msgQueue == NULL) || (request == NULL)) { in UsbIoGetRequest() 220 ret = OsalSemWait((struct OsalSem *)&msgQueue->sem, HDF_WAIT_FOREVER); in UsbIoGetRequest() 225 if (DListIsEmpty(&msgQueue in UsbIoGetRequest() [all...] |
/drivers/peripheral/usb/ddk/host/include/ |
H A D | usb_io_manage.h | 32 int32_t UsbIoSendRequest(const struct UsbMessageQueue *msgQueue, const struct UsbHostRequest *request); 33 HDF_STATUS UsbIoGetRequest(const struct UsbMessageQueue *msgQueue, struct UsbHostRequest **request);
|
/drivers/hdf_core/framework/model/storage/src/mmc/ |
H A D | mmc_core.c | 224 cntlr->msgQueue = PlatformQueueCreate(MmcMsgHandleDefault, threadName, cntlr); in MmcCntlrQueueCreate() 225 if (cntlr->msgQueue == NULL) { in MmcCntlrQueueCreate() 229 ret = PlatformQueueStart(cntlr->msgQueue); in MmcCntlrQueueCreate() 232 PlatformQueueDestroy(cntlr->msgQueue); in MmcCntlrQueueCreate() 279 PlatformQueueDestroy(cntlr->msgQueue); in MmcCntlrUninit() 351 (void)PlatformQueueAddMsg(cntlr->msgQueue, &mmcMsg->msg); in MmcCntlrPostMsg()
|
/drivers/hdf_core/framework/support/platform/src/hdmi/ |
H A D | hdmi_event.c | 29 (void)PlatformQueueAddMsg(cntlr->msgQueue, &event->msg); in HdmiEventPostMsg()
|
H A D | hdmi_core.c | 287 cntlr->msgQueue = PlatformQueueCreate(HdmiEventMsgHandleDefault, "PlatformHdmiWorkerThread", cntlr); in HdmiCntlrInit() 288 if (cntlr->msgQueue == NULL) { in HdmiCntlrInit() 292 ret = PlatformQueueStart(cntlr->msgQueue); in HdmiCntlrInit() 295 PlatformQueueDestroy(cntlr->msgQueue); in HdmiCntlrInit()
|
/drivers/hdf_core/framework/model/storage/include/mmc/ |
H A D | mmc_corex.h | 62 struct PlatformQueue *msgQueue; member
|
/drivers/hdf_core/framework/support/platform/include/hdmi/ |
H A D | hdmi_core.h | 203 struct PlatformQueue *msgQueue; member
|
Completed in 11 milliseconds