Searched refs:R_TR_NOTIF (Results 1 – 1 of 1) sorted by relevance
/device/soc/bestechnic/bes2600/liteos_m/sdk/bsp/platform/hal/ |
D | hal_trace.h | 142 #define R_TR_NOTIF(attr, str, ...) REL_LOG(((attr) & ~TR_ATTR_LEVEL_MASK) | TR_ATTR_LEVEL(… macro 166 #define REL_TRACE(attr, str, ...) R_TR_NOTIF(attr, str, ##__VA_ARGS__) 167 #define REL_TRACE_IMM(attr, str, ...) R_TR_NOTIF((attr) | TR_ATTR_IMM, str, ##__VA_ARGS__) 168 #define REL_TRACE_NOCRLF(attr, str, ...) R_TR_NOTIF((attr) | TR_ATTR_NO_LF, str, ##__VA_ARGS__) 169 #define REL_TRACE_NOTS(attr, str, ...) R_TR_NOTIF((attr) | TR_ATTR_NO_TS, str, ##__VA_ARGS__) 170 #define REL_TRACE_IMM_NOTS(attr, str, ...) R_TR_NOTIF((attr) | TR_ATTR_IMM | TR_ATTR_NO_TS, str, #… 171 #define REL_TRACE_NOCRLF_NOTS(attr, str, ...) R_TR_NOTIF((attr) | TR_ATTR_NO_LF | TR_ATTR_NO_TS, st… 172 #define REL_FUNC_ENTRY_TRACE() R_TR_NOTIF(1, "%s", __FUNCTION__)
|