Lines Matching refs:queue_obj
680 cyhal_ipc_queue_t *queue_handle = obj->queue_obj; in _cyhal_ipc_add_queue_element()
702 obj->queue_obj = (void *)queue_handle_to_add; in _cyhal_ipc_add_queue_element()
707 last_queue_handle->next_queue_obj = obj->queue_obj; in _cyhal_ipc_add_queue_element()
776 CY_ASSERT(NULL != obj->queue_obj); in _cyhal_ipc_queue_put_get()
785 cyhal_ipc_queue_t *queue_handle = obj->queue_obj; in _cyhal_ipc_queue_put_get()
786 uint32_t channel = obj->queue_obj->channel_num; in _cyhal_ipc_queue_put_get()
926 INVALIDATE_DCACHE_BEFORE_READING_FROM_MEMORY(obj->queue_obj, sizeof(*obj->queue_obj)); in _cyhal_ipc_decode_triggered_events()
928 …uint16_t retval = _CYHAL_IPC_GET_SIGNATURES(obj->queue_obj->triggered_events ^ obj->processed_even… in _cyhal_ipc_decode_triggered_events()
929 _CYHAL_IPC_GET_TRIGGERED_EVENT(obj->queue_obj->triggered_events); in _cyhal_ipc_decode_triggered_events()
930 obj->processed_events = obj->queue_obj->triggered_events; in _cyhal_ipc_decode_triggered_events()
1213 CY_ASSERT(NULL != obj->queue_obj); in cyhal_ipc_queue_free()
1215 uint32_t channel = obj->queue_obj->channel_num; in cyhal_ipc_queue_free()
1223 if (_cyhal_ipc_service_data->queues_ll_pointer == obj->queue_obj) in cyhal_ipc_queue_free()
1230 _cyhal_ipc_service_data->queues_ll_pointer = obj->queue_obj->next_queue_obj; in cyhal_ipc_queue_free()
1239 if (current_queue_obj->next_queue_obj == obj->queue_obj) in cyhal_ipc_queue_free()
1333 obj->queue_obj = queue_ptr; in cyhal_ipc_queue_get_handle()
1364 CY_ASSERT(NULL != obj->queue_obj); in cyhal_ipc_queue_enable_event()
1366 uint32_t channel = obj->queue_obj->channel_num; in cyhal_ipc_queue_enable_event()
1374 INVALIDATE_DCACHE_BEFORE_READING_FROM_MEMORY(obj->queue_obj, sizeof(*obj->queue_obj)); in cyhal_ipc_queue_enable_event()
1378 …(obj->processed_events & ~event_and_sign_mask) | (obj->queue_obj->triggered_events & event_and_sig… in cyhal_ipc_queue_enable_event()
1444 CY_ASSERT(NULL != obj->queue_obj); in cyhal_ipc_queue_count()
1445 uint32_t channel = obj->queue_obj->channel_num; in cyhal_ipc_queue_count()
1448 INVALIDATE_DCACHE_BEFORE_READING_FROM_MEMORY(obj->queue_obj, sizeof(*obj->queue_obj)); in cyhal_ipc_queue_count()
1449 uint32_t curr_items = obj->queue_obj->curr_items; in cyhal_ipc_queue_count()
1457 CY_ASSERT(NULL != obj->queue_obj); in cyhal_ipc_queue_reset()
1459 cyhal_ipc_queue_t *queue_handle = obj->queue_obj; in cyhal_ipc_queue_reset()
1460 uint32_t channel = obj->queue_obj->channel_num; in cyhal_ipc_queue_reset()