Home
last modified time | relevance | path

Searched refs:objectShare (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/base/telephony/core_service/services/sim/src/
H A Dicc_file_controller.cpp466 std::shared_ptr<ControllerToFileMsg> objectShare = nullptr; in SendResponse() local
469 objectShare = std::make_shared<ControllerToFileMsg>(cmdData.get(), fd); in SendResponse()
474 if ((objectUnique == nullptr) && (objectShare == nullptr)) { in SendResponse()
481 SendEvent(owner, id, needShare, objectShare, objectUnique); in SendResponse()
709 std::shared_ptr<ControllerToFileMsg> objectShare = nullptr; in ProcessErrorResponse() local
712 objectShare = std::make_shared<ControllerToFileMsg>(cmdData.get(), nullptr); in ProcessErrorResponse()
713 if (objectShare == nullptr) { in ProcessErrorResponse()
716 objectShare->exception = rcvMsg->fileData.exception; in ProcessErrorResponse()
722 if ((objectUnique == nullptr) && (objectShare == nullptr)) { in ProcessErrorResponse()
728 SendEvent(owner, id, needShare, objectShare, objectUnique); in ProcessErrorResponse()
[all …]
/ohos5.0/base/telephony/core_service/services/sim/include/
H A Dicc_file_controller.h85 …std::shared_ptr<ControllerToFileMsg> objectShare, std::unique_ptr<ControllerToFileMsg> &objectUniq…