| /rockchip-linux_mpp/inc/ |
| H A D | mpp_log.h | 44 #define mpp_logf_c(cond, fmt, ...) do { if (cond) mpp_logf(fmt, ## __VA_ARGS__); } while (0) argument 45 #define mpp_loge_c(cond, fmt, ...) do { if (cond) mpp_loge(fmt, ## __VA_ARGS__); } while (0) argument 46 #define mpp_logw_c(cond, fmt, ...) do { if (cond) mpp_logw(fmt, ## __VA_ARGS__); } while (0) argument 47 #define mpp_logi_c(cond, fmt, ...) do { if (cond) mpp_logi(fmt, ## __VA_ARGS__); } while (0) argument 48 #define mpp_logd_c(cond, fmt, ...) do { if (cond) mpp_logd(fmt, ## __VA_ARGS__); } while (0) argument 49 #define mpp_logv_c(cond, fmt, ...) do { if (cond) mpp_logv(fmt, ## __VA_ARGS__); } while (0) argument 51 #define mpp_logf_cf(cond, fmt, ...) do { if (cond) mpp_logf_f(fmt, ## __VA_ARGS__); } while (0) argument 52 #define mpp_loge_cf(cond, fmt, ...) do { if (cond) mpp_loge_f(fmt, ## __VA_ARGS__); } while (0) argument 53 #define mpp_logw_cf(cond, fmt, ...) do { if (cond) mpp_logw_f(fmt, ## __VA_ARGS__); } while (0) argument 54 #define mpp_logi_cf(cond, fmt, ...) do { if (cond) mpp_logi_f(fmt, ## __VA_ARGS__); } while (0) argument [all …]
|
| /rockchip-linux_mpp/osal/ |
| H A D | mpp_thread.c | 146 pthread_cond_init(&condition->cond, NULL); in mpp_cond_init() 149 pthread_cond_init(&condition->cond, &attr); in mpp_cond_init() 155 pthread_cond_init(&condition->cond, NULL); in mpp_cond_init() 162 pthread_cond_destroy(&condition->cond); in mpp_cond_destroy() 167 return pthread_cond_wait(&condition->cond, &mutex->lock); in mpp_cond_wait() 181 return pthread_cond_timedwait(&condition->cond, &mutex->lock, &ts); in mpp_cond_timedwait() 186 return pthread_cond_signal(&condition->cond); in mpp_cond_signal() 191 return pthread_cond_broadcast(&condition->cond); in mpp_cond_broadcast() 198 mpp_cond_init(&mutexCond->cond); in mpp_mutex_cond_init() 204 mpp_cond_destroy(&mutexCond->cond); in mpp_mutex_cond_destroy() [all …]
|
| H A D | mpp_mem.c | 40 #define MPP_MEM_ASSERT(srv, cond) \ argument 42 if (!(cond)) { \ 45 mpp_assert(cond); \
|
| /rockchip-linux_mpp/mpp/base/ |
| H A D | mpp_task_impl.c | 32 MppCond cond; member 163 MppCond *cond = &curr->cond; in _mpp_port_poll() local 170 ret = (MPP_RET)mpp_cond_wait(cond, &queue->lock); in _mpp_port_poll() 175 ret = (MPP_RET)mpp_cond_timedwait(cond, &queue->lock, timeout); in _mpp_port_poll() 234 mpp_cond_signal(&next->cond); in _mpp_port_move() 345 mpp_cond_signal(&next->cond); in _mpp_port_enqueue() 368 mpp_cond_signal(&curr->cond); in _mpp_port_awake() 404 mpp_cond_init(&p->info[i].cond); in mpp_task_queue_init() 427 mpp_cond_destroy(&p->info[MPP_INPUT_PORT].cond); in mpp_task_queue_init() 428 mpp_cond_destroy(&p->info[MPP_OUTPUT_PORT].cond); in mpp_task_queue_init() [all …]
|
| H A D | mpp_buf_slot.c | 38 #define slot_assert(impl, cond) do { \ argument 39 if (!(cond)) { \ 42 MPP_STRINGS(cond), __FUNCTION__, __LINE__); \
|
| H A D | mpp_cfg_io.c | 66 MppCfgObjCond cond; member 585 rk_s32 mpp_cfg_set_cond(MppCfgObj obj, MppCfgObjCond cond) in mpp_cfg_set_cond() argument 590 impl->cond = cond; in mpp_cfg_set_cond()
|
| /rockchip-linux_mpp/osal/test/ |
| H A D | mpp_runtime_test.c | 134 pthread_cond_t cond; variable 158 ret = pthread_cond_timedwait(&cond, &mutex, &ts); in wait_thread() 194 pthread_cond_init(&cond, &cond_attr); in check_pthread_clock() 200 pthread_cond_destroy(&cond); in check_pthread_clock()
|
| /rockchip-linux_mpp/osal/inc/ |
| H A D | mpp_debug.h | 77 #define mpp_assert(cond) do { \ argument 78 if (!(cond)) { \ 80 MPP_STRINGS(cond), __FUNCTION__, __LINE__); \
|
| H A D | mpp_thread.h | 48 pthread_cond_t cond; member 54 MppCond cond; member
|
| /rockchip-linux_mpp/mpp/base/inc/ |
| H A D | mpp_cfg_io.h | 73 rk_s32 mpp_cfg_set_cond(MppCfgObj obj, MppCfgObjCond cond);
|
| /rockchip-linux_mpp/osal/driver/ |
| H A D | mpp_server.c | 97 MppMutexCond cond; member
|
| /rockchip-linux_mpp/tools/ |
| H A D | mpp_doxyfile | 606 # sections, marked by \if <section_label> ... \endif and \cond <section_label>
|