Home
last modified time | relevance | path

Searched refs:RT_LOGD_IF (Results 1 – 1 of 1) sorted by relevance

/OK3568_Linux_fs/external/rockit/tgi/sdk/include/
H A Drt_log.h43 #define RT_LOGD_IF(condition, format, ...) if (condition > 0) LOG_TRACE(RT_LOG_DEBUG, format, ##__V… macro
63 #define RT_LOG_API_ENTER() RT_LOGD_IF(LOG_FLAG, "%s called enter", __FUNCTION__)
64 #define RT_LOG_API_LEAVE() RT_LOGD_IF(LOG_FLAG, "%s called leave", __FUNCTION__)
65 #define RT_LOG_API_CALLED() RT_LOGD_IF(LOG_FLAG, "%s called", __FUNCTION__)
68 #define RT_LOG_FUNC_ENTER() RT_LOGD_IF(LOG_FLAG, "%s enter", __FUNCTION__)
69 #define RT_LOG_FUNC_LEAVE() RT_LOGD_IF(LOG_FLAG, "%s leave", __FUNCTION__)
70 #define RT_LOG_FUNC_CALLED() RT_LOGD_IF(LOG_FLAG, "%s called", __FUNCTION__)
73 #define RT_LOG_CONSTRUCT_IN(thiz) RT_LOGD_IF(LOG_FLAG, "%s(%p) construct", __FUNCTION__, thiz)
74 #define RT_LOG_CONSTRUCT_DONE(thiz) RT_LOGD_IF(LOG_FLAG, "%s(%p) construct ok", __FUNCTION__, thiz)
75 #define RT_LOG_DESTRUCT_IN(thiz) RT_LOGD_IF(LOG_FLAG, "%s(%p) destructor", __FUNCTION__, thiz)
[all …]