Home
last modified time | relevance | path

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

/ohos5.0/foundation/communication/ipc/services/dbinder/dbinder_service/src/
H A Ddbinder_service.cpp56 threadLockInfo_.clear(); in ~DBinderService()
898 for (auto it = threadLockInfo_.begin(); it != threadLockInfo_.end();) { in ProcessOnSessionClosed()
906 it = threadLockInfo_.erase(it); in ProcessOnSessionClosed()
1054 threadLockInfo_.erase(seqNumber); in DetachThreadLockInfo()
1063threadLockInfo_.insert(std::pair<uint32_t, std::shared_ptr<struct ThreadLockInfo>>(seqNumber, obje… in AttachThreadLockInfo()
1071 auto it = threadLockInfo_.find(seqNumber); in QueryThreadLockInfo()
1072 if (it != threadLockInfo_.end()) { in QueryThreadLockInfo()
/ohos5.0/foundation/communication/ipc/ipc/native/test/unittest/common/
H A Dipc_process_skeleton_unittest.cpp640 skeleton->threadLockInfo_.clear();
644 ASSERT_TRUE(skeleton->threadLockInfo_.size() != 0);
704 skeleton->threadLockInfo_.clear();
710 ASSERT_TRUE(skeleton->threadLockInfo_.size() != 0);
738 skeleton->threadLockInfo_.clear();
743 ASSERT_TRUE(skeleton->threadLockInfo_.size() != 0);
791 skeleton->threadLockInfo_.clear();
820 skeleton->threadLockInfo_.clear();
849 skeleton->threadLockInfo_.clear();
1770 skeleton->threadLockInfo_.clear();
/ohos5.0/foundation/communication/ipc/ipc/native/src/core/source/
H A Dipc_process_skeleton.cpp105 threadLockInfo_.clear(); in ClearDataResource()
714 return (threadLockInfo_.erase(threadId) > 0); in DetachThreadLockInfo()
723threadLockInfo_.insert(std::pair<std::thread::id, std::shared_ptr<SocketThreadLockInfo>>(threadId,… in AttachThreadLockInfo()
732 auto it = threadLockInfo_.find(threadId); in QueryThreadLockInfo()
733 if (it != threadLockInfo_.end()) { in QueryThreadLockInfo()
/ohos5.0/foundation/communication/ipc/interfaces/innerkits/libdbinder/include/
H A Ddbinder_service.h404 std::map<uint32_t, std::shared_ptr<struct ThreadLockInfo>> threadLockInfo_;
/ohos5.0/foundation/communication/ipc/ipc/native/src/core/include/
H A Dipc_process_skeleton.h275 std::map<std::thread::id, std::shared_ptr<SocketThreadLockInfo>> threadLockInfo_; variable