Home
last modified time | relevance | path

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

/aosp12/frameworks/native/libs/binder/
H A DRpcState.cpp63 for (auto& [addr, node] : mNodeForAddress) { in onBinderLeaving()
97 if (auto it = mNodeForAddress.find(address); it != mNodeForAddress.end()) { in onBinderEntering()
126 return mNodeForAddress.size(); in countBinders()
181 mNodeForAddress.clear(); in terminate()
438 auto it = mNodeForAddress.find(addr); in sendDecStrong()
446 mNodeForAddress.erase(it); in sendDecStrong()
532 auto it = mNodeForAddress.find(addr); in processTransactInternal()
533 if (it == mNodeForAddress.end()) { in processTransactInternal()
727 auto it = mNodeForAddress.find(addr); in processDecStrong()
728 if (it == mNodeForAddress.end()) { in processDecStrong()
[all …]
H A DRpcState.h185 std::map<RpcAddress, BinderNode> mNodeForAddress; variable