Lines Matching defs:token
209 sptr<WindowNode> WindowRoot::FindWindowNodeWithToken(const sptr<IRemoteObject>& token) const
211 if (token == nullptr) {
212 WLOGFE("token is null");
216 [token](const std::map<uint32_t, sptr<WindowNode>>::value_type& pair) {
219 return pair.second->abilityToken_ == token;
1084 auto token = node->abilityToken_;
1094 if ((node->GetWindowToken() != nullptr) && (node->abilityToken_ != token) &&
1848 sptr<WindowNode> WindowRoot::FindMainWindowWithToken(sptr<IRemoteObject> token)
1851 [token](const std::map<uint32_t, sptr<WindowNode>>::value_type& pair) {
1853 return pair.second->abilityToken_ == token;
1864 bool WindowRoot::CheckMultiDialogWindows(WindowType type, sptr<IRemoteObject> token)
1872 newCaller = FindMainWindowWithToken(token);