Home
last modified time | relevance | path

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

/ohos5.0/foundation/communication/ipc/ipc/native/test/unittest/common/
H A Dipc_binder_databus_invoker_unittest.cpp553 current->dbinderSessionObjects_[handle] = sessionObject;
563 current->dbinderSessionObjects_.clear();
1130 current->dbinderSessionObjects_[handle] = sessionObject;
1134 current->dbinderSessionObjects_.clear();
1151 current->dbinderSessionObjects_[handle] = sessionObject;
1155 current->dbinderSessionObjects_.clear();
1176 current->dbinderSessionObjects_[handle] = sessionObject;
1191 current->dbinderSessionObjects_.clear();
1227 current->dbinderSessionObjects_.clear();
1263 current->dbinderSessionObjects_.clear();
[all …]
/ohos5.0/foundation/communication/ipc/ipc/native/src/core/source/
H A Dipc_process_skeleton.cpp121 dbinderSessionObjects_.clear(); in ClearDataResource()
671 auto it = dbinderSessionObjects_.find(handle); in StubDetachDBinderSession()
672 if (it != dbinderSessionObjects_.end()) { in StubDetachDBinderSession()
680 dbinderSessionObjects_.erase(it); in StubDetachDBinderSession()
691dbinderSessionObjects_.insert(std::pair<uint32_t, std::shared_ptr<DBinderSessionObject>>(handle, o… in StubAttachDBinderSession()
701 auto it = dbinderSessionObjects_.find(handle); in StubQueryDBinderSession()
702 if (it != dbinderSessionObjects_.end()) { in StubQueryDBinderSession()
/ohos5.0/foundation/communication/ipc/ipc/native/src/core/include/
H A Dipc_process_skeleton.h277 std::map<uint32_t, std::shared_ptr<DBinderSessionObject>> dbinderSessionObjects_; variable