Searched refs:errCd (Results 1 - 5 of 5) sorted by relevance
/foundation/communication/bluetooth_service/services/bluetooth/service/src/obex/ |
H A D | obex_server.h | 52 virtual void OnTransportError(const std::string &btAddr, int errCd, const std::string &msg); 54 virtual void OnError(const int errCd, const std::string &msg); 97 void OnTransportError(ObexTransport &transport, int errCd) override;
|
H A D | obex_server.cpp | 105 void ObexServerObserver::OnTransportError(const std::string &btAddr, int errCd, const std::string &msg) in OnTransportError() argument 107 OBEX_LOG_ERROR("Call %{public}s, ERROR:%{public}d, %{public}s", __PRETTY_FUNCTION__, errCd, msg.c_str()); in OnTransportError() 111 void ObexServerObserver::OnError(const int errCd, const std::string &msg) in OnError() argument 113 OBEX_LOG_ERROR("Call %{public}s, ERROR:%{public}d, %{public}s", __PRETTY_FUNCTION__, errCd, msg.c_str()); in OnError() 299 void ObexPrivateServer::ObexServerTransportObserver::OnTransportError(ObexTransport &transport, int errCd) in OnTransportError() argument 302 obexServer_.observer_.OnError(errCd, "OnTransportError"); in OnTransportError()
|
H A D | obex_client.h | 72 * @param errCd error code 74 virtual void OnTransportFailed(ObexClient &client, int errCd) = 0; 276 void OnTransportError(ObexTransport &transport, int errCd) override;
|
H A D | obex_transport.h | 40 virtual void OnTransportError(ObexTransport &transport, int errCd) = 0;
|
H A D | obex_client.cpp | 187 void ObexClient::ObexClientTransportObserver::OnTransportError(ObexTransport &transport, int errCd) in OnTransportError() argument 190 OBEX_LOG_ERROR("ClientId: %{public}s, errCd: %{public}d", obexClient_.GetClientId().c_str(), errCd); in OnTransportError() 191 obexClient_.clientObserver_.OnTransportFailed(obexClient_, errCd); in OnTransportError()
|
Completed in 3 milliseconds