Lines Matching refs:msgPtr
458 … void * msgPtr, cy_ipc_pipe_relcallback_ptr_t callBackPtr) in Cy_IPC_Pipe_SendMessage() argument
467 CY_ASSERT_L1(NULL != msgPtr); in Cy_IPC_Pipe_SendMessage()
491 * (uint32_t *) msgPtr &= ~(CY_IPC_PIPE_MSG_RELEASE_Msk); in Cy_IPC_Pipe_SendMessage()
493 * (uint32_t *) msgPtr |= releaseMask; in Cy_IPC_Pipe_SendMessage()
498 SCB_CleanDCache_by_Addr((uint32_t *)msgPtr,(int32_t)sizeof(msgPtr)); in Cy_IPC_Pipe_SendMessage()
502 Cy_IPC_Drv_WriteDataValue(toEp->ipcPtr, (uint32_t) msgPtr); in Cy_IPC_Pipe_SendMessage()
677 uint32_t *msgPtr = NULL; in Cy_IPC_Pipe_ExecCallback() local
705 msgPtr = (uint32_t *)GET_ALIAS_ADDRESS(msgTempPtr); in Cy_IPC_Pipe_ExecCallback()
707 SCB_InvalidateDCache_by_Addr(msgPtr, (int32_t)sizeof(*msgPtr)); in Cy_IPC_Pipe_ExecCallback()
711 releaseMask = _FLD2VAL(CY_IPC_PIPE_MSG_RELEASE, *msgPtr); in Cy_IPC_Pipe_ExecCallback()
712 clientID = _FLD2VAL(CY_IPC_PIPE_MSG_CLIENT, *msgPtr); in Cy_IPC_Pipe_ExecCallback()
721 callbackPtr(msgPtr); /* Call the function pointer for "clientID" */ in Cy_IPC_Pipe_ExecCallback()