Home
last modified time | relevance | path

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

/ohos5.0/base/security/device_auth/services/session_manager/src/session/v2/expand_sub_session/expand_process_lib/
H A Dauth_code_import.c398 int32_t peerErrorCode = HC_ERR_PEER_ERROR; in ThrowException() local
399 (void)GetIntFromJson(baseEvent, FIELD_ERR_CODE, &peerErrorCode); in ThrowException()
400 LOGE("An exception occurred in the peer cmd. [Code]: %d", peerErrorCode); in ThrowException()
401 return peerErrorCode; in ThrowException()
H A Dpub_key_exchange.c559 int32_t peerErrorCode = HC_ERR_PEER_ERROR; in ThrowException() local
560 (void)GetIntFromJson(baseEvent, FIELD_ERR_CODE, &peerErrorCode); in ThrowException()
561 LOGE("An exception occurred in the peer cmd. [Code]: %d", peerErrorCode); in ThrowException()
562 return peerErrorCode; in ThrowException()
H A Dsave_trusted_info.c663 int32_t peerErrorCode = HC_ERR_PEER_ERROR; in ThrowException() local
664 (void)GetIntFromJson(baseEvent, FIELD_ERR_CODE, &peerErrorCode); in ThrowException()
665 LOGE("An exception occurred in the peer cmd. [Code]: %d", peerErrorCode); in ThrowException()
666 return peerErrorCode; in ThrowException()
/ohos5.0/base/security/device_auth/services/session_manager/src/session/v2/auth_sub_session/protocol_lib/
H A Diso_protocol.c688 int32_t peerErrorCode = HC_ERR_PEER_ERROR; in ThrowException() local
689 (void)GetIntFromJson(inputEvent, FIELD_ERR_CODE, &peerErrorCode); in ThrowException()
690 LOGE("An exception occurred in the peer protocol. [Code]: %d", peerErrorCode); in ThrowException()
691 return peerErrorCode; in ThrowException()
H A Ddl_speke_protocol.c949 int32_t peerErrorCode = HC_ERR_PEER_ERROR; in ThrowException() local
950 (void)GetIntFromJson(inputData, FIELD_ERR_CODE, &peerErrorCode); in ThrowException()
951 LOGE("An exception occurred in the peer protocol. [Code]: %d", peerErrorCode); in ThrowException()
952 return peerErrorCode; in ThrowException()
H A Dec_speke_protocol.c932 int32_t peerErrorCode = HC_ERR_PEER_ERROR; in ThrowException() local
933 (void)GetIntFromJson(inputEvent, FIELD_ERR_CODE, &peerErrorCode); in ThrowException()
934 LOGE("An exception occurred in the peer protocol. [Code]: %d", peerErrorCode); in ThrowException()
935 return peerErrorCode; in ThrowException()
/ohos5.0/base/security/device_auth/services/session_manager/src/session/v2/
H A Ddev_session_v2.c1989 int32_t peerErrorCode = HC_ERR_PEER_ERROR; in ProcFailEvent() local
1990 (void)GetIntFromJson(inputEvent->data, FIELD_ERROR_CODE, &peerErrorCode); in ProcFailEvent()
1991 LOGE("An exception occurred in the peer session. [Code]: %d", peerErrorCode); in ProcFailEvent()
1992 return RestartSession(impl, policy) == HC_SUCCESS ? HC_SUCCESS : peerErrorCode; in ProcFailEvent()