Lines Matching refs:CallResult
43 enum class CallResult { enum
62 constexpr int32_t INT_CALL_SUCCESS = CAST_INT(CallResult::SUCCESS);
63 constexpr int32_t INT_CALL_FAIL = CAST_INT(CallResult::FAIL);
64 constexpr int32_t INT_UN_SUPPORT = CAST_INT(CallResult::UN_SUPPORT);
65 constexpr int32_t INT_FORBIDDEN = CAST_INT(CallResult::FORBIDDEN);
66 constexpr int32_t INT_CALL_IPC_ERR = CAST_INT(CallResult::IPC_ERR);
67 constexpr int32_t INT_APP_NOT_GRANTED = CAST_INT(CallResult::APP_NOT_GRANTED);
68 constexpr int32_t INT_NOT_SYSTEM_APP = CAST_INT(CallResult::NOT_SYSTEM_APP);
69 constexpr int32_t INT_PARAM_ERR = CAST_INT(CallResult::PARAM_ERR);
70 constexpr int32_t INT_DEV_UPG_INFO_ERR = CAST_INT(CallResult::DEV_UPG_INFO_ERR);
71 constexpr int32_t INT_TIME_OUT = CAST_INT(CallResult::TIME_OUT);
72 constexpr int32_t INT_DB_ERROR = CAST_INT(CallResult::DB_ERROR);
73 constexpr int32_t INT_IO_ERROR = CAST_INT(CallResult::IO_ERROR);
74 constexpr int32_t INT_NET_ERROR = CAST_INT(CallResult::NET_ERROR);
434 CallResult errorNum = CallResult::SUCCESS;
437 BusinessError &Build(CallResult callResult, const std::string &msg) in Build()