Searched refs:msgPtr (Results 1 – 7 of 7) sorted by relevance
| /hal_infineon-latest/mtb-pdl-cat1/drivers/source/ |
| D | cy_ipc_bt.c | 73 …ipcdrv_status_t Cy_bt_handle_hpclong_msg(cy_stc_ipc_bt_context_t *btIpcContext, uint32_t * msgPtr); 74 …n_btipcdrv_status_t Cy_bt_handle_buf_add(cy_stc_ipc_bt_context_t *btIpcContext, uint32_t * msgPtr); 75 …tipcdrv_status_t Cy_bt_handle_buf_remove(cy_stc_ipc_bt_context_t *btIpcContext, uint32_t * msgPtr); 82 …_btipcdrv_status_t Cy_BTIPC_HPC_RelBuffer(cy_stc_ipc_bt_context_t *btIpcContext, uint32_t* msgPtr); 319 …n_btipcdrv_status_t Cy_BTIPC_HCI_RelBuffer(cy_stc_ipc_bt_context_t *btIpcContext, uint32_t* msgPtr) in Cy_BTIPC_HCI_RelBuffer() argument 328 if ((NULL == contextPtr) || (NULL == msgPtr)) in Cy_BTIPC_HCI_RelBuffer() 333 if (((cy_stc_ipc_msg_buff_t*)((void*)msgPtr))->pti != ((uint8_t)CY_BT_IPC_HCI_LONG)) in Cy_BTIPC_HCI_RelBuffer() 353 if (contextPtr->toFreeBuf[idx].bufPtr == (uint8_t*)msgPtr[1]) in Cy_BTIPC_HCI_RelBuffer() 386 …n_btipcdrv_status_t Cy_BTIPC_HPC_RelBuffer(cy_stc_ipc_bt_context_t *btIpcContext, uint32_t* msgPtr) in Cy_BTIPC_HPC_RelBuffer() argument 391 if ((NULL == contextPtr) || (NULL == msgPtr)) in Cy_BTIPC_HPC_RelBuffer() [all …]
|
| D | cy_ipc_pipe.c | 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() [all …]
|
| D | cy_flash.c | 198 static void Cy_Flash_NotifyHandler(uint32_t * msgPtr); 306 static void Cy_Flash_NotifyHandler(uint32_t * msgPtr) in Cy_Flash_NotifyHandler() argument 316 cy_stc_flash_notify_t *ipcMsgPtr = (cy_stc_flash_notify_t *) (void *) msgPtr; in Cy_Flash_NotifyHandler()
|
| /hal_infineon-latest/bless/ |
| D | cy_ble_hal_pvt.c | 1060 static void Cy_BLE_IPC_CommonCallBack(uint32_t * msgPtr); 1061 static void Cy_BLE_IPC_CommonCallBack(uint32_t * msgPtr) in Cy_BLE_IPC_CommonCallBack() argument 1063 cy_stc_ble_ipc_msg_t * ipcMsgPtr = (cy_stc_ble_ipc_msg_t *) msgPtr; in Cy_BLE_IPC_CommonCallBack() 1090 intrNotifyPtr = (cy_stc_ble_intr_notify_t *)msgPtr; in Cy_BLE_IPC_CommonCallBack() 1210 static void Cy_BLE_IPC_CtrlMsgFlushRecvCallBack(uint32_t * msgPtr); 1217 static void Cy_BLE_IPC_HostMsgFlushRecvCallBack(uint32_t * msgPtr); 1218 static void Cy_BLE_IPC_HostMsgRecvCallBack(uint32_t * msgPtr); 1296 static void Cy_BLE_IPC_CtrlMsgFlushRecvCallBack(uint32_t * msgPtr) in Cy_BLE_IPC_CtrlMsgFlushRecvCallBack() argument 1299 Cy_BLE_IPC_CtrlMsgFlushRecvStackHandle(msgPtr); in Cy_BLE_IPC_CtrlMsgFlushRecvCallBack() 1389 static void Cy_BLE_IPC_HostMsgFlushRecvCallBack(uint32_t *msgPtr) in Cy_BLE_IPC_HostMsgFlushRecvCallBack() argument [all …]
|
| /hal_infineon-latest/mtb-pdl-cat1/drivers/include/ |
| D | cy_ipc_drv.h | 628 …tus_t Cy_IPC_Drv_SendMsgPtr (IPC_STRUCT_Type* base, uint32_t notifyEventIntr, void const * msgPtr); 629 …_INLINE cy_en_ipcdrv_status_t Cy_IPC_Drv_ReadMsgPtr (IPC_STRUCT_Type const * base, void ** msgPtr); 1202 …atus_t Cy_IPC_Drv_SendMsgPtr(IPC_STRUCT_Type* base, uint32_t notifyEventIntr, void const * msgPtr) in Cy_IPC_Drv_SendMsgPtr() argument 1204 CY_ASSERT_L1(NULL != msgPtr); in Cy_IPC_Drv_SendMsgPtr() 1205 return Cy_IPC_Drv_SendMsgWord(base, notifyEventIntr, (uint32_t)msgPtr); in Cy_IPC_Drv_SendMsgPtr() 1237 …INLINE cy_en_ipcdrv_status_t Cy_IPC_Drv_ReadMsgPtr (IPC_STRUCT_Type const * base, void ** msgPtr) in Cy_IPC_Drv_ReadMsgPtr() argument 1239 CY_ASSERT_L1(NULL != msgPtr); in Cy_IPC_Drv_ReadMsgPtr() 1240 return Cy_IPC_Drv_ReadMsgWord(base, (uint32_t *)msgPtr); in Cy_IPC_Drv_ReadMsgPtr()
|
| D | cy_ipc_bt.h | 312 typedef void (* cy_ipc_bt_callback_ptr_t)(uint32_t * msgPtr); 466 typedef void (* cy_ipc_bt_int_cb_ptr_t)(void *btIpcContext, uint32_t * msgPtr); 811 …drv_status_t Cy_BTIPC_HCI_getPTI (cy_en_btipc_hcipti_t *pti, uint32_t *p_length, uint32_t *msgPtr); 981 …_btipcdrv_status_t Cy_BTIPC_HCI_RelBuffer(cy_stc_ipc_bt_context_t *btIpcContext, uint32_t* msgPtr); 1194 void Cy_BTIPC_HPC_Notify(void *btIpcContext, uint32_t * msgPtr);
|
| D | cy_ipc_pipe.h | 84 typedef void (* cy_ipc_pipe_callback_ptr_t)(uint32_t * msgPtr); 301 cy_en_ipc_pipe_status_t Cy_IPC_Pipe_SendMessage(uint32_t toAddr, uint32_t fromAddr, void *msgPtr,
|