Lines Matching refs:error
64 rt_err_t error; in _producer_entry() local
71 error = rt_sem_take(&_prod_can_take_mtx, RT_WAITING_FOREVER); in _producer_entry()
72 if (error) in _producer_entry()
78 error = rt_mutex_take(&_ipc_primitive, RT_WAITING_FOREVER); in _producer_entry()
79 if (error) in _producer_entry()
111 rt_err_t error; in _consumer_entry() local
118 error = rt_sem_take(&_cons_can_take_mtx, RT_WAITING_FOREVER); in _consumer_entry()
119 if (error) in _consumer_entry()
127 error = rt_mutex_take_interruptible(&_ipc_primitive, 1); in _consumer_entry()
128 if (error == -RT_ETIMEOUT) in _consumer_entry()
143 if (error != RT_EOK) in _consumer_entry()