Lines Matching refs:desc
25 #define CHKRV(state, desc) \
28 MMI_HILOGE("%{public}s failed", std::string(desc).c_str()); \
33 #define CHKRP(state, desc) \
36 MMI_HILOGE("%{public}s failed", std::string(desc).c_str()); \
41 #define CHKRF(state, desc) \
44 MMI_HILOGE("%{public}s failed", std::string(desc).c_str()); \
49 #define CHKRR(state, desc, ret) \
52 MMI_HILOGE("%{public}s failed", std::string(desc).c_str()); \
57 #define CHECK_RETURN(condition, desc, retVal) \
60 MMI_HILOGE("%{public}s failed", std::string(desc).c_str()); \
65 #define CHKRV_SCOPE(env, state, desc, scope) \
68 MMI_HILOGE("%{public}s failed", std::string(desc).c_str()); \
74 #define CHKRV_SCOPE_DEL(env, state, desc, scope) \
77 MMI_HILOGE("%{public}s failed", std::string(desc).c_str()); \
83 #define CHECK_SCOPE_BEFORE_BREAK(env, state, desc, scope, pointerEvent) \
86 MMI_HILOGE("%{public}s failed", std::string(desc).c_str()); \
93 #define CHKNRV_SCOPE(env, cond, desc, scope) \
96 MMI_HILOGE("%{public}s is nullptr, failed", std::string(desc).c_str()); \
102 #define THROWERR(env, desc) \
104 MMI_HILOGE("%{public}s", (#desc)); \
105 auto infoTemp = std::string(__FUNCTION__)+ ": " + #desc; \