Home
last modified time | relevance | path

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

/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/communicator/src/
H A Dcommunicator_aggregator.cpp162 Communicator *commPtr = new (std::nothrow) Communicator(this, commLabel); in AllocCommunicator() local
163 if (commPtr == nullptr) { in AllocCommunicator()
167 commMap_[commLabel] = {commPtr, false}; // Communicator is not activated when allocated in AllocCommunicator()
168 return commPtr; in AllocCommunicator()
176 Communicator *commPtr = static_cast<Communicator *>(inCommunicator); in ReleaseCommunicator() local
177 LabelType commLabel = commPtr->GetCommunicatorLabel(); in ReleaseCommunicator()
186 …RefObject::DecObjRef(commPtr); // Refcount of Communicator is 1 when created, here to unref Commun… in ReleaseCommunicator()